Home | History | Annotate | Download | only in compiler

Lines Matching defs:block

25   for (auto block : blocks_) {
26 block->Print(os);
49 void LivenessAnalyzer::Queue(LivenessAnalyzerBlock* block) {
50 if (!block->IsQueued()) {
51 block->SetQueued();
52 queue_.push(block);
65 for (auto block : blocks_) {
66 Queue(block);
73 LivenessAnalyzerBlock* block = queue_.front();
75 block->Process(&working_area, nullptr);
77 for (auto i = block->pred_begin(); i != block->pred_end(); i++) {
85 for (auto block : blocks_) {
86 block->Process(&working_area, replacer);
186 os << "Block " << id();