Home
last modified time | relevance | path

Searched refs:RemainderOffset (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1650 uint64_t RemainderOffset; in SelectFlatOffsetImpl() local
1652 std::tie(OffsetVal, RemainderOffset) = in SelectFlatOffsetImpl()
1656 getMaterializedScalarImm32(Lo_32(RemainderOffset), DL); in SelectFlatOffsetImpl()
1681 getMaterializedScalarImm32(Hi_32(RemainderOffset), DL); in SelectFlatOffsetImpl()
1764 int64_t SplitImmOffset, RemainderOffset; in SelectGlobalSAddr() local
1768 if (isUInt<32>(RemainderOffset)) { in SelectGlobalSAddr()
1876 int64_t SplitImmOffset, RemainderOffset; in SelectScratchSAddr() local
1884 ? getMaterializedScalarImm32(Lo_32(RemainderOffset), DL) in SelectScratchSAddr()
1932 int64_t SplitImmOffset, RemainderOffset; in SelectScratchSVAddr() local
1933 std::tie(SplitImmOffset, RemainderOffset) in SelectScratchSVAddr()
[all …]
H A DSIInstrInfo.cpp9026 int64_t RemainderOffset = COffsetVal; in splitFlatOffset() local
9035 RemainderOffset = (COffsetVal / D) * D; in splitFlatOffset()
9036 ImmField = COffsetVal - RemainderOffset; in splitFlatOffset()
9042 RemainderOffset += ImmField % 4; in splitFlatOffset()
9047 RemainderOffset = COffsetVal - ImmField; in splitFlatOffset()
9051 assert(RemainderOffset + ImmField == COffsetVal); in splitFlatOffset()
9052 return {ImmField, RemainderOffset}; in splitFlatOffset()
H A DAMDGPUInstructionSelector.cpp4424 int64_t SplitImmOffset, RemainderOffset; in selectGlobalSAddr() local
4425 std::tie(SplitImmOffset, RemainderOffset) = TII.splitFlatOffset( in selectGlobalSAddr()
4428 if (isUInt<32>(RemainderOffset)) { in selectGlobalSAddr()
4436 .addImm(RemainderOffset); in selectGlobalSAddr()