OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cursor_block
(Results
1 - 1
of
1
) sorted by null
/art/compiler/optimizing/
inliner.cc
554
HBasicBlock*
cursor_block
= compare->GetBlock();
local
558
// Spit the block after the compare: `
cursor_block
` will now be the start of the diamond,
560
HBasicBlock* then =
cursor_block
->SplitAfterForInlining(compare);
584
cursor_block
->AddInstruction(new (allocator) HIf(compare, dex_pc));
592
cursor_block
->AddSuccessor(otherwise);
593
cursor_block
->AddSuccessor(then);
598
then->SetDominator(
cursor_block
);
599
cursor_block
->AddDominatedBlock(then);
600
otherwise->SetDominator(
cursor_block
);
601
cursor_block
->AddDominatedBlock(otherwise)
[
all
...]
Completed in 162 milliseconds