Home
last modified time | relevance | path

Searched refs:AllowNegative (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp127 bool AllowNegative = (Desc.TSFlags & (SIInstrFlags::FlatGlobal | in printFlatOffset() local
131 if (AllowNegative) // Signed offset in printFlatOffset()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2752 std::string_view parseNumber(bool AllowNegative = false);
3758 AbstractManglingParser<Alloc, Derived>::parseNumber(bool AllowNegative) { in parseNumber() argument
3760 if (AllowNegative) in parseNumber()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp9140 bool AllowNegative = allowNegativeFlatOffset(FlatVariant); in isLegalFLATOffset() local
9142 return isIntN(N, Offset) && (AllowNegative || Offset >= 0); in isLegalFLATOffset()
9152 bool AllowNegative = allowNegativeFlatOffset(FlatVariant); in splitFlatOffset() local
9155 if (AllowNegative) { in splitFlatOffset()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4433 bool AllowNegative = in validateFlatOffset() local
4436 if (!isIntN(OffsetSize, Op.getImm()) || (!AllowNegative && Op.getImm() < 0)) { in validateFlatOffset()
4439 (AllowNegative ? Twine(OffsetSize) + "-bit signed offset" in validateFlatOffset()