Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:EltTys

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");
293 EltTys.clear();
294 EltTys.push_back(PointerType::getUnqual(StackEntryTy));
295 EltTys.push_back(FrameMapPtrTy);
296 StackEntryTy->setBody(EltTys);