Lines Matching defs:file

39 struct instruction *find_insn(struct objtool_file *file,  in find_insn()
51 static struct instruction *next_insn_same_sec(struct objtool_file *file, in next_insn_same_sec()
62 static struct instruction *next_insn_same_func(struct objtool_file *file, in next_insn_same_func()
82 #define func_for_each_insn_all(file, func, insn) \ argument
87 #define func_for_each_insn(file, func, insn) \ argument
94 #define func_for_each_insn_continue_reverse(file, func, insn) \ argument
100 #define sec_for_each_insn_from(file, insn) \ argument
103 #define sec_for_each_insn_continue(file, insn) \ argument
112 static bool ignore_func(struct objtool_file *file, struct symbol *func) in ignore_func()
144 static int __dead_end_function(struct objtool_file *file, struct symbol *func, in __dead_end_function()
234 static int dead_end_function(struct objtool_file *file, struct symbol *func) in dead_end_function()
257 static int decode_instructions(struct objtool_file *file) in decode_instructions()
333 static int add_dead_ends(struct objtool_file *file) in add_dead_ends()
434 static void add_ignores(struct objtool_file *file) in add_ignores()
460 static int add_nospec_ignores(struct objtool_file *file) in add_nospec_ignores()
491 static int add_jump_destinations(struct objtool_file *file) in add_jump_destinations()
577 static int add_call_destinations(struct objtool_file *file) in add_call_destinations()
640 static int handle_group_alt(struct objtool_file *file, in handle_group_alt()
740 static int handle_jump_alt(struct objtool_file *file, in handle_jump_alt()
764 static int add_special_section_alts(struct objtool_file *file) in add_special_section_alts()
830 static int add_switch_table(struct objtool_file *file, struct instruction *insn, in add_switch_table()
923 static struct rela *find_switch_table(struct objtool_file *file, in find_switch_table()
988 static int add_func_switch_tables(struct objtool_file *file, in add_func_switch_tables()
1049 static int add_switch_table_alts(struct objtool_file *file) in add_switch_table_alts()
1072 static int read_unwind_hints(struct objtool_file *file) in read_unwind_hints()
1166 static int read_retpoline_hints(struct objtool_file *file) in read_retpoline_hints()
1201 static int decode_sections(struct objtool_file *file) in decode_sections()
1780 static int validate_branch(struct objtool_file *file, struct instruction *first, in validate_branch()
1976 static int validate_unwind_hints(struct objtool_file *file) in validate_unwind_hints()
1997 static int validate_retpoline(struct objtool_file *file) in validate_retpoline()
2093 static int validate_functions(struct objtool_file *file) in validate_functions()
2125 static int validate_reachable_instructions(struct objtool_file *file) in validate_reachable_instructions()
2143 static void cleanup(struct objtool_file *file) in cleanup()
2162 struct objtool_file file; in check() local