HomeSort by relevance Sort by last modified time
    Searched refs:live_ (Results 1 - 5 of 5) sorted by null

  /external/v8/src/compiler/
graph-trimmer.cc 14 : graph_(graph), is_live_(graph, 2), live_(zone) {
15 live_.reserve(graph->NodeCount());
26 for (size_t i = 0; i < live_.size(); ++i) {
27 Node* const live = live_[i];
31 for (Node* const live : live_) {
graph-trimmer.h 44 live_.push_back(node);
52 NodeVector live_; member in class:v8::internal::compiler::final
liveness-analyzer.cc 90 live_(local_count == 0 ? 1 : static_cast<int>(local_count), zone),
99 result->CopyFrom(live_);
120 return live_.UnionIsChanged(*working_area);
189 if (live_.length() > 0) {
191 for (int i = 0; i < live_.length(); i++) {
192 os << (live_.Contains(i) ? "L" : ".");
liveness-analyzer.h 139 BitVector live_; member in class:v8::internal::compiler::LivenessAnalyzerBlock
  /external/v8/tools/gcmole/
gcmole.cc 325 env.live_.set();
336 if (effect.env() != NULL) out.live_ |= effect.env()->live_;
345 return live_[code->second];
349 return live_ == env.live_;
357 live_.set(SymbolToCode(name));
390 if (live_[i->second]) {
407 : live_(l.live_ & r.live_)
419 std::bitset<kMaxNumberOfLocals> live_; member in class:__anon24070::Environment
    [all...]

Completed in 77 milliseconds