Home | History | Annotate | Download | only in tutorial

Lines Matching full:the_function

241           let the_function = codegen_proto proto in
252 let bb = append_block context "entry" the_function in
1135 let the_function = block_parent start_bb in
1137 let then_bb = append_block context "then" the_function in
1149 let else_bb = append_block context "else" the_function in
1158 let merge_bb = append_block context "ifcont" the_function in
1183 let the_function = block_parent preheader_bb in
1184 let loop_bb = append_block context "loop" the_function in
1228 let after_bb = append_block context "afterloop" the_function in
1281 let the_function = codegen_proto proto in
1292 let bb = append_block context "entry" the_function in
1302 Llvm_analysis.assert_valid_function the_function;
1305 let _ = PassManager.run_function the_function the_fpm in
1307 the_function
1309 delete_function the_function;
1347 let the_function = Codegen.codegen_func the_fpm e in
1348 dump_value the_function;
1351 let result = ExecutionEngine.run_function the_function [||]