Lines Matching refs:Create

448       Function* func_test1 = Function::Create(  in makeLLVMModule()
456 Function* func_test2 = Function::Create( in makeLLVMModule()
464 Function* func_test3 = Function::Create( in makeLLVMModule()
472 Function* func_test4 = Function::Create( in makeLLVMModule()
493 BasicBlock::Create(Context, "entry", func_test1, nullptr); in makeLLVMModule()
496 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry); in makeLLVMModule()
502 ReturnInst::Create(Context, int32_3, label_entry); in makeLLVMModule()
509 BasicBlock::Create(Context, "entry", func_test2, nullptr); in makeLLVMModule()
512 CallInst* int32_6 = CallInst::Create(func_test3, "", label_entry_5); in makeLLVMModule()
518 ReturnInst::Create(Context, int32_6, label_entry_5); in makeLLVMModule()
525 BasicBlock::Create(Context, "entry", func_test3, nullptr); in makeLLVMModule()
528 CallInst* int32_9 = CallInst::Create(func_test1, "", label_entry_8); in makeLLVMModule()
534 ReturnInst::Create(Context, int32_9, label_entry_8); in makeLLVMModule()
544 BasicBlock::Create(Context, "entry", func_test4, nullptr); in makeLLVMModule()
546 BasicBlock::Create(Context, "bb", func_test4, nullptr); in makeLLVMModule()
548 BasicBlock::Create(Context, "bb1", func_test4, nullptr); in makeLLVMModule()
550 BasicBlock::Create(Context, "return", func_test4, nullptr); in makeLLVMModule()
556 BranchInst::Create(label_bb, label_entry_11); in makeLLVMModule()
559 BranchInst::Create(label_bb, label_bb1, int1_f, label_bb); in makeLLVMModule()
562 BranchInst::Create(label_bb1, label_return, int1_f, label_bb1); in makeLLVMModule()
565 ReturnInst::Create(Context, label_return); in makeLLVMModule()
575 Function *SF = Function::Create(F.getFunctionType(), F.getLinkage(), in splitSimpleFunction()
578 BasicBlock *Entry = BasicBlock::Create(Context, "entry", SF, nullptr); in splitSimpleFunction()
580 CI.clone()->insertBefore(ReturnInst::Create(Context, Entry)); in splitSimpleFunction()
637 Function *Test3FRepl = Function::Create( in runOnSCC()
687 CallInst::Create(F, "", &*SF->getEntryBlock().getFirstInsertionPt()); in TEST()