Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp144 int64_t SignedValue = static_cast<int64_t>(Value); in adjustFixupValue() local
149 if (!isInt<21>(SignedValue)) in adjustFixupValue()
155 if (!isInt<21>(SignedValue)) in adjustFixupValue()
163 if (!isInt<21>(SignedValue)) in adjustFixupValue()
220 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF) in adjustFixupValue()
225 if (SignedValue < 0) in adjustFixupValue()
226 SignedValue = ~SignedValue; in adjustFixupValue()
227 Value = static_cast<uint64_t>(SignedValue); in adjustFixupValue()
250 SignedValue = SignedValue >> 16; in adjustFixupValue()
253 SignedValue = SignedValue >> 32; in adjustFixupValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp109 int64_t SignedValue = static_cast<int64_t>(Value); in adjustFixupValue() local
113 int64_t BrImm = (SignedValue - 4) / 4; in adjustFixupValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp73 int32_t SignedValue = Value; in adjustRelativeBranch() local
75 uint64_t WrappedValue = SignedValue > 0 ? (uint64_t)(Value - FlashSize) in adjustRelativeBranch()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp729 int64_t SignedValue = static_cast<int64_t>(Value); in applyFixup() local
732 if (Size > 0 && !isIntN(Size * 8, SignedValue)) in applyFixup()
734 "value of " + Twine(SignedValue) + in applyFixup()
742 assert((Size == 0 || isIntN(Size * 8 + 1, SignedValue)) && in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp900 int64_t SignedValue = SignExtend64(Value, SplatBitSize); in isVectorConstantLegal() local
901 if (isInt<16>(SignedValue)) { in isVectorConstantLegal()
902 OpVals.push_back(((unsigned) SignedValue)); in isVectorConstantLegal()
2862 int64_t SignedValue = ConstOp1->getSExtValue(); in adjustSubwordCmp() local
2863 if (uint64_t(SignedValue) + (uint64_t(1) << (NumBits - 1)) > Mask) in adjustSubwordCmp()