Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc781 instructions_.InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith()
803 to_block->instructions_.InsertInstructionBefore(insn, cursor); in MoveInstructionBefore()
818 Add(&instructions_, this, instruction); in AddInstruction()
835 instructions_.InsertInstructionBefore(instruction, cursor); in InsertInstructionBefore()
849 instructions_.InsertInstructionAfter(instruction, cursor); in InsertInstructionAfter()
878 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction()
1358 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()
1359 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1361 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()
1371 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()
[all …]
Dnodes.h903 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; } in GetFirstInstruction()
904 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
905 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
1145 HInstructionList instructions_; variable