| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGObjCGNU.cpp | 144 llvm::IntegerType *LongTy; member in __anonb71487890111::CGObjCGNU 834 ClassSymbol = new llvm::GlobalVariable(TheModule, LongTy, false, in GetClassNamed() 868 ClassSymbol = new llvm::GlobalVariable(TheModule, LongTy, false, in EmitClassRef() 898 LongTy = cast<llvm::IntegerType>( in CGObjCGNU() 899 Types.ConvertType(CGM.getContext().LongTy)); in CGObjCGNU() 910 Zeros[0] = llvm::ConstantInt::get(LongTy, 0); in CGObjCGNU() 1590 LongTy, // version in GenerateClassStructure() 1591 LongTy, // info in GenerateClassStructure() 1592 LongTy, // instance_size in GenerateClassStructure() 1602 LongTy, // abi_version in GenerateClassStructure() [all …]
|
| HD | CGObjCMac.cpp | 175 llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy; member in __anonb2414f100111::ObjCCommonTypesHelper 316 Params.push_back(Ctx.LongTy); in getCopyStructFn() 408 llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, LongTy }; in GcMemmoveCollectableFn() 2731 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, in EmitProtocolList() 3063 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0); in GenerateClass() 3064 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags); in GenerateClass() 3065 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size); in GenerateClass() 3126 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0); in EmitMetaClass() 3127 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags); in EmitMetaClass() 3128 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size); in EmitMetaClass() [all …]
|
| HD | CodeGenTBAA.cpp | 123 return getTBAAInfo(Context.LongTy); in getTBAAInfo()
|
| HD | CGException.cpp | 1546 QualType RetTy = IsFilter ? getContext().LongTy : getContext().VoidTy; in startOutlinedSEHHelper() 1586 R = Builder.CreateIntCast(R, ConvertType(getContext().LongTy), in GenerateSEHFilterFunction()
|
| HD | ItaniumCXXABI.cpp | 2998 CGM.getTypes().ConvertType(CGM.getContext().LongTy); in BuildVMIClassTypeInfo() 3146 getContext().UnsignedIntTy, getContext().LongTy, in EmitFundamentalRTTIDescriptors()
|
| HD | CodeGenModule.cpp | 2699 Ty = getTypes().ConvertType(getContext().LongTy); in GetAddrOfConstantCFString()
|
| HD | CGExpr.cpp | 1538 llvm::Type *ResultType = ConvertType(getContext().LongTy); in EmitStoreThroughLValue()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | ClangASTContext.cpp | 605 if (QualTypeMatchesBitSize (bit_size, ast, ast->LongTy)) in GetBuiltinTypeForEncodingAndBitSize() 606 return ClangASTType (ast, ast->LongTy.getAsOpaquePtr()); in GetBuiltinTypeForEncodingAndBitSize() 774 clang_type = ast->LongTy.getAsOpaquePtr(); in GetBasicType() 922 QualTypeMatchesBitSize (bit_size, ast, ast->LongTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 923 return ClangASTType (ast, ast->LongTy.getAsOpaquePtr()); in GetBuiltinTypeForDWARFEncodingAndBitSize() 949 if (QualTypeMatchesBitSize (bit_size, ast, ast->LongTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 950 return ClangASTType (ast, ast->LongTy.getAsOpaquePtr()); in GetBuiltinTypeForDWARFEncodingAndBitSize() 2004 if (bit_size == ast->getTypeSize(ast->LongTy)) in GetIntTypeFromBitSize() 2005 return ClangASTType(ast, ast->LongTy.getAsOpaquePtr()); in GetIntTypeFromBitSize()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Analysis/ |
| HD | ScanfFormatString.cpp | 240 return ArgType::PtrTo(Ctx.LongTy); in getArgType() 373 return ArgType::PtrTo(Ctx.LongTy); in getArgType()
|
| HD | PrintfFormatString.cpp | 417 case LengthModifier::AsLong: return Ctx.LongTy; in getArgType() 490 return ArgType::PtrTo(Ctx.LongTy); in getArgType()
|
| HD | FormatString.cpp | 327 return T == C.LongTy ? Match : NoMatch; in matchesType()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | BuiltinTypes.def | 114 SIGNED_TYPE(Long, LongTy)
|
| HD | ASTContext.h | 825 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTContext.cpp | 978 InitBuiltinType(LongTy, BuiltinType::Long); in InitBuiltinTypes() 4591 return 5 + (getIntWidth(LongTy) << 3); in getIntegerRank() 4672 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType() 4784 FieldTypes[3] = LongTy; in getCFConstantStringType() 6261 FieldTypes[0] = Context->LongTy; in CreateSystemZBuiltinVaListDecl() 6265 FieldTypes[1] = Context->LongTy; in CreateSystemZBuiltinVaListDecl() 6530 case TargetInfo::SignedLong: return LongTy; in getFromTargetType() 7963 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy; in DecodeTypeFromStr()
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| HD | BasicObjCFoundationChecks.cpp | 390 case kCFNumberLongType: T = Ctx.LongTy; break; in GetCFNumberSize()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | Sema.cpp | 221 addImplicitTypedef("atomic_long", Context.getAtomicType(Context.LongTy)); in Initialize()
|
| HD | SemaExpr.cpp | 3425 Ty = Context.LongTy; in ActOnNumericConstant() 8844 else if (TypeSize == Context.getTypeSize(Context.LongTy)) in GetSignedVectorType() 8845 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); in GetSignedVectorType() 11587 Ty = Context.LongTy; in ActOnGNUNullExpr()
|
| HD | SemaDecl.cpp | 13490 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy in getNextLargerIntegralType() 14089 BestType = Context.LongTy; in ActOnEnumBody() 14122 ? Context.UnsignedLongTy : Context.LongTy; in ActOnEnumBody()
|
| HD | SemaChecking.cpp | 617 return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy; in getNeonEltType() 4012 .Case("NSInteger", Context.LongTy) in shouldNotPrintDirectly()
|
| HD | SemaOverload.cpp | 1791 Context.LongTy, Context.UnsignedLongTy , in IsIntegralPromotion() 7064 &ASTContext::LongTy, in getArithmeticType()
|
| HD | SemaType.cpp | 1275 case DeclSpec::TSW_long: Result = Context.LongTy; break; in ConvertDeclSpecToType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | RewriteObjC.cpp | 2569 FieldTypes[3] = Context->LongTy; in getConstantStringStructType()
|
| HD | RewriteModernObjC.cpp | 3058 FieldTypes[3] = Context->LongTy; in getConstantStringStructType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 5715 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break; in GetType()
|