Home | History | Annotate | Download | only in optimizing

Lines Matching refs:instructions_

800     instructions_.InsertInstructionBefore(replacement, initial);
821 Add(&instructions_, this, instruction);
838 instructions_.InsertInstructionBefore(instruction, cursor);
852 instructions_.InsertInstructionAfter(instruction, cursor);
881 Remove(&instructions_, this, instruction, ensure_safety);
1486 if (block_->instructions_.first_instruction_ == this) {
1487 block_->instructions_.first_instruction_ = next_;
1489 DCHECK_NE(block_->instructions_.last_instruction_, this);
1499 if (block_->instructions_.first_instruction_ == cursor) {
1500 block_->instructions_.first_instruction_ = this;
1564 new_block->instructions_.first_instruction_ = cursor;
1565 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1566 instructions_.last_instruction_ = cursor->previous_;
1568 instructions_.first_instruction_ = nullptr;
1574 new_block->instructions_.SetBlockOfInstructions(new_block);
1610 new_block->instructions_.first_instruction_ = cursor;
1611 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1612 instructions_.last_instruction_ = cursor->previous_;
1614 instructions_.first_instruction_ = nullptr;
1620 new_block->instructions_.SetBlockOfInstructions(new_block);
1638 DCHECK_NE(instructions_.last_instruction_, cursor);
1642 new_block->instructions_.first_instruction_ = cursor->GetNext();
1643 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1646 instructions_.last_instruction_ = cursor;
1648 new_block->instructions_.SetBlockOfInstructions(new_block);
1976 instructions_.Add(other->GetInstructions());
1977 other->instructions_.SetBlockOfInstructions(this);
1978 other->instructions_.Clear();
2036 instructions_.Add(other->GetInstructions());
2037 other->instructions_.SetBlockOfInstructions(this);
2181 invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions());