Lines Matching defs:file

36 struct instruction *find_insn(struct objtool_file *file,  in find_insn()
49 static struct instruction *next_insn_same_sec(struct objtool_file *file, in next_insn_same_sec()
60 static struct instruction *next_insn_same_func(struct objtool_file *file, in next_insn_same_func()
80 static struct instruction *prev_insn_same_sym(struct objtool_file *file, in prev_insn_same_sym()
91 #define func_for_each_insn(file, func, insn) \ argument
96 #define sym_for_each_insn(file, sym, insn) \ argument
103 #define sym_for_each_insn_continue_reverse(file, sym, insn) \ argument
109 #define sec_for_each_insn_from(file, insn) \ argument
112 #define sec_for_each_insn_continue(file, insn) \ argument
155 static bool __dead_end_function(struct objtool_file *file, struct symbol *func, in __dead_end_function()
242 static bool dead_end_function(struct objtool_file *file, struct symbol *func) in dead_end_function()
350 static int decode_instructions(struct objtool_file *file) in decode_instructions()
424 static struct instruction *find_last_insn(struct objtool_file *file, in find_last_insn()
440 static int add_dead_ends(struct objtool_file *file) in add_dead_ends()
523 static int create_static_call_sections(struct objtool_file *file) in create_static_call_sections()
611 static int create_retpoline_sites_sections(struct objtool_file *file) in create_retpoline_sites_sections()
657 static int create_return_sites_sections(struct objtool_file *file) in create_return_sites_sections()
703 static int create_mcount_loc_sections(struct objtool_file *file) in create_mcount_loc_sections()
749 static void add_ignores(struct objtool_file *file) in add_ignores()
925 static void add_uaccess_safe(struct objtool_file *file) in add_uaccess_safe()
948 static int add_ignore_alternatives(struct objtool_file *file) in add_ignore_alternatives()
988 static struct reloc *insn_reloc(struct objtool_file *file, struct instruction *insn) in insn_reloc()
1015 static void annotate_call_site(struct objtool_file *file, in annotate_call_site()
1075 static void add_call_dest(struct objtool_file *file, struct instruction *insn, in add_call_dest()
1094 static void add_retpoline_call(struct objtool_file *file, struct instruction *insn) in add_retpoline_call()
1128 static void add_return_call(struct objtool_file *file, struct instruction *insn, bool add) in add_return_call()
1156 static void add_cfi_jumptables(struct objtool_file *file) in add_cfi_jumptables()
1176 static int add_jump_destinations(struct objtool_file *file) in add_jump_destinations()
1302 static int add_call_destinations(struct objtool_file *file) in add_call_destinations()
1364 static int handle_group_alt(struct objtool_file *file, in handle_group_alt()
1505 static int handle_jump_alt(struct objtool_file *file, in handle_jump_alt()
1529 static int add_special_section_alts(struct objtool_file *file) in add_special_section_alts()
1603 static int add_jump_table(struct objtool_file *file, struct instruction *insn, in add_jump_table()
1663 static struct reloc *find_jump_table(struct objtool_file *file, in find_jump_table()
1706 static void mark_func_jump_tables(struct objtool_file *file, in mark_func_jump_tables()
1741 static int add_func_jump_tables(struct objtool_file *file, in add_func_jump_tables()
1764 static int add_jump_table_alts(struct objtool_file *file) in add_jump_table_alts()
1796 static int read_unwind_hints(struct objtool_file *file) in read_unwind_hints()
1887 static int read_retpoline_hints(struct objtool_file *file) in read_retpoline_hints()
1924 static int read_instr_hints(struct objtool_file *file) in read_instr_hints()
1971 static int read_intra_function_calls(struct objtool_file *file) in read_intra_function_calls()
2022 static int classify_symbols(struct objtool_file *file) in classify_symbols()
2053 static void mark_rodata(struct objtool_file *file) in mark_rodata()
2079 static int decode_sections(struct objtool_file *file) in decode_sections()
2652 static int propagate_alt_cfi(struct objtool_file *file, struct instruction *insn) in propagate_alt_cfi()
2883 static struct instruction *next_insn_to_validate(struct objtool_file *file, in next_insn_to_validate()
2905 static int validate_branch(struct objtool_file *file, struct symbol *func, in validate_branch()
3154 static int validate_unwind_hints(struct objtool_file *file, struct section *sec) in validate_unwind_hints()
3193 static int validate_entry(struct objtool_file *file, struct instruction *insn) in validate_entry()
3306 static int validate_unret(struct objtool_file *file) in validate_unret()
3326 static int validate_retpoline(struct objtool_file *file) in validate_retpoline()
3380 static bool ignore_unreachable_insn(struct objtool_file *file, struct instruction *insn) in ignore_unreachable_insn()
3448 static int validate_symbol(struct objtool_file *file, struct section *sec, in validate_symbol()
3474 static int validate_section(struct objtool_file *file, struct section *sec) in validate_section()
3493 static int validate_vmlinux_functions(struct objtool_file *file) in validate_vmlinux_functions()
3513 static int validate_functions(struct objtool_file *file) in validate_functions()
3528 static int validate_reachable_instructions(struct objtool_file *file) in validate_reachable_instructions()
3546 int check(struct objtool_file *file) in check()