| /llvm-project-15.0.7/clang/lib/Basic/Targets/ |
| H A D | AVR.h | 51 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 D | CSKY.h | 48 PtrDiffType = SignedInt; in CSKYTargetInfo() 49 IntPtrType = SignedInt; in CSKYTargetInfo() 50 WCharType = SignedInt; in CSKYTargetInfo()
|
| H A D | ARC.h | 33 PtrDiffType = SignedInt; in ARCTargetInfo() 34 IntPtrType = SignedInt; in ARCTargetInfo()
|
| H A D | XCore.h | 35 PtrDiffType = SignedInt; in XCoreTargetInfo() 36 IntPtrType = SignedInt; in XCoreTargetInfo()
|
| H A D | RISCV.h | 39 WCharType = SignedInt; in RISCVTargetInfo() 108 IntPtrType = SignedInt; in RISCV32TargetInfo() 109 PtrDiffType = SignedInt; in RISCV32TargetInfo()
|
| H A D | MSP430.h | 45 IntPtrType = SignedInt; in MSP430TargetInfo() 46 PtrDiffType = SignedInt; in MSP430TargetInfo()
|
| H A D | TCE.h | 69 IntPtrType = SignedInt; in TCETargetInfo() 70 PtrDiffType = SignedInt; in TCETargetInfo()
|
| H A D | PNaCl.h | 39 this->PtrDiffType = TargetInfo::SignedInt; in PNaClTargetInfo() 40 this->IntPtrType = TargetInfo::SignedInt; in PNaClTargetInfo()
|
| H A D | Hexagon.h | 49 PtrDiffType = SignedInt; in HexagonTargetInfo() 50 IntPtrType = SignedInt; in HexagonTargetInfo()
|
| H A D | M68k.cpp | 58 PtrDiffType = SignedInt; in M68kTargetInfo() 59 IntPtrType = SignedInt; in M68kTargetInfo()
|
| H A D | Sparc.h | 155 IntPtrType = SignedInt; in SparcV8TargetInfo() 156 PtrDiffType = SignedInt; in SparcV8TargetInfo()
|
| H A D | SPIR.h | 197 PtrDiffType = IntPtrType = TargetInfo::SignedInt; in SPIR32TargetInfo() 250 PtrDiffType = IntPtrType = TargetInfo::SignedInt; in SPIRV32TargetInfo()
|
| H A D | PPC.h | 379 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 D | NVPTX.cpp | 98 PtrDiffType = TargetInfo::SignedInt; in NVPTXTargetInfo() 99 IntPtrType = TargetInfo::SignedInt; in NVPTXTargetInfo()
|
| H A D | Mips.h | 126 PtrDiffType = SignedInt; in setO32ABITypes() 162 PtrDiffType = SignedInt; in setN32ABITypes()
|
| H A D | X86.h | 422 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 D | OSTargets.h | 473 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 D | ARM.cpp | 84 WCharType = SignedInt; in setABIAPCS() 263 : SignedInt; in ARMTargetInfo() 273 PtrDiffType = SignedInt; in ARMTargetInfo()
|
| /llvm-project-15.0.7/clang/lib/Basic/ |
| H A D | TargetInfo.cpp | 100 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 D | catch-implicit-integer-sign-changes-true-negatives.cpp | 82 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 D | catch-implicit-integer-truncations.cpp | 107 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 D | multistep-explicit-cast-json.cpp | 60 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 D | multistep-explicit-cast.cpp | 126 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 D | DIE.h | 172 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 D | TargetInfo.h | 126 SignedInt, enumerator 331 return SignedInt; in getSignedSizeType() 375 case SignedInt: in getCorrespondingUnsignedType()
|