HomeSort by: relevance | last modified time | path
    Searched refs:RemainderOffset (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 1690 uint64_t RemainderOffset;
1692 std::tie(OffsetVal, RemainderOffset) =
1696 getMaterializedScalarImm32(Lo_32(RemainderOffset), DL);
1721 getMaterializedScalarImm32(Hi_32(RemainderOffset), DL);
1804 int64_t SplitImmOffset, RemainderOffset;
1805 std::tie(SplitImmOffset, RemainderOffset) = TII->splitFlatOffset(
1808 if (isUInt<32>(RemainderOffset)) {
1811 CurDAG->getTargetConstant(RemainderOffset, SDLoc(), MVT::i32));
1914 int64_t SplitImmOffset, RemainderOffset;
1915 std::tie(SplitImmOffset, RemainderOffset) = TII->splitFlatOffset
    [all...]
AMDGPUInstructionSelector.cpp 3544 int64_t SplitImmOffset, RemainderOffset;
3545 std::tie(SplitImmOffset, RemainderOffset) = TII.splitFlatOffset(
3548 if (isUInt<32>(RemainderOffset)) {
3556 .addImm(RemainderOffset);
SIInstrInfo.cpp 7442 int64_t RemainderOffset = COffsetVal;
7453 RemainderOffset = (COffsetVal / D) * D;
7454 ImmField = COffsetVal - RemainderOffset;
7460 RemainderOffset += ImmField % 4;
7465 RemainderOffset = COffsetVal - ImmField;
7469 assert(RemainderOffset + ImmField == COffsetVal);
7470 return {ImmField, RemainderOffset};

Completed in 48 milliseconds