Home
last modified time | relevance | path

Searched refs:LongTy (Results 1 – 24 of 24) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGObjCGNU.cpp144 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 …]
HDCGObjCMac.cpp175 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 …]
HDCodeGenTBAA.cpp123 return getTBAAInfo(Context.LongTy); in getTBAAInfo()
HDCGException.cpp1546 QualType RetTy = IsFilter ? getContext().LongTy : getContext().VoidTy; in startOutlinedSEHHelper()
1586 R = Builder.CreateIntCast(R, ConvertType(getContext().LongTy), in GenerateSEHFilterFunction()
HDItaniumCXXABI.cpp2998 CGM.getTypes().ConvertType(CGM.getContext().LongTy); in BuildVMIClassTypeInfo()
3146 getContext().UnsignedIntTy, getContext().LongTy, in EmitFundamentalRTTIDescriptors()
HDCodeGenModule.cpp2699 Ty = getTypes().ConvertType(getContext().LongTy); in GetAddrOfConstantCFString()
HDCGExpr.cpp1538 llvm::Type *ResultType = ConvertType(getContext().LongTy); in EmitStoreThroughLValue()
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp605 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/
HDScanfFormatString.cpp240 return ArgType::PtrTo(Ctx.LongTy); in getArgType()
373 return ArgType::PtrTo(Ctx.LongTy); in getArgType()
HDPrintfFormatString.cpp417 case LengthModifier::AsLong: return Ctx.LongTy; in getArgType()
490 return ArgType::PtrTo(Ctx.LongTy); in getArgType()
HDFormatString.cpp327 return T == C.LongTy ? Match : NoMatch; in matchesType()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDBuiltinTypes.def114 SIGNED_TYPE(Long, LongTy)
HDASTContext.h825 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp978 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/
HDBasicObjCFoundationChecks.cpp390 case kCFNumberLongType: T = Ctx.LongTy; break; in GetCFNumberSize()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSema.cpp221 addImplicitTypedef("atomic_long", Context.getAtomicType(Context.LongTy)); in Initialize()
HDSemaExpr.cpp3425 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()
HDSemaDecl.cpp13490 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy in getNextLargerIntegralType()
14089 BestType = Context.LongTy; in ActOnEnumBody()
14122 ? Context.UnsignedLongTy : Context.LongTy; in ActOnEnumBody()
HDSemaChecking.cpp617 return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy; in getNeonEltType()
4012 .Case("NSInteger", Context.LongTy) in shouldNotPrintDirectly()
HDSemaOverload.cpp1791 Context.LongTy, Context.UnsignedLongTy , in IsIntegralPromotion()
7064 &ASTContext::LongTy, in getArithmeticType()
HDSemaType.cpp1275 case DeclSpec::TSW_long: Result = Context.LongTy; break; in ConvertDeclSpecToType()
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDRewriteObjC.cpp2569 FieldTypes[3] = Context->LongTy; in getConstantStringStructType()
HDRewriteModernObjC.cpp3058 FieldTypes[3] = Context->LongTy; in getConstantStringStructType()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReader.cpp5715 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break; in GetType()