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

  /external/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/
bounds_check_elimination.cc 291 if (!block->Dominates(back_edge)) {
703 if (!initial_->GetBlock()->Dominates(pre_header) ||
704 !end_->GetBlock()->Dominates(pre_header)) {
736 DCHECK(value->GetBlock()->Dominates(pre_header));
784 DCHECK(initial_->GetBlock()->Dominates(pre_header));
785 DCHECK(end_->GetBlock()->Dominates(pre_header));
    [all...]
reference_type_propagation.cc 96 if (notNullBlock->Dominates(user->GetBlock())) {
151 if (instanceOfTrueBlock->Dominates(user->GetBlock())) {
graph_checker.cc 377 } else if (!loop_header->Dominates(loop_block)) {
399 // Ensure an instruction dominates all its uses.
466 // predecessor or from a block that dominates this predecessor.
471 || input->GetBlock()->Dominates(predecessor))) {
nodes.cc 374 if (!header_->Dominates(back_edge)) {
414 DCHECK(header_->Dominates(back_edges_.Get(i)));
443 bool HBasicBlock::Dominates(HBasicBlock* other) const {
592 DCHECK(initial->GetBlock()->Dominates(loop_header));
708 return GetBlock()->Dominates(other_instruction->GetBlock());
715 // dominates `other_instruction`.
    [all...]
find_loops_test.cc 349 ASSERT_FALSE(info->GetHeader()->Dominates(info->GetBackEdges().Get(0)));
nodes.h 447 // that is the header dominates the back edge.
740 // Returns whether this block dominates the blocked passed as parameter.
741 bool Dominates(HBasicBlock* block) const;
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]

Completed in 1840 milliseconds