Searched refs:first_instruction_ (Results 1 - 2 of 2) sorted by last modified time

/art/compiler/optimizing/
H A Dnodes.cc963 if (first_instruction_ == nullptr) {
965 first_instruction_ = last_instruction_ = instruction;
975 if (cursor == first_instruction_) {
978 first_instruction_ = instruction;
1008 if (instruction == first_instruction_) {
1009 first_instruction_ = instruction->next_;
1358 if (block_->instructions_.first_instruction_ == this) {
1359 block_->instructions_.first_instruction_ = next_;
1371 if (block_->instructions_.first_instruction_ == cursor) {
1372 block_->instructions_.first_instruction_
[all...]
H A Dnodes.h113 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {}
131 bool IsEmpty() const { return first_instruction_ == nullptr; }
132 void Clear() { first_instruction_ = last_instruction_ = nullptr; }
145 HInstruction* first_instruction_; member in class:art::HInstructionList
903 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; }
906 HInstruction* GetFirstPhi() const { return phis_.first_instruction_; }
2195 : instruction_(instructions.first_instruction_) {

Completed in 18 milliseconds