/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_diag.h | 145 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {} 153 SIntMax SInt; 173 SIntMax SInt; global() member
|
H A D | ubsan_diag.cpp | 204 if (A.SInt >= INT64_MIN && A.SInt <= INT64_MAX) in RenderText() 205 Buffer->AppendF("%lld", (long long)A.SInt); in RenderText() 207 RenderHex(Buffer, A.SInt); in RenderText()
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | NeonEmitter.cpp | 147 SInt, enumerator 191 bool isInteger() const { return Kind == SInt || Kind == UInt; } in isInteger() 193 bool isSigned() const { return Kind == SInt; } in isSigned() 218 Kind = SInt; in makeSigned() 223 Kind = Sign ? SInt : UInt; in makeInteger() 229 Kind = SInt; in makeImmediate() 736 T.Kind = SInt; in fromTypedefName() 794 Kind = SInt; in applyTypespec() 868 Kind = SInt; in applyModifiers() 916 Kind = SInt; in applyModifiers()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
H A D | EmulateInstructionARM64.cpp | 72 #define SInt(x) ((int64_t)x) macro 566 std::optional<int64_t> signed_sum = llvm::checkedAdd(SInt(x), SInt(y)); in AddWithCarry() 569 overflow |= !llvm::checkedAdd(*signed_sum, SInt(carry_in)); in AddWithCarry()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.def | 188 HANDLE_CAST_INST(42, FPToSI , FPToSIInst ) // floating point -> SInt 190 HANDLE_CAST_INST(44, SIToFP , SIToFPInst ) // SInt -> floating point
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCClassDescriptorV2.cpp | 734 offset_scalar.SInt()); in fill() 736 {ConstString(name), ivar_type, size, offset_scalar.SInt()}); in fill()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Scalar.h | 154 int SInt(int fail_value = 0) const;
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Scalar.cpp | 319 int Scalar::SInt(int fail_value) const { return GetAs<int>(fail_value); } in SInt() function in Scalar
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 8312 SDValue SInt; in expandFP_TO_UINT() local 8316 SInt = DAG.getNode(ISD::STRICT_FP_TO_SINT, dl, { DstVT, MVT::Other }, in expandFP_TO_UINT() 8318 Chain = SInt.getValue(1); in expandFP_TO_UINT() 8321 SInt = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, Val); in expandFP_TO_UINT() 8323 Result = DAG.getNode(ISD::XOR, dl, DstVT, SInt, IntOfs); in expandFP_TO_UINT()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.cpp | 1474 operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results in EmulateMUL() 1475 operand2 = SInt(R[m]); // operand2 = UInt(R[m]) produces the same final results in EmulateMUL()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 8495 SDValue SInt = DAG.getNode(ISD::STRICT_FP_TO_SINT, dl, in LowerFP_TO_INT() local 8498 Chain = SInt.getValue(1); in LowerFP_TO_INT() 8501 SDValue Result = DAG.getNode(ISD::XOR, dl, DstVT, SInt, IntOfs); in LowerFP_TO_INT()
|