| /llvm-project-15.0.7/clang/lib/Basic/Targets/ |
| H A D | VE.h | 38 PtrDiffType = SignedLong; in VETargetInfo() 39 IntPtrType = SignedLong; in VETargetInfo() 40 IntMaxType = SignedLong; in VETargetInfo() 41 Int64Type = SignedLong; in VETargetInfo()
|
| H A D | BPF.h | 33 PtrDiffType = SignedLong; in BPFTargetInfo() 34 IntPtrType = SignedLong; in BPFTargetInfo() 35 IntMaxType = SignedLong; in BPFTargetInfo() 36 Int64Type = SignedLong; in BPFTargetInfo()
|
| H A D | WebAssembly.h | 54 SigAtomicType = SignedLong; in WebAssemblyTargetInfo() 61 PtrDiffType = SignedLong; in WebAssemblyTargetInfo() 62 IntPtrType = SignedLong; in WebAssemblyTargetInfo() 176 PtrDiffType = SignedLong; in WebAssembly64TargetInfo() 177 IntPtrType = SignedLong; in WebAssembly64TargetInfo()
|
| H A D | X86.h | 502 IntPtrType = SignedLong; in OpenBSDI386TargetInfo() 503 PtrDiffType = SignedLong; in OpenBSDI386TargetInfo() 521 IntPtrType = SignedLong; in DarwinI386TargetInfo() 666 IntPtrType = SignedLong; in RTEMSX86_32TargetInfo() 667 PtrDiffType = SignedLong; in RTEMSX86_32TargetInfo() 693 PtrDiffType = IsX32 ? SignedInt : SignedLong; in X86_64TargetInfo() 694 IntPtrType = IsX32 ? SignedInt : SignedLong; in X86_64TargetInfo() 695 IntMaxType = IsX32 ? SignedLongLong : SignedLong; in X86_64TargetInfo() 696 Int64Type = IsX32 ? SignedLongLong : SignedLong; in X86_64TargetInfo()
|
| H A D | Sparc.h | 161 IntPtrType = SignedLong; in SparcV8TargetInfo() 162 PtrDiffType = SignedLong; in SparcV8TargetInfo() 205 IntMaxType = SignedLong; in SparcV9TargetInfo()
|
| H A D | PPC.h | 384 PtrDiffType = SignedLong; in PPC32TargetInfo() 385 IntPtrType = SignedLong; in PPC32TargetInfo() 417 IntMaxType = SignedLong; in PPC64TargetInfo() 418 Int64Type = SignedLong; in PPC64TargetInfo()
|
| H A D | SystemZ.h | 38 IntMaxType = SignedLong; in SystemZTargetInfo() 39 Int64Type = SignedLong; in SystemZTargetInfo()
|
| H A D | SPIR.h | 214 PtrDiffType = IntPtrType = TargetInfo::SignedLong; in SPIR64TargetInfo() 267 PtrDiffType = IntPtrType = TargetInfo::SignedLong; in SPIRV64TargetInfo()
|
| H A D | NVPTX.cpp | 103 PtrDiffType = TargetInfo::SignedLong; in NVPTXTargetInfo() 104 IntPtrType = TargetInfo::SignedLong; in NVPTXTargetInfo()
|
| H A D | MSP430.h | 47 SigAtomicType = SignedLong; in MSP430TargetInfo()
|
| H A D | Mips.h | 147 Int64Type = SignedLong; in setN64ABITypes() 152 PtrDiffType = SignedLong; in setN64ABITypes()
|
| H A D | TCE.h | 68 IntMaxType = SignedLong; in TCETargetInfo()
|
| H A D | AMDGPU.cpp | 377 PtrDiffType = SignedLong; in AMDGPUTargetInfo() 378 IntPtrType = SignedLong; in AMDGPUTargetInfo()
|
| H A D | RISCV.h | 139 IntMaxType = Int64Type = SignedLong; in RISCV64TargetInfo()
|
| H A D | OSTargets.h | 305 this->IntPtrType = TargetInfo::SignedLong; in HaikuTargetInfo() 306 this->PtrDiffType = TargetInfo::SignedLong; in HaikuTargetInfo() 307 this->ProcessIDType = TargetInfo::SignedLong; in HaikuTargetInfo() 691 this->WCharType = this->WIntType = this->SignedLong; in SolarisTargetInfo()
|
| H A D | AArch64.cpp | 74 Int64Type = SignedLong; in AArch64TargetInfo() 75 IntMaxType = SignedLong; in AArch64TargetInfo()
|
| H A D | ARM.cpp | 262 ? SignedLong in ARMTargetInfo()
|
| /llvm-project-15.0.7/clang/lib/Basic/ |
| H A D | TargetInfo.cpp | 97 PtrDiffType = SignedLong; in TargetInfo() 99 IntPtrType = SignedLong; in TargetInfo() 190 case SignedLong: return "long int"; in getTypeName() 205 case SignedLong: return "L"; in getTypeConstantSuffix() 233 case SignedLong: in getTypeFormatModifier() 251 case SignedLong: in getTypeWidth() 267 return IsSigned ? SignedLong : UnsignedLong; in getIntTypeByWidth() 282 return IsSigned ? SignedLong : UnsignedLong; in getLeastIntTypeByWidth() 333 case SignedLong: in getTypeAlign() 348 case SignedLong: in isTypeSigned() [all …]
|
| /llvm-project-15.0.7/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 155 case ScalarTypeKind::SignedLong: in initBuiltinStr() 272 case ScalarTypeKind::SignedLong: in initTypeStr() 414 PT = BaseTypeModifier::SignedLong; in parsePrototypeDescriptor() 610 case BaseTypeModifier::SignedLong: in applyModifier() 611 ScalarType = ScalarTypeKind::SignedLong; in applyModifier()
|
| /llvm-project-15.0.7/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 71 SignedLong, enumerator 149 SignedLong, enumerator
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | TargetInfo.h | 128 SignedLong, enumerator 333 return SignedLong; in getSignedSizeType() 377 case SignedLong: in getCorrespondingUnsignedType()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaRISCVVectorLookup.cpp | 87 case ScalarTypeKind::SignedLong: in RVVType2Qual()
|
| H A D | SemaChecking.cpp | 2907 bool IsInt64Long = TI.getInt64Type() == TargetInfo::SignedLong; in CheckNeonBuiltinFunctionCall()
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 971 DefineTypeSize("__LONG_MAX__", TargetInfo::SignedLong, TI, Builder); in InitializePredefinedMacros() 1067 DefineExactWidthIntType(TargetInfo::SignedLong, TI, Builder); in InitializePredefinedMacros() 1091 DefineExactWidthIntTypeSize(TargetInfo::SignedLong, TI, Builder); in InitializePredefinedMacros()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTContext.cpp | 9212 case TargetInfo::SignedLong: return LongTy; in getFromTargetType() 10987 case TargetInfo::SignedLong: in DecodeTypeFromStr() 11008 case TargetInfo::SignedLong: in DecodeTypeFromStr()
|