Home
last modified time | relevance | path

Searched refs:HasEnvironmentUses (Results 1 – 10 of 10) sorted by relevance

/art/compiler/optimizing/
Dnodes_test.cc60 ASSERT_TRUE(parameter->HasEnvironmentUses()); in TEST_F()
65 ASSERT_FALSE(parameter->HasEnvironmentUses()); in TEST_F()
137 ASSERT_TRUE(parameter1->HasEnvironmentUses()); in TEST_F()
Dinstruction_simplifier_arm.cc90 DCHECK(!bitfield_op->HasEnvironmentUses()); in TryMergeIntoShifterOperand()
160 if (bitfield_op->HasEnvironmentUses()) { in TryMergeIntoUsersShifterOperand()
Dinstruction_simplifier_arm64.cc96 DCHECK(!bitfield_op->HasEnvironmentUses()); in TryMergeIntoShifterOperand()
164 if (bitfield_op->HasEnvironmentUses()) { in TryMergeIntoUsersShifterOperand()
Dssa_phi_elimination.cc53 bool keep_alive = (graph_->IsDebuggable() && phi->HasEnvironmentUses()); in MarkDeadPhis()
Dssa_liveness_analysis.cc227 DCHECK(!current->HasEnvironmentUses()); in ComputeLiveRanges()
Dssa_builder.cc93 if (!phi->IsDead() || !phi->HasEnvironmentUses()) continue; in FixEnvironmentPhis()
Dnodes.cc1427 DCHECK(!ctor_fence->HasEnvironmentUses()); in RemoveConstructorFences()
1467 DCHECK(!other->HasEnvironmentUses()); in Merge()
1786 DCHECK(!HasEnvironmentUses()); in MoveBeforeFirstUserAndOutOfLoops()
2111 DCHECK(!insn->HasEnvironmentUses()); in RemoveUsesOfDeadInstruction()
Dloop_optimization.cc2302 !reduction->HasEnvironmentUses() && in TrySetPhiReduction()
2350 !c->HasEnvironmentUses()) { // unlikely, but not impossible in TrySetSimpleLoopHeader()
2482 if (i->HasEnvironmentUses() && graph_->IsDebuggable()) { in CanRemoveCycle()
Dinstruction_simplifier.cc1115 if (type_conversion->HasEnvironmentUses()) { in IsTypeConversionForStoringIntoNoWiderFieldOnly()
2572 DCHECK(!as_invoke_virtual->HasEnvironmentUses()); in TryReplaceStringBuilderAppend()
2644 DCHECK(!sb->HasEnvironmentUses()); in TryReplaceStringBuilderAppend()
Dnodes.h2273 bool HasEnvironmentUses() const { return !env_uses_.empty(); } in HasEnvironmentUses() function
2276 return !HasEnvironmentUses() && GetUses().HasExactlyOneElement(); in HasOnlyOneNonEnvironmentUse()