Home
last modified time | relevance | path

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

/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/src/compiler/
Ddead-code-elimination.cc85 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
99 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
117 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
Dloop-analysis.cc196 } else if (NodeProperties::IsPhi(node)) { in PropagateBackward()
254 if (NodeProperties::IsPhi(use)) { in SetLoopMarkForLoopHeader()
317 return node->opcode() == IrOpcode::kLoop || NodeProperties::IsPhi(node); in IsLoopHeaderNode()
328 if (NodeProperties::IsPhi(use)) { in IsBackedge()
Dnode-properties.h72 static bool IsPhi(Node* node) { in IsPhi() function
Djs-inlining-heuristic.cc32 if (m.IsPhi()) { in CollectFunctions()
Dosr.cc351 if (NodeProperties::IsPhi(use)) { in Deconstruct()
Deffect-control-linearizer.cc224 if (!NodeProperties::IsPhi(use)) return; in TryCloneBranch()
231 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch()
281 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch()
Dscheduler.cc1716 if (NodeProperties::IsPhi(use)) propagation_roots.push_back(use); in FuseFloatingControl()
/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()
178 if (input->IsPhi() && input->CheckFlag(HValue::kTruncatingToNumber)) { in Run()
195 if (input->IsPhi() && in Run()
212 if (input->IsPhi() && in Run()
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.cc108 if (IsPhi()) { in RepresentationFromUses()
765 if (!other_operand->IsPhi()) { in Verify()
1975 if (!it.value()->IsPhi()) return true; in HasRealUses()
2015 if (!value->IsPhi()) { in InitRealUses()
Dlithium-allocator.cc674 if (instr != NULL && instr->IsPhi()) { in LookupPhi()
Dhydrogen.cc7287 if (access == NULL || access->IsPhi() || in HandleKeyedElementAccess()
7566 if (value->IsPhi()) return ast_context()->ReturnValue(value); in BuildLoad()
8520 if (!elements->IsPhi() || elements->OperandCount() != 1) return false; in TryInlineBuiltinMethodCall()
8524 if (!receiver->IsPhi() || receiver->OperandCount() != 1) return false; in TryInlineBuiltinMethodCall()
10669 if (result->HasObservableSideEffects() || result->IsPhi()) { in BuildBinaryOperation()
12496 if (value != NULL && value->IsPhi() && value->block() == block) { in AddIncomingEdge()
Dhydrogen-instructions.h464 bool IsPhi() const { return opcode() == kPhi; } in HYDROGEN_CONCRETE_INSTRUCTION_LIST()
2848 DCHECK(value->IsPhi()); in cast()
/external/llvm/include/llvm/IR/
DUser.h84 void allocHungoffUses(unsigned N, bool IsPhi = false);
88 void growHungoffUses(unsigned N, bool IsPhi = false);
/external/llvm/lib/Target/Hexagon/
DRDFLiveness.cpp129 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef; in getAllReachingDefs() local
130 if (!IsPhi && !RAI.alias(RefRR, TA.Addr->getRegRef())) in getAllReachingDefs()
203 bool IsPhi = DFG.IsCode<NodeAttrs::Phi>(TA); in getAllReachingDefs() local
215 if (FullChain || IsPhi || !RAI.covers(RRs, QR)) in getAllReachingDefs()
DRDFGraph.cpp1447 for (auto P : BA.Addr->members_if(IsPhi, *this)) in removeUnusedPhis()
1475 if (IsPhi(OA)) in removeUnusedPhis()
1602 for (NodeAddr<InstrNode*> IA : SBA.Addr->members_if(IsPhi, *this)) { in linkBlockRefs()
DRDFGraph.h733 static bool IsPhi(const NodeAddr<NodeBase*> BA) { in IsPhi() function
/external/v8/src/crankshaft/x64/
Dlithium-x64.cc2031 if (!candidate->IsPhi()) return; in FindDehoistedKeyDefinitions()