Home | History | Annotate | Download | only in src

Lines Matching refs:check_

66   HInstruction* check_;  // The last check instruction.
186 if (old_entry->check_ != NULL &&
187 old_entry->check_->block()->Dominates(succ)) {
188 new_entry->check_ = old_entry->check_;
192 new_entry->check_ = NULL;
234 entry->check_ = cmp;
344 if (this_entry->check_ != that_entry->check_) {
345 this_entry->check_ = NULL;
369 if (entry->check_ != NULL) {
372 instr->id(), instr->block()->block_id(), entry->check_->id()));
373 instr->DeleteAndReplaceWith(entry->check_);
376 DCHECK_EQ(NULL, entry->check_);
388 entry->check_ = instr;
410 if (entry->check_ != NULL &&
411 entry->check_->block() == instr->block() &&
412 entry->check_->IsCheckMaps()) {
415 HCheckMaps* check = HCheckMaps::cast(entry->check_);
423 instr->id(), instr->block()->block_id(), entry->check_->id()));
424 instr->DeleteAndReplaceWith(entry->check_);
429 entry->check_ = instr->IsStabilityCheck() ? NULL : instr;
655 entry->check_ = NULL;
676 entry->check_ = NULL;
740 if (entry->check_ != NULL) {
741 PrintF("check #%d ", entry->check_->id());
778 entry->check_ = check;