Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:StructType

49                                      llvm::StructType *Ty,
100 llvm::DenseMap<const Type*, llvm::StructType *>::const_iterator I =
409 ResultType = llvm::StructType::get(EltTy, EltTy, nullptr);
495 ResultType = llvm::StructType::get(getLLVMContext());
505 ResultType = llvm::StructType::get(getLLVMContext());
527 ResultType = llvm::StructType::get(getLLVMContext());
556 T = llvm::StructType::create(getLLVMContext());
592 return llvm::StructType::create(getLLVMContext());
611 ResultType = llvm::StructType::get(getLLVMContext(),
633 llvm::StructType *CodeGenTypes::ConvertRecordDeclType(const RecordDecl *RD) {
638 llvm::StructType *&Entry = RecordDeclTypes[Key];
640 // If we don't have a StructType at all yet, create the forward declaration.
642 Entry = llvm::StructType::create(getLLVMContext());
645 llvm::StructType *Ty = Entry;