Home
last modified time | relevance | path

Searched refs:IsPhi (Results 1 – 25 of 31) sorted by relevance

12

/external/llvm/lib/IR/
DUser.cpp43 void User::allocHungoffUses(unsigned N, bool IsPhi) { in allocHungoffUses() argument
55 if (IsPhi) in allocHungoffUses()
63 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) { in growHungoffUses() argument
73 allocHungoffUses(NewNumUses, IsPhi); in growHungoffUses()
80 if (IsPhi) { in growHungoffUses()
/external/v8/test/unittests/compiler/
Djs-intrinsic-lowering-unittest.cc124 IsPhi( in TEST_F()
155 IsPhi( in TEST_F()
186 IsPhi( in TEST_F()
234 IsPhi( in TEST_F()
236 IsPhi(MachineRepresentation::kTagged, in TEST_F()
Dloop-peeling-unittest.cc187 r, IsReturn(IsPhi(MachineRepresentation::kTagged, c.phi, c.base, in TEST_F()
226 IsReturn(IsPhi(MachineRepresentation::kTagged, c.phi, c.base, in TEST_F()
302 EXPECT_THAT(back, IsPhi(MachineRepresentation::kTagged, c.phi, c.base, in TEST_F()
305 EXPECT_THAT(phi, IsPhi(MachineRepresentation::kTagged, IsInt32Constant(11), in TEST_F()
381 IsPhi(MachineRepresentation::kTagged, in TEST_F()
382 IsPhi(MachineRepresentation::kTagged, IsInt32Constant(1), in TEST_F()
388 r, IsReturn(IsPhi(MachineRepresentation::kTagged, phi, IsInt32Constant(0), in TEST_F()
437 EXPECT_THAT(eval, IsPhi(MachineRepresentation::kTagged, in TEST_F()
442 EXPECT_THAT(phi, IsPhi(MachineRepresentation::kTagged, eval, in TEST_F()
448 r, IsReturn(IsPhi(MachineRepresentation::kTagged, phi, IsInt32Constant(0), in TEST_F()
Dint64-lowering-unittest.cc619 IsPhi(MachineRepresentation::kWord32, in TEST_F()
641 IsPhi(MachineRepresentation::kWord32, in TEST_F()
690 Matcher<Node*> low_input_matcher = IsPhi( in TEST_F()
695 Matcher<Node*> high_input_matcher = IsPhi( in TEST_F()
788 IsReturn2(IsPhi(MachineRepresentation::kWord32, in TEST_F()
791 IsPhi(MachineRepresentation::kWord32, in TEST_F()
804 IsReturn(IsPhi(rep, v1, v2, test->start()), test->start(), in TestPhi()
Dbranch-elimination-unittest.cc77 IsPhi(MachineRepresentation::kWord32, IsInt32Constant(1), in TEST_F()
118 IsPhi(MachineRepresentation::kWord32, IsInt32Constant(2), in TEST_F()
Ddead-code-elimination-unittest.cc231 IsPhi(MachineRepresentation::kTagged, v0, v3, r.replacement())); in TEST_F()
318 IsPhi(MachineRepresentation::kTagged, v0, v3, r.replacement())); in TEST_F()
Ddiamond-unittest.cc127 EXPECT_THAT(phi, IsPhi(types[i], p1, p2, d.merge)); in TEST_F()
Dnode-test-utils.h89 Matcher<Node*> IsPhi(const Matcher<MachineRepresentation>& type_matcher,
93 Matcher<Node*> IsPhi(const Matcher<MachineRepresentation>& type_matcher,
Djs-typed-lowering-unittest.cc341 EXPECT_THAT(r.replacement(), IsPhi(MachineRepresentation::kTagged, _, _, _)); in TEST_F()
/external/v8/src/compiler/
Ddead-code-elimination.cc83 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
97 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
112 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
Dcontrol-flow-optimizer.cc141 if (!NodeProperties::IsPhi(use)) return false; in TryCloneBranch()
150 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch()
186 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch()
Dloop-analysis.cc195 } else if (NodeProperties::IsPhi(node)) { in PropagateBackward()
233 if (NodeProperties::IsPhi(use)) { in CreateLoopInfo()
289 if (NodeProperties::IsPhi(use)) { in IsBackedge()
Dnode-properties.h71 static bool IsPhi(Node* node) { in IsPhi() function
Dloop-peeling.cc278 if (NodeProperties::IsPhi(use)) exits.push_back(use); in Peel()
Dosr.cc303 if (NodeProperties::IsPhi(use)) { in Deconstruct()
/external/v8/src/crankshaft/
Dhydrogen-uint32-analysis.cc81 if (use->IsPhi()) { in Uint32UsesAreSafe()
103 if (use->IsPhi() && !use->CheckFlag(HInstruction::kUint32)) { in Uint32UsesAreSafe()
149 if (operand->IsPhi()) { in UnmarkPhi()
Dhydrogen-representation-changes.cc15 if (use_value->IsPhi()) { in InsertRepresentationChangeForUse()
165 if (input->IsPhi() && in Run()
182 if (input->IsPhi() && in Run()
Dhydrogen-mark-deoptimize.cc35 if (input->IsPhi() && input->CheckFlag(HValue::kAllowUndefinedAsNaN)) { in ProcessPhi()
Dhydrogen-redundant-phi.cc56 updated |= value->IsPhi() && !value->CheckFlag(HValue::kIsDead); in ProcessPhis()
Dhydrogen-infer-representation.cc44 if (use->IsPhi()) { in Run()
Dhydrogen-range-analysis.cc217 if (value->IsPhi()) { in PropagateMinusZeroChecks()
Dhydrogen-escape-analysis.cc274 if (succ_operand->IsPhi() && succ_operand->block() == succ) { in AnalyzeDataFlow()
Dhydrogen-check-elimination.cc322 if (this_entry->object_->IsPhi() && in Merge()
748 entry->object_->IsPhi() ? "phi" : "object", entry->object_->id()); in Print()
Dhydrogen-instructions.cc92 if (IsPhi()) { in RepresentationFromUses()
733 if (!other_operand->IsPhi()) { in Verify()
1953 if (!it.value()->IsPhi()) return true; in HasRealUses()
1993 if (!value->IsPhi()) { in InitRealUses()
/external/llvm/include/llvm/IR/
DUser.h82 void allocHungoffUses(unsigned N, bool IsPhi = false);
86 void growHungoffUses(unsigned N, bool IsPhi = false);

12