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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp110 IO.mapRequired("LowOffset", Descriptor.LowOffset);
H A DDWARFEmitter.cpp173 if (Error Err = writeVariableSizedInteger(Entry.LowOffset, AddrSize, OS,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp109 int LowOffset = std::min(OffsetA, OffsetB); local
111 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
112 if (LowOffset + LowWidth <= HighOffset)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp627 int LowOffset = std::min(OffsetA, OffsetB); local
629 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
630 if (LowOffset + LowWidth <= HighOffset)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h79 llvm::yaml::Hex64 LowOffset; member in struct:llvm::DWARFYAML::RangeEntry
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp248 // offset amount depends on the two integer, 'LowOffset' and 'HighOffset'.
249 // Where the 'LowOffset' refers to the first vector and the highOffset refers to
262 SmallVectorImpl<int> &Out, int LowOffset,
268 Out.push_back(Mask[i] + LowOffset);
261 genShuffleBland(MVT VT, ArrayRef<int> Mask, SmallVectorImpl<int> &Out, int LowOffset, int HighOffset) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp377 int32_t LowOffset = HighOffset - 4; local
382 LowOffset);
387 DAG.getConstant(LowOffset, DL, MVT::i32));
391 SDValue LowShift = DAG.getConstant((Offset - LowOffset) * 8, DL, MVT::i32);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1984 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1986 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
1987 if (LowOffset + LowWidth <= HighOffset)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp4682 int LowOffset = std::min(OffsetA, OffsetB);
4684 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
4685 if (LowOffset + LowWidth <= HighOffset)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp995 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
997 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
998 if (LowOffset + LowWidth <= HighOffset)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp2775 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
2777 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
2778 return LowOffset + LowWidth <= HighOffset;

Completed in 274 milliseconds