Searched refs:LowOffset (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp111 int LowOffset = std::min(OffsetA, OffsetB); local
113 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
114 if (LowOffset + LowWidth <= HighOffset)
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp381 int32_t LowOffset = HighOffset - 4; local
386 LowOffset);
391 DAG.getConstant(LowOffset, DL, MVT::i32));
395 SDValue LowShift = DAG.getConstant((Offset - LowOffset) * 8, DL, MVT::i32);
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreISelLowering.cpp429 SDValue LowOffset = DAG.getConstant(Offset & ~0x3, MVT::i32); local
434 SDValue LowAddr = DAG.getNode(ISD::ADD, DL, MVT::i32, Base, LowOffset);
/external/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp679 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
681 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
682 if (LowOffset + LowWidth <= HighOffset)
/external/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp1335 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
1337 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
1338 return LowOffset + LowWidth <= HighOffset;

Completed in 147 milliseconds