Home
last modified time | relevance | path

Searched refs:CanThrow (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dlicm.cc133 && (!instruction->CanThrow() || !found_first_non_hoisted_visible_instruction_in_loop) in Run()
145 } else if (instruction->CanThrow() || instruction->DoesAnyWrite()) { in Run()
Dscheduler.cc251 if (other->CanThrow() && node->GetSideEffects().DoesAnyWrite()) { in HasExceptionDependency()
254 if (other->GetSideEffects().DoesAnyWrite() && node->CanThrow()) { in HasExceptionDependency()
257 if (other->CanThrow() && node->CanThrow()) { in HasExceptionDependency()
334 if (!instruction->GetSideEffects().DoesNothing() || instruction->CanThrow()) { in AddDependencies()
Dprepare_for_register_allocation.cc265 CHECK(!between->CanThrow()); in CanMoveClinitCheck()
Dnodes.h1966 virtual bool CanThrow() const { return false; } in CanThrow() function
1967 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); } in CanThrowIntoCatchBlock()
2044 !CanThrow() && in IsRemovable()
3046 bool CanThrow() const OVERRIDE { return true; } in CanThrow() function
3928 bool CanThrow() const OVERRIDE { return true; } in CanThrow() function
4024 bool CanThrow() const OVERRIDE { return GetPackedFlag<kFlagCanThrow>(); } in CanThrow() function
4522 bool CanThrow() const OVERRIDE { return true; } in CanThrow() function
4756 bool CanThrow() const OVERRIDE { return true; } in CanThrow() function
5227 bool CanThrow() const OVERRIDE { return true; } in CanThrow() function
5469 bool CanThrow() const OVERRIDE { return NeedsTypeCheck(); } in CanThrow() function
[all …]
Dcode_sinking.cc71 if (instruction->CanThrow()) { in IsInterestingInstruction()
Dscheduler_test.cc118 DCHECK(div_check->CanThrow()); in TestBuildDependencyGraphAndSchedule()
Dnodes.cc1505 DCHECK(!CanThrow()); in MoveBeforeFirstUserAndOutOfLoops()
1683 if (it.Current()->CanThrow()) { in HasThrowingInstructions()
Dinstruction_simplifier.cc2014 if (invoke->CanThrow() && !arg->CanBeNull()) { in SimplifyNPEOnArgN()