Home
last modified time | relevance | path

Searched refs:block_range (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DRegionInfo.h618 using block_range = iterator_range<block_iterator>;
622 inline block_range blocks() {
623 return block_range(block_begin(), block_end());
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThread.cpp504 AddressRange block_range; in DoExecute() local
506 block->GetRangeContainingAddress(pc_address, block_range); in DoExecute()
507 if (!block_range.GetBaseAddress().IsValid()) { in DoExecute()
514 block_range.GetBaseAddress().GetFileAddress(); in DoExecute()
516 block_range.GetByteSize() - pc_offset_in_block; in DoExecute()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbolContext.cpp120 lldb_private::AddressRange block_range; in DumpStopContext() local
121 if (inlined_block->GetRangeContainingAddress(addr, block_range)) { in DumpStopContext()
123 addr.GetOffset() - block_range.GetBaseAddress().GetOffset(); in DumpStopContext()
/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py868 block_range = block.range[frame.addr]
869 if block_range:
870 block_start_addr = block_range[0]
/llvm-project-15.0.7/polly/include/polly/
H A DScopInfo.h2120 Region::block_range blocks() const { return R.blocks(); } in blocks()