Home | History | Annotate | Download | only in llvm

Lines Matching refs:fN

1330 (** [fold_left_function f init m] is [f (... (f init f1) ...) fN] where
1331 [f1,...,fN] are the functions of module [m]. Tail recursive. *)
1346 (** [rev_iter_functions f fn] applies function [f] to each of the functions of
1350 (** [fold_right_functions f m init] is [f (... (f init fN) ...) f1] where
1351 [f1,...,fN] are the functions of module [m]. Tail recursive. *)
1419 (** [iter_params f fn] applies function [f] to each of the parameters
1420 of function [fn] in order. Tail recursive. *)
1423 (** [fold_left_params f init fn] is [f (... (f init b1) ...) bN] where
1424 [b1,...,bN] are the parameters of function [fn]. Tail recursive. *)
1438 (** [rev_iter_params f fn] applies function [f] to each of the parameters
1439 of function [fn] in reverse order. Tail recursive. *)
1442 (** [fold_right_params f fn init] is [f (... (f init bN) ...) b1] where
1443 [b1,...,bN] are the parameters of function [fn]. Tail recursive. *)
1458 (** [basic_blocks fn] returns the basic blocks of the function [f].
1462 (** [entry_block fn] returns the entry basic block of the function [f].
1499 (** [iter_blocks f fn] applies function [f] to each of the basic blocks
1500 of function [fn] in order. Tail recursive. *)
1503 (** [fold_left_blocks f init fn] is [f (... (f init b1) ...) bN] where
1504 [b1,...,bN] are the basic blocks of function [fn]. Tail recursive. *)
1520 (** [rev_iter_blocks f fn] applies function [f] to each of the basic blocks
1521 of function [fn] in reverse order. Tail recursive. *)
1524 (** [fold_right_blocks f fn init] is [f (... (f init bN) ...) b1] where
1525 [b1,...,bN] are the basic blocks of function [fn]. Tail recursive. *)
1578 (** [fold_right_instrs f bb init] is [f (... (f init fN) ...) f1] where
1579 [f1,...,fN] are the instructions of basic block [bb]. Tail recursive. *)
1791 (** [build_invoke fn args tobb unwindbb name b] creates an
1792 [%name = invoke %fn(args) to %tobb unwind %unwindbb]
2258 (** [build_call fn args name b] creates a
2259 [%name = call %fn(args...)]