HomeSort by relevance Sort by last modified time
    Searched refs:EltTys (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 230 Type *EltTys[] = { DescriptorElts[0]->getType(),DescriptorElts[1]->getType()};
231 StructType *STy = StructType::create(EltTys, "gc_map."+utostr(NumMeta));
261 std::vector<Type*> EltTys;
262 EltTys.push_back(StackEntryTy);
264 EltTys.push_back(Roots[I].second->getAllocatedType());
266 return StructType::create(EltTys, "gc_stackentry."+F.getName().str());
277 std::vector<Type*> EltTys;
279 EltTys.push_back(Type::getInt32Ty(M.getContext()));
281 EltTys.push_back(Type::getInt32Ty(M.getContext()));
282 FrameMapTy = StructType::create(EltTys, "gc_map")
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 669 SmallVector<llvm::Value *, 8> EltTys;
679 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
680 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
682 Elements = DBuilder.getOrCreateArray(EltTys);
683 EltTys.clear();
699 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
701 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
702 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
704 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
713 EltTys.push_back(FieldTy)
    [all...]
CGDebugInfo.h 168 SmallVectorImpl<llvm::Value *> &EltTys,
203 SmallVectorImpl<llvm::Value *> &EltTys);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 645 SmallVector<Type*, 8> EltTys;
648 EltTys.push_back(T);
652 if (EltTys.size() != Record.size()-1)
654 ResultTy = StructType::get(Context, EltTys, Record[0]);
678 SmallVector<Type*, 8> EltTys;
681 EltTys.push_back(T);
685 if (EltTys.size() != Record.size()-1)
687 Res->setBody(EltTys, Record[0]);
851 std::vector<Type*> EltTys;
854 EltTys.push_back(Elt)
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 861 SmallVector<Type*, 8> EltTys;
864 EltTys.push_back(T);
868 if (EltTys.size() != Record.size()-1)
870 ResultTy = StructType::get(Context, EltTys, Record[0]);
894 SmallVector<Type*, 8> EltTys;
897 EltTys.push_back(T);
901 if (EltTys.size() != Record.size()-1)
903 Res->setBody(EltTys, Record[0]);
    [all...]

Completed in 141 milliseconds