OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:func_range
(Results
1 - 4
of
4
) sorted by null
/external/lldb/source/Plugins/SymbolFile/Symtab/
SymbolFileSymtab.cpp
217
AddressRange
func_range
(curr_symbol->GetAddress(), 0);
218
if (
func_range
.GetBaseAddress().IsSectionOffset())
222
func_range
.SetByteSize(symbol_size);
228
func_range
.SetByteSize(next_symbol->GetAddress().GetOffset() - curr_symbol->GetAddress().GetOffset());
237
func_range
)); // first address range
/external/lldb/source/Expression/
IRExecutionUnit.cpp
135
std::pair <lldb::addr_t, lldb::addr_t>
func_range
;
local
137
func_range
= GetRemoteRangeForLocal(func_local_addr);
139
if (
func_range
.first == 0 &&
func_range
.second == 0)
147
log->Printf("Function's code range is [0x%" PRIx64 "+0x%" PRIx64 "]",
func_range
.first,
func_range
.second);
157
lldb::DataBufferSP buffer_sp(new DataBufferHeap(
func_range
.second, 0));
375
AddrRange
func_range
= GetRemoteRangeForLocal(jitted_function.m_local_addr);
local
376
m_function_end_load_addr =
func_range
.first +
func_range
.second
[
all
...]
/external/lldb/source/Symbol/
Block.cpp
295
const AddressRange &
func_range
= function->GetAddressRange();
local
296
if (addr.GetSection() ==
func_range
.GetBaseAddress().GetSection())
299
const addr_t func_offset =
func_range
.GetBaseAddress().GetOffset();
300
if (addr_offset >= func_offset && addr_offset < func_offset +
func_range
.GetByteSize())
308
range.GetBaseAddress() =
func_range
.GetBaseAddress();
336
const AddressRange &
func_range
= function->GetAddressRange();
local
337
if (addr.GetSection() ==
func_range
.GetBaseAddress().GetSection())
340
const addr_t func_offset =
func_range
.GetBaseAddress().GetOffset();
341
if (addr_offset >= func_offset && addr_offset < func_offset +
func_range
.GetByteSize())
/external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp
1053
AddressRange
func_range
;
local
[
all
...]
Completed in 33 milliseconds