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

  /external/chromium_org/v8/src/
hydrogen-bch.cc 201 !limit_block->Dominates(pre_header)) {
213 !check->check()->length()->block()->Dominates(pre_header)) {
266 !limit->block()->Dominates(pre_header)) {
hydrogen-escape-analysis.cc 174 if (!allocate_block->Dominates(block) && allocate_block != block) continue;
253 if (!allocate_block->Dominates(succ)) continue;
hydrogen-flow-engine.h 177 return !root->Dominates(other); // Only visit dominated blocks.
hydrogen-instructions.cc 721 bool HInstruction::Dominates(HInstruction* other) {
723 return block()->Dominates(other->block());
757 DCHECK(other_block->Dominates(cur_block));
    [all...]
hydrogen-check-elimination.cc 185 // Keep the check if the existing check's block dominates the successor.
187 old_entry->check_->block()->Dominates(succ)) {
hydrogen.h 92 bool Dominates(HBasicBlock* other) const;
    [all...]
hydrogen-instructions.h     [all...]
hydrogen.cc 284 bool HBasicBlock::Dominates(HBasicBlock* other) const {
296 return Dominates(other);
414 // Header always dominates everything.
428 // now, it's not possible to guarantee that the current block dominates
    [all...]
  /art/compiler/optimizing/
nodes.cc 250 if (!header_->Dominates(back_edge)) {
278 bool HBasicBlock::Dominates(HBasicBlock* other) const {
find_loops_test.cc 339 ASSERT_FALSE(info->GetHeader()->Dominates(info->GetBackEdges().Get(0)));
nodes.h 231 // that is the header dominates the back edge.
387 // Returns wheter this block dominates the blocked passed as parameter.
388 bool Dominates(HBasicBlock* block) const;
    [all...]

Completed in 347 milliseconds