Searched refs:EltTys (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | ShadowStackGCLowering.cpp | 217 Type *EltTys[] = {DescriptorElts[0]->getType(), DescriptorElts[1]->getType()}; in GetFrameMap() local 218 StructType *STy = StructType::create(EltTys, "gc_map." + utostr(NumMeta)); in GetFrameMap() 247 std::vector<Type *> EltTys; in GetConcreteStackEntryType() local 248 EltTys.push_back(StackEntryTy); in GetConcreteStackEntryType() 250 EltTys.push_back(Roots[I].second->getAllocatedType()); in GetConcreteStackEntryType() 252 return StructType::create(EltTys, ("gc_stackentry." + F.getName()).str()); in GetConcreteStackEntryType() 273 std::vector<Type *> EltTys; in doInitialization() local 275 EltTys.push_back(Type::getInt32Ty(M.getContext())); in doInitialization() 277 EltTys.push_back(Type::getInt32Ty(M.getContext())); in doInitialization() 278 FrameMapTy = StructType::create(EltTys, "gc_map"); in doInitialization() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 705 SmallVector<llvm::Metadata *, 8> EltTys; in CreateType() local 715 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); in CreateType() 716 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); in CreateType() 718 Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() 719 EltTys.clear(); in CreateType() 735 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in CreateType() 737 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in CreateType() 738 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); in CreateType() 740 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset)); in CreateType() 749 EltTys.push_back(FieldTy); in CreateType() [all …]
|
D | CGDebugInfo.h | 174 SmallVectorImpl<llvm::Metadata *> &EltTys, 211 SmallVectorImpl<llvm::Metadata *> &EltTys);
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 840 SmallVector<Metadata *, 8> EltTys; in CreateFunctionType() local 844 EltTys.push_back(DblTy); in CreateFunctionType() 847 EltTys.push_back(DblTy); in CreateFunctionType() 849 DITypeArray EltTypeArray = DBuilder->getOrCreateTypeArray(EltTys); in CreateFunctionType()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1393 SmallVector<Type*, 8> EltTys; in ParseTypeTableBody() local 1396 EltTys.push_back(T); in ParseTypeTableBody() 1400 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody() 1402 ResultTy = StructType::get(Context, EltTys, Record[0]); in ParseTypeTableBody() 1426 SmallVector<Type*, 8> EltTys; in ParseTypeTableBody() local 1429 EltTys.push_back(T); in ParseTypeTableBody() 1433 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody() 1435 Res->setBody(EltTys, Record[0]); in ParseTypeTableBody()
|