| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 60 SInt, enumerator 106 bool isInteger() const { return Kind == SInt || Kind == UInt; } in isInteger() 107 bool isSignedInteger() const { return Kind == SInt; } in isSignedInteger() 478 case TypeKind::SInt: in builtinBaseType() 558 case TypeKind::SInt: in str() 601 Kind = isInvalid() ? SInt : Kind; in applyTypespec() 605 Kind = isInvalid() ? SInt : Kind; in applyTypespec() 609 Kind = isInvalid() ? SInt : Kind; in applyTypespec() 613 Kind = isInvalid() ? SInt : Kind; in applyTypespec() 617 Kind = isInvalid() ? SInt : Kind; in applyTypespec() [all …]
|
| H A D | NeonEmitter.cpp | 149 enum TypeKind { Void, Float, SInt, UInt, Poly, BFloat16, MFloat8, FPM }; enumerator 189 bool isInteger() const { return Kind == SInt || Kind == UInt; } in isInteger() 191 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() 782 T.Kind = SInt; in fromTypedefName() 842 Kind = SInt; in applyTypespec() 920 Kind = SInt; in applyModifiers() 975 Kind = SInt; in applyModifiers()
|
| /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/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 | 733 offset_scalar.SInt()); in fill() 735 {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 | 8530 SDValue SInt; in expandFP_TO_UINT() local 8534 SInt = DAG.getNode(ISD::STRICT_FP_TO_SINT, dl, { DstVT, MVT::Other }, in expandFP_TO_UINT() 8536 Chain = SInt.getValue(1); in expandFP_TO_UINT() 8539 SInt = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, Val); in expandFP_TO_UINT() 8541 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 | 8561 SDValue SInt = DAG.getNode(ISD::STRICT_FP_TO_SINT, dl, in LowerFP_TO_INT() local 8564 Chain = SInt.getValue(1); in LowerFP_TO_INT() 8567 SDValue Result = DAG.getNode(ISD::XOR, dl, DstVT, SInt, IntOfs); in LowerFP_TO_INT()
|