Home
last modified time | relevance | path

Searched refs:function_start (Results 1 – 6 of 6) sorted by relevance

/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp103 addr_t function_start = sym_addr.GetLoadAddress(&target); in GetBreakableLoadAddress()
104 if (function_start == LLDB_INVALID_ADDRESS) in GetBreakableLoadAddress() local
105 function_start = sym_addr.GetFileAddress(); in GetBreakableLoadAddress()
107 if (function_start) in GetBreakableLoadAddress()
108 current_offset = addr - function_start; in GetBreakableLoadAddress()
/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c427 void print_encoding_x86_64(struct baton baton, uint8_t *function_start, in print_encoding_x86_64() argument
476 if (mode == UNWIND_X86_64_MODE_STACK_IND && function_start) { in print_encoding_x86_64()
485 stack_size = *((uint32_t *)(function_start + offset_to_subl_insn)); in print_encoding_x86_64()
643 void print_encoding_i386(struct baton baton, uint8_t *function_start, in print_encoding_i386() argument
692 if (mode == UNWIND_X86_MODE_STACK_IND && function_start) { in print_encoding_i386()
701 stack_size = *((uint32_t *)(function_start + offset_to_subl_insn)); in print_encoding_i386()
859 void print_encoding_arm64(struct baton baton, uint8_t *function_start, in print_encoding_arm64() argument
964 void print_encoding_armv7(struct baton baton, uint8_t *function_start, in print_encoding_armv7() argument
1102 void print_encoding(struct baton baton, uint8_t *function_start, in print_encoding() argument
1106 print_encoding_x86_64(baton, function_start, encoding); in print_encoding()
[all …]
/llvm-project/lldb/test/API/functionalities/unwind/noreturn/module-end/
H A DTestNoReturnModuleEnd.py38 function_start = symbol.GetStartAddress().GetLoadAddress(target)
39 self.assertEqual(function_start + backtrace[i][1], frame.GetPC())
/llvm-project/lldb/examples/python/
H A Ddiagnose_unwind.py51 function_start = sym_ctx.GetSymbol().GetStartAddress().GetLoadAddress(target)
52 offset = addr - function_start
/llvm-project/clang/test/SemaCXX/
H A Dbuiltins.cpp53 namespace function_start { in no_ms_builtins()
59 } // namespace function_start
45 namespace function_start { global() namespace
/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp961 LineEntry function_start; in DoExecute()
975 line_table->FindLineEntryByAddress(fun_start_addr, function_start, in DoExecute()
984 line_table->FindLineEntryByAddress(fun_end_addr, function_start, in DoExecute()
956 LineEntry function_start; DoExecute() local