/external/llvm/lib/IR/ |
D | User.cpp | 43 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/ |
D | dead-code-elimination.cc | 85 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge() 99 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge() 117 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
|
D | loop-analysis.cc | 196 } 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()
|
D | node-properties.h | 72 static bool IsPhi(Node* node) { in IsPhi() function
|
D | js-inlining-heuristic.cc | 32 if (m.IsPhi()) { in CollectFunctions()
|
D | osr.cc | 351 if (NodeProperties::IsPhi(use)) { in Deconstruct()
|
D | effect-control-linearizer.cc | 224 if (!NodeProperties::IsPhi(use)) return; in TryCloneBranch() 231 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch() 281 if (NodeProperties::IsPhi(edge.from())) { in TryCloneBranch()
|
D | scheduler.cc | 1716 if (NodeProperties::IsPhi(use)) propagation_roots.push_back(use); in FuseFloatingControl()
|
/external/v8/src/crankshaft/ |
D | hydrogen-uint32-analysis.cc | 81 if (use->IsPhi()) { in Uint32UsesAreSafe() 103 if (use->IsPhi() && !use->CheckFlag(HInstruction::kUint32)) { in Uint32UsesAreSafe() 149 if (operand->IsPhi()) { in UnmarkPhi()
|
D | hydrogen-representation-changes.cc | 15 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()
|
D | hydrogen-redundant-phi.cc | 56 updated |= value->IsPhi() && !value->CheckFlag(HValue::kIsDead); in ProcessPhis()
|
D | hydrogen-infer-representation.cc | 44 if (use->IsPhi()) { in Run()
|
D | hydrogen-range-analysis.cc | 217 if (value->IsPhi()) { in PropagateMinusZeroChecks()
|
D | hydrogen-escape-analysis.cc | 274 if (succ_operand->IsPhi() && succ_operand->block() == succ) { in AnalyzeDataFlow()
|
D | hydrogen-check-elimination.cc | 322 if (this_entry->object_->IsPhi() && in Merge() 748 entry->object_->IsPhi() ? "phi" : "object", entry->object_->id()); in Print()
|
D | hydrogen-instructions.cc | 108 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()
|
D | lithium-allocator.cc | 674 if (instr != NULL && instr->IsPhi()) { in LookupPhi()
|
D | hydrogen.cc | 7287 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()
|
D | hydrogen-instructions.h | 464 bool IsPhi() const { return opcode() == kPhi; } in HYDROGEN_CONCRETE_INSTRUCTION_LIST() 2848 DCHECK(value->IsPhi()); in cast()
|
/external/llvm/include/llvm/IR/ |
D | User.h | 84 void allocHungoffUses(unsigned N, bool IsPhi = false); 88 void growHungoffUses(unsigned N, bool IsPhi = false);
|
/external/llvm/lib/Target/Hexagon/ |
D | RDFLiveness.cpp | 129 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()
|
D | RDFGraph.cpp | 1447 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()
|
D | RDFGraph.h | 733 static bool IsPhi(const NodeAddr<NodeBase*> BA) { in IsPhi() function
|
/external/v8/src/crankshaft/x64/ |
D | lithium-x64.cc | 2031 if (!candidate->IsPhi()) return; in FindDehoistedKeyDefinitions()
|