Searched refs:instructions_ (Results 1 – 2 of 2) sorted by relevance
484 Add(&instructions_, this, instruction); in AddInstruction()501 instructions_.InsertInstructionBefore(instruction, cursor); in InsertInstructionBefore()515 instructions_.InsertInstructionAfter(instruction, cursor); in InsertInstructionAfter()544 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction()908 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()909 block_->instructions_.first_instruction_ = next_; in MoveBefore()911 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()921 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()922 block_->instructions_.first_instruction_ = this; in MoveBefore()928 DCHECK_NE(instructions_.last_instruction_, cursor); in SplitAfter()[all …]
559 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; } in GetFirstInstruction()560 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()561 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()762 HInstructionList instructions_; variable