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.cpp123 bool AllowNegative = (Desc.TSFlags & (SIInstrFlags::FlatGlobal | in printFlatOffset() local
127 if (AllowNegative) // Signed offset in printFlatOffset()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2889 std::string_view parseNumber(bool AllowNegative = false);
3898 AbstractManglingParser<Alloc, Derived>::parseNumber(bool AllowNegative) { in parseNumber() argument
3900 if (AllowNegative) in parseNumber()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp9571 bool AllowNegative = allowNegativeFlatOffset(FlatVariant); in isLegalFLATOffset() local
9573 return isIntN(N, Offset) && (AllowNegative || Offset >= 0); in isLegalFLATOffset()
9583 bool AllowNegative = allowNegativeFlatOffset(FlatVariant); in splitFlatOffset() local
9586 if (AllowNegative) { in splitFlatOffset()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4761 bool AllowNegative = in validateFlatOffset() local
4764 if (!isIntN(OffsetSize, Op.getImm()) || (!AllowNegative && Op.getImm() < 0)) { in validateFlatOffset()
4767 (AllowNegative ? Twine(OffsetSize) + "-bit signed offset" in validateFlatOffset()