Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp157 int64_t SignedValue = static_cast<int64_t>(Value); in adjustFixupValue() local
162 if (!isInt<21>(SignedValue)) in adjustFixupValue()
168 if (!isInt<21>(SignedValue)) in adjustFixupValue()
176 if (!isInt<21>(SignedValue)) in adjustFixupValue()
233 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF) in adjustFixupValue()
238 if (SignedValue < 0) in adjustFixupValue()
239 SignedValue = ~SignedValue; in adjustFixupValue()
240 Value = static_cast<uint64_t>(SignedValue); in adjustFixupValue()
263 SignedValue = SignedValue >> 16; in adjustFixupValue()
266 SignedValue = SignedValue >> 32; in adjustFixupValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp114 int64_t SignedValue = static_cast<int64_t>(Value); in adjustFixupValue() local
118 int64_t BrImm = (SignedValue - 4) / 4; in adjustFixupValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp711 int64_t SignedValue = static_cast<int64_t>(Value); in applyFixup() local
716 if (Size > 0 && !isIntN(Size * 8, SignedValue)) in applyFixup()
718 Fixup.getLoc(), "value of " + Twine(SignedValue) + in applyFixup()
726 assert((Size == 0 || isIntN(Size * 8 + 1, SignedValue)) && in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp834 int64_t SignedValue = SignExtend64(Value, SplatBitSize); in isVectorConstantLegal() local
835 if (isInt<16>(SignedValue)) { in isVectorConstantLegal()
836 OpVals.push_back(((unsigned) SignedValue)); in isVectorConstantLegal()
2511 int64_t SignedValue = ConstOp1->getSExtValue(); in adjustSubwordCmp() local
2512 if (uint64_t(SignedValue) + (uint64_t(1) << (NumBits - 1)) > Mask) in adjustSubwordCmp()