Lines Matching defs:file
32 struct instruction *find_insn(struct objtool_file *file, in find_insn()
44 static struct instruction *next_insn_same_sec(struct objtool_file *file, in next_insn_same_sec()
55 static struct instruction *next_insn_same_func(struct objtool_file *file, in next_insn_same_func()
75 #define func_for_each_insn_all(file, func, insn) \ argument
80 #define func_for_each_insn(file, func, insn) \ argument
87 #define func_for_each_insn_continue_reverse(file, func, insn) \ argument
93 #define sec_for_each_insn_from(file, insn) \ argument
96 #define sec_for_each_insn_continue(file, insn) \ argument
123 static bool __dead_end_function(struct objtool_file *file, struct symbol *func, in __dead_end_function()
207 static bool dead_end_function(struct objtool_file *file, struct symbol *func) in dead_end_function()
230 static int decode_instructions(struct objtool_file *file) in decode_instructions()
298 static int add_dead_ends(struct objtool_file *file) in add_dead_ends()
399 static void add_ignores(struct objtool_file *file) in add_ignores()
492 static void add_uaccess_safe(struct objtool_file *file) in add_uaccess_safe()
515 static int add_ignore_alternatives(struct objtool_file *file) in add_ignore_alternatives()
546 static int add_jump_destinations(struct objtool_file *file) in add_jump_destinations()
648 static int add_call_destinations(struct objtool_file *file) in add_call_destinations()
708 static int handle_group_alt(struct objtool_file *file, in handle_group_alt()
806 static int handle_jump_alt(struct objtool_file *file, in handle_jump_alt()
830 static int add_special_section_alts(struct objtool_file *file) in add_special_section_alts()
898 static int add_jump_table(struct objtool_file *file, struct instruction *insn, in add_jump_table()
997 static struct rela *find_jump_table(struct objtool_file *file, in find_jump_table()
1077 static void mark_func_jump_tables(struct objtool_file *file, in mark_func_jump_tables()
1112 static int add_func_jump_tables(struct objtool_file *file, in add_func_jump_tables()
1135 static int add_jump_table_alts(struct objtool_file *file) in add_jump_table_alts()
1159 static int read_unwind_hints(struct objtool_file *file) in read_unwind_hints()
1253 static int read_retpoline_hints(struct objtool_file *file) in read_retpoline_hints()
1288 static void mark_rodata(struct objtool_file *file) in mark_rodata()
1314 static int decode_sections(struct objtool_file *file) in decode_sections()
1942 static int validate_branch(struct objtool_file *file, struct symbol *func, in validate_branch()
2224 static int validate_unwind_hints(struct objtool_file *file) in validate_unwind_hints()
2247 static int validate_retpoline(struct objtool_file *file) in validate_retpoline()
2343 static int validate_functions(struct objtool_file *file) in validate_functions()
2388 static int validate_reachable_instructions(struct objtool_file *file) in validate_reachable_instructions()
2406 static void cleanup(struct objtool_file *file) in cleanup()
2423 static struct objtool_file file; variable