OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:the_function
(Results
1 - 14
of
14
) sorted by null
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml
58
let
the_function
= block_parent start_bb in
var
60
let then_bb = append_block context "then"
the_function
in
72
let else_bb = append_block context "else"
the_function
in
81
let merge_bb = append_block context "ifcont"
the_function
in
106
let
the_function
= block_parent preheader_bb in
var
107
let loop_bb = append_block context "loop"
the_function
in
151
let after_bb = append_block context "afterloop"
the_function
in
204
let
the_function
= codegen_proto proto in
207
let bb = append_block context "entry"
the_function
in
217
Llvm_analysis.assert_valid_function
the_function
;
[
all
...]
toplevel.ml
33
let
the_function
= Codegen.codegen_func the_fpm e in
34
dump_value
the_function
;
37
let result = ExecutionEngine.run_function
the_function
[||]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml
82
let
the_function
= codegen_proto proto in
85
let bb = append_block context "entry"
the_function
in
95
Llvm_analysis.assert_valid_function
the_function
;
98
let _ = PassManager.run_function
the_function
the_fpm in
100
the_function
102
delete_function
the_function
;
toplevel.ml
33
let
the_function
= Codegen.codegen_func the_fpm e in
34
dump_value
the_function
;
37
let result = ExecutionEngine.run_function
the_function
[||]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml
17
let create_entry_block_alloca
the_function
var_name =
18
let builder = builder_at context (instr_begin (entry_block
the_function
)) in
106
let
the_function
= block_parent start_bb in
var
108
let then_bb = append_block context "then"
the_function
in
120
let else_bb = append_block context "else"
the_function
in
129
let merge_bb = append_block context "ifcont"
the_function
in
168
let
the_function
= block_parent (insertion_block builder) in
var
171
let alloca = create_entry_block_alloca
the_function
var_name in
181
let loop_bb = append_block context "loop"
the_function
in
225
let after_bb = append_block context "afterloop"
the_function
i
244
let
the_function
= block_parent (insertion_block builder) in
var
[
all
...]
toplevel.ml
33
let
the_function
= Codegen.codegen_func the_fpm e in
34
dump_value
the_function
;
37
let result = ExecutionEngine.run_function
the_function
[||]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml
82
let
the_function
= codegen_proto proto in
85
let bb = append_block context "entry"
the_function
in
95
Llvm_analysis.assert_valid_function
the_function
;
97
the_function
99
delete_function
the_function
;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml
76
let
the_function
= block_parent start_bb in
var
78
let then_bb = append_block context "then"
the_function
in
90
let else_bb = append_block context "else"
the_function
in
99
let merge_bb = append_block context "ifcont"
the_function
in
124
let
the_function
= block_parent preheader_bb in
var
125
let loop_bb = append_block context "loop"
the_function
in
169
let after_bb = append_block context "afterloop"
the_function
in
222
let
the_function
= codegen_proto proto in
233
let bb = append_block context "entry"
the_function
in
243
Llvm_analysis.assert_valid_function
the_function
;
[
all
...]
toplevel.ml
33
let
the_function
= Codegen.codegen_func the_fpm e in
34
dump_value
the_function
;
37
let result = ExecutionEngine.run_function
the_function
[||]
/external/llvm/docs/tutorial/
OCamlLangImpl5.rst
268
let
the_function
= block_parent start_bb in
270
let then_bb = append_block context "then"
the_function
in
319
let else_bb = append_block context "else"
the_function
in
333
let merge_bb = append_block context "ifcont"
the_function
in
554
let
the_function
= block_parent preheader_bb in
555
let loop_bb = append_block context "loop"
the_function
in
648
let after_bb = append_block context "afterloop"
the_function
in
[
all
...]
OCamlLangImpl7.rst
343
let create_entry_block_alloca
the_function
var_name =
344
let builder = builder_at (instr_begin (entry_block
the_function
)) in
376
let
the_function
= block_parent (insertion_block builder) in
379
let alloca = create_entry_block_alloca
the_function
var_name in
421
let create_argument_allocas
the_function
proto =
428
let alloca = create_entry_block_alloca
the_function
var_name in
435
) (params
the_function
)
748
let
the_function
= block_parent (insertion_block builder) in
771
let alloca = create_entry_block_alloca
the_function
var_name in
[
all
...]
OCamlLangImpl4.rst
192
Llvm_analysis.assert_valid_function
the_function
;
195
let _ = PassManager.run_function
the_function
the_fpm in
197
the_function
277
let
the_function
= Codegen.codegen_func the_fpm e in
278
dump_value
the_function
;
281
let result = ExecutionEngine.run_function
the_function
[||]
770
let
the_function
= codegen_proto proto in
773
let bb = append_block context "entry"
the_function
in
783
Llvm_analysis.assert_valid_function
the_function
;
786
let _ = PassManager.run_function
the_function
the_fpm i
[
all
...]
OCamlLangImpl3.rst
318
let
the_function
= codegen_proto proto in
330
let bb = append_block context "entry"
the_function
in
339
which is inserted into ``
the_function
``. The second line then tells the
355
Llvm_analysis.assert_valid_function
the_function
;
357
the_function
374
delete_function
the_function
;
[
all
...]
OCamlLangImpl6.rst
241
let
the_function
= codegen_proto proto in
252
let bb = append_block context "entry"
the_function
in
[
all
...]
Completed in 107 milliseconds