Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:EltTys

229   Type *EltTys[] = { DescriptorElts[0]->getType(),DescriptorElts[1]->getType()};
230 StructType *STy = StructType::create(EltTys, "gc_map."+utostr(NumMeta));
260 std::vector<Type*> EltTys;
261 EltTys.push_back(StackEntryTy);
263 EltTys.push_back(Roots[I].second->getAllocatedType());
265 return StructType::create(EltTys, "gc_stackentry."+F.getName().str());
276 std::vector<Type*> EltTys;
278 EltTys.push_back(Type::getInt32Ty(M.getContext()));
280 EltTys.push_back(Type::getInt32Ty(M.getContext()));
281 FrameMapTy = StructType::create(EltTys, "gc_map");
292 EltTys.clear();
293 EltTys.push_back(PointerType::getUnqual(StackEntryTy));
294 EltTys.push_back(FrameMapPtrTy);
295 StackEntryTy->setBody(EltTys);