Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp234 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF) in adjustFixupValue()
240 SignedValue = ~SignedValue; in adjustFixupValue()
264 SignedValue = SignedValue >> 16; in adjustFixupValue()
267 SignedValue = SignedValue >> 32; in adjustFixupValue()
270 SignedValue = SignedValue >> 48; in adjustFixupValue()
298 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF) in adjustFixupValue()
302 if (SignedValue < 0) in adjustFixupValue()
303 SignedValue = ~SignedValue; in adjustFixupValue()
321 SignedValue = -SignedValue; in adjustFixupValue()
324 if (SignedValue < 0 || SignedValue > ((1 << 18) - 1)) in adjustFixupValue()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp116 int64_t SignedValue = static_cast<int64_t>(Value); in adjustFixupValue() local
120 int64_t BrImm = (SignedValue - 4) / 4; in adjustFixupValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp700 int64_t SignedValue = static_cast<int64_t>(Value); in applyFixup() local
705 if (Size > 0 && !isIntN(Size * 8, SignedValue)) in applyFixup()
707 Fixup.getLoc(), "value of " + Twine(SignedValue) + in applyFixup()
715 assert((Size == 0 || isIntN(Size * 8 + 1, SignedValue)) && in applyFixup()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp821 int64_t SignedValue = SignExtend64(Value, SplatBitSize); in isVectorConstantLegal() local
822 if (isInt<16>(SignedValue)) { in isVectorConstantLegal()
823 OpVals.push_back(((unsigned) SignedValue)); in isVectorConstantLegal()
2488 int64_t SignedValue = ConstOp1->getSExtValue(); in adjustSubwordCmp() local
2489 if (uint64_t(SignedValue) + (uint64_t(1) << (NumBits - 1)) > Mask) in adjustSubwordCmp()