Searched refs:EltTys (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | ShadowStackGC.cpp | 218 Type *EltTys[] = { DescriptorElts[0]->getType(),DescriptorElts[1]->getType()}; in GetFrameMap() local 219 StructType *STy = StructType::createNamed("gc_map."+utostr(NumMeta), EltTys); in GetFrameMap() 249 std::vector<Type*> EltTys; in GetConcreteStackEntryType() local 250 EltTys.push_back(StackEntryTy); in GetConcreteStackEntryType() 252 EltTys.push_back(Roots[I].second->getAllocatedType()); in GetConcreteStackEntryType() 254 return StructType::createNamed("gc_stackentry."+F.getName().str(), EltTys); in GetConcreteStackEntryType() 265 std::vector<Type*> EltTys; in initializeCustomLowering() local 267 EltTys.push_back(Type::getInt32Ty(M.getContext())); in initializeCustomLowering() 269 EltTys.push_back(Type::getInt32Ty(M.getContext())); in initializeCustomLowering() 270 FrameMapTy = StructType::createNamed("gc_map", EltTys); in initializeCustomLowering() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 315 llvm::SmallVector<llvm::Value *, 16> EltTys; in CreateType() local 320 EltTys.push_back(FieldTy); in CreateType() 321 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() 492 llvm::SmallVector<llvm::Value *, 8> EltTys; in CreateType() local 502 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); in CreateType() 503 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); in CreateType() 505 Elements = DBuilder.getOrCreateArray(EltTys); in CreateType() 506 EltTys.clear(); in CreateType() 522 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in CreateType() 524 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in CreateType() [all …]
|
D | CGDebugInfo.h | 121 llvm::SmallVectorImpl<llvm::Value *> &EltTys, 126 llvm::SmallVectorImpl<llvm::Value *> &EltTys, 150 llvm::SmallVectorImpl<llvm::Value *> &EltTys);
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 603 std::vector<Type*> EltTys; in ParseTypeTableBody() local 606 EltTys.push_back(T); in ParseTypeTableBody() 610 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody() 612 ResultTy = StructType::get(Context, EltTys, Record[0]); in ParseTypeTableBody() 636 SmallVector<Type*, 8> EltTys; in ParseTypeTableBody() local 639 EltTys.push_back(T); in ParseTypeTableBody() 643 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody() 645 Res->setBody(EltTys, Record[0]); in ParseTypeTableBody() 809 std::vector<Type*> EltTys; in ParseOldTypeTable() local 812 EltTys.push_back(Elt); in ParseOldTypeTable() [all …]
|