Home
last modified time | relevance | path

Searched refs:SignedInt (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DAVR.h51 PtrDiffType = SignedInt; in AVRTargetInfo()
52 IntPtrType = SignedInt; in AVRTargetInfo()
54 WIntType = SignedInt; in AVRTargetInfo()
55 Int16Type = SignedInt; in AVRTargetInfo()
158 return BitWidth == 16 ? (IsSigned ? SignedInt : UnsignedInt) in getIntTypeByWidth()
165 ? (IsSigned ? SignedInt : UnsignedInt) in getLeastIntTypeByWidth()
H A DCSKY.h48 PtrDiffType = SignedInt; in CSKYTargetInfo()
49 IntPtrType = SignedInt; in CSKYTargetInfo()
50 WCharType = SignedInt; in CSKYTargetInfo()
H A DARC.h33 PtrDiffType = SignedInt; in ARCTargetInfo()
34 IntPtrType = SignedInt; in ARCTargetInfo()
H A DXCore.h35 PtrDiffType = SignedInt; in XCoreTargetInfo()
36 IntPtrType = SignedInt; in XCoreTargetInfo()
H A DRISCV.h39 WCharType = SignedInt; in RISCVTargetInfo()
108 IntPtrType = SignedInt; in RISCV32TargetInfo()
109 PtrDiffType = SignedInt; in RISCV32TargetInfo()
H A DMSP430.h45 IntPtrType = SignedInt; in MSP430TargetInfo()
46 PtrDiffType = SignedInt; in MSP430TargetInfo()
H A DTCE.h69 IntPtrType = SignedInt; in TCETargetInfo()
70 PtrDiffType = SignedInt; in TCETargetInfo()
H A DPNaCl.h39 this->PtrDiffType = TargetInfo::SignedInt; in PNaClTargetInfo()
40 this->IntPtrType = TargetInfo::SignedInt; in PNaClTargetInfo()
H A DHexagon.h49 PtrDiffType = SignedInt; in HexagonTargetInfo()
50 IntPtrType = SignedInt; in HexagonTargetInfo()
H A DM68k.cpp58 PtrDiffType = SignedInt; in M68kTargetInfo()
59 IntPtrType = SignedInt; in M68kTargetInfo()
H A DSparc.h155 IntPtrType = SignedInt; in SparcV8TargetInfo()
156 PtrDiffType = SignedInt; in SparcV8TargetInfo()
H A DSPIR.h197 PtrDiffType = IntPtrType = TargetInfo::SignedInt; in SPIR32TargetInfo()
250 PtrDiffType = IntPtrType = TargetInfo::SignedInt; in SPIRV32TargetInfo()
H A DPPC.h379 PtrDiffType = SignedInt; in PPC32TargetInfo()
380 IntPtrType = SignedInt; in PPC32TargetInfo()
490 PtrDiffType = SignedInt; // for http://llvm.org/bugs/show_bug.cgi?id=15726 in DarwinPPC32TargetInfo()
H A DNVPTX.cpp98 PtrDiffType = TargetInfo::SignedInt; in NVPTXTargetInfo()
99 IntPtrType = TargetInfo::SignedInt; in NVPTXTargetInfo()
H A DMips.h126 PtrDiffType = SignedInt; in setO32ABITypes()
162 PtrDiffType = SignedInt; in setN32ABITypes()
H A DX86.h422 PtrDiffType = SignedInt; in X86_32TargetInfo()
423 IntPtrType = SignedInt; in X86_32TargetInfo()
693 PtrDiffType = IsX32 ? SignedInt : SignedLong; in X86_64TargetInfo()
694 IntPtrType = IsX32 ? SignedInt : SignedLong; in X86_64TargetInfo()
H A DOSTargets.h473 this->WCharType = this->WIntType = this->SignedInt; in OpenBSDTargetInfo()
689 this->WCharType = this->WIntType = this->SignedInt; in SolarisTargetInfo()
901 this->PtrDiffType = TargetInfo::SignedInt; in NaClTargetInfo()
902 this->IntPtrType = TargetInfo::SignedInt; in NaClTargetInfo()
H A DARM.cpp84 WCharType = SignedInt; in setABIAPCS()
263 : SignedInt; in ARMTargetInfo()
273 PtrDiffType = SignedInt; in ARMTargetInfo()
/llvm-project-15.0.7/clang/lib/Basic/
H A DTargetInfo.cpp100 WCharType = SignedInt; in TargetInfo()
101 WIntType = SignedInt; in TargetInfo()
106 SigAtomicType = SignedInt; in TargetInfo()
107 ProcessIDType = SignedInt; in TargetInfo()
188 case SignedInt: return "int"; in getTypeName()
204 case SignedInt: return ""; in getTypeConstantSuffix()
231 case SignedInt: in getTypeFormatModifier()
249 case SignedInt: in getTypeWidth()
265 return IsSigned ? SignedInt : UnsignedInt; in getIntTypeByWidth()
331 case SignedInt: in getTypeAlign()
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dcatch-implicit-integer-sign-changes-true-negatives.cpp82 using SignedInt = signed int; typedef
88 return SignedInt(src); in explicit_functional_unsigned_int_to_signed_int()
112 return SignedInt(src); in explicit_functional_signed_int_to_signed_int()
H A Dcatch-implicit-integer-truncations.cpp107 using SignedInt = signed int; typedef
151 return SignedInt(src); in explicit_functional_signed_int_to_signed_int()
/llvm-project-15.0.7/clang/test/AST/
H A Dmultistep-explicit-cast-json.cpp60 using SignedInt = signed int; typedef
70 UnsignedChar cxxfunctionalcast_2(SignedInt x) { in cxxfunctionalcast_2()
74 SignedChar cxxfunctionalcast_3(SignedInt x) { in cxxfunctionalcast_3()
H A Dmultistep-explicit-cast.cpp126 using SignedInt = signed int; typedef
146 UnsignedChar cxxfunctionalcast_2(SignedInt x) { in cxxfunctionalcast_2()
155 SignedChar cxxfunctionalcast_3(SignedInt x) { in cxxfunctionalcast_3()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DDIE.h172 const int64_t SignedInt = Int; in BestForm() local
173 if ((char)Int == SignedInt) in BestForm()
175 if ((short)Int == SignedInt) in BestForm()
177 if ((int)Int == SignedInt) in BestForm()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetInfo.h126 SignedInt, enumerator
331 return SignedInt; in getSignedSizeType()
375 case SignedInt: in getCorrespondingUnsignedType()

12