OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:next_dex_pc
(Results
1 - 5
of
5
) sorted by null
/art/compiler/optimizing/
block_builder.cc
179
uint32_t
next_dex_pc
= dex_pc + instruction.SizeInCodeUnits();
local
180
block->AddSuccessor(GetBlockAt(
next_dex_pc
));
instruction_builder.cc
592
uint32_t
next_dex_pc
= dex_pc + instruction.SizeInCodeUnits();
local
593
return block->GetSingleSuccessor()->GetDexPc() ==
next_dex_pc
;
[
all
...]
/art/runtime/
quick_exception_handler.cc
74
uint32_t
next_dex_pc
;
local
76
bool has_next = GetNextMethodAndDexPc(&next_art_method, &
next_dex_pc
);
78
exception_handler_->SetHandlerDexPc(
next_dex_pc
);
stack.cc
541
bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t*
next_dex_pc
) {
579
*
next_dex_pc
= visitor.next_dex_pc_;
[
all
...]
stack.h
633
bool GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t*
next_dex_pc
)
Completed in 5141 milliseconds