Home
last modified time | relevance | path

Searched refs:instructions_ (Results 1 – 2 of 2) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction_iterator.h32 return *Instruction::At(instructions_ + DexPc()); in Inst()
44 return instructions_; in Instructions()
49 : instructions_(instructions), dex_pc_(dex_pc) {} in DexInstructionPcPair()
51 const uint16_t* instructions_ = nullptr; variable
/art/compiler/optimizing/
Dnodes.cc982 instructions_.InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith()
1003 Add(&instructions_, this, instruction); in AddInstruction()
1020 instructions_.InsertInstructionBefore(instruction, cursor); in InsertInstructionBefore()
1034 instructions_.InsertInstructionAfter(instruction, cursor); in InsertInstructionAfter()
1063 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction()
1765 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()
1766 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1768 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()
1778 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()
1779 block_->instructions_.first_instruction_ = this; in MoveBefore()
[all …]