HomeSort by relevance Sort by last modified time
    Searched defs:last_value_ (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/
global_value_numbering.h 43 return last_value_ < kNoValue;
72 ++last_value_;
73 return last_value_;
102 DCHECK_LE(value, last_value_);
219 // We have 32-bit last_value_ so that we can detect when we run out of value names, see Good().
221 uint32_t last_value_; member in class:art::GlobalValueNumbering
  /external/chromium_org/v8/src/
hydrogen-load-elimination.cc 23 HValue* last_value_; member in class:v8::internal::HFieldApproximation
30 copy->last_value_ = this->last_value_;
173 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
212 if (approx->last_value_ == NULL) {
214 approx->last_value_ = instr;
216 } else if (approx->last_value_->block()->EqualToOrDominates(
219 return approx->last_value_;
253 if (Equal(approx->last_value_, value))
    [all...]

Completed in 257 milliseconds