/third_party/node/deps/v8/src/compiler/ |
H A D | decompression-optimizer.cc | 33 if (node->opcode() == IrOpcode::kPhi) { in IsTaggedPhi() 129 case IrOpcode::kPhi: { in MarkNodeInputs() 240 case IrOpcode::kPhi: in ChangeNodes()
|
H A D | add-type-assertions-reducer.cc | 26 node->opcode() == IrOpcode::kPhi || !NodeProperties::IsTyped(node) || in Reduce()
|
H A D | loop-variable-optimizer.cc | 103 if (constraint.left->opcode() == IrOpcode::kPhi && in VisitBackedge() 110 if (constraint.right->opcode() == IrOpcode::kPhi && in VisitBackedge() 272 edge.from()->opcode() == IrOpcode::kPhi) { in DetectInductionVariables()
|
H A D | common-operator-reducer.cc | 51 case IrOpcode::kPhi: in Reduce() 240 DCHECK_EQ(IrOpcode::kPhi, node->opcode()); in ReducePhi() 322 if (value->opcode() == IrOpcode::kPhi && in ReduceReturn()
|
H A D | basic-block-instrumentor.cc | 31 case IrOpcode::kPhi: in FindInsertionPoint()
|
H A D | dead-code-elimination.cc | 60 case IrOpcode::kPhi: in Reduce() 215 DCHECK_EQ(IrOpcode::kPhi, node->opcode()); in ReducePhi()
|
H A D | common-operator.cc | 139 DCHECK_EQ(IrOpcode::kPhi, op->opcode()); in PhiRepresentationOf() 797 IrOpcode::kPhi, Operator::kPure, // opcode in PhiOperator() 804 kPhi##rep##input_count##Operator; 1296 return &cache_.kPhi##kRep##kValueInputCount##Operator; \ in Phi() 1302 IrOpcode::kPhi, Operator::kPure, // opcode in Phi() 1545 if (op->opcode() == IrOpcode::kPhi) { in ResizeMergeOrPhi()
|
H A D | loop-unrolling.cc | 191 int count = use->opcode() == IrOpcode::kPhi in UnrollLoop()
|
H A D | schedule.cc | 365 if (node->opcode() == IrOpcode::kPhi) { in EliminateRedundantPhiNodes() 401 if (node->opcode() == IrOpcode::kPhi) { in MovePhis()
|
H A D | graph-visualizer.cc | 624 if ((*it)->opcode() == IrOpcode::kPhi) total++; in PrintSchedule() 631 if ((*it)->opcode() != IrOpcode::kPhi) continue; in PrintSchedule() 647 if (node->opcode() == IrOpcode::kPhi) continue; in PrintSchedule()
|
H A D | memory-optimizer.cc | 153 if (object_position->opcode() == IrOpcode::kPhi) { in WriteBarrierAssertFailed()
|
H A D | verifier.cc | 473 case IrOpcode::kPhi: { in Check() 506 use->opcode() != IrOpcode::kPhi) { in Check() 1937 if (node->opcode() == IrOpcode::kPhi) { in CheckInputsDominate() 2099 if (phi->opcode() != IrOpcode::kPhi) continue; in Run()
|
H A D | machine-graph-verifier.cc | 148 case IrOpcode::kPhi: in Run() 638 case IrOpcode::kPhi: in Run()
|
H A D | raw-machine-assembler.cc | 173 if (phi->opcode() != IrOpcode::kPhi) continue; in OptimizeControlFlow() 370 if (node->opcode() == IrOpcode::kPhi) { in MakeReschedulable()
|
H A D | typed-optimization.cc | 70 case IrOpcode::kPhi: in Reduce() 377 DCHECK_EQ(IrOpcode::kPhi, node->opcode()); in ReducePhi()
|
H A D | js-inlining-heuristic.cc | 505 if (callee->opcode() != IrOpcode::kPhi) return false; in TryReuseDispatch()
|
H A D | int64-lowering.cc | 64 if (input->opcode() == IrOpcode::kPhi) { in LowerGraph() 885 case IrOpcode::kPhi: { in LowerNode()
|
H A D | scheduler.cc | 101 case IrOpcode::kPhi: in InitializePlacement() 138 case IrOpcode::kPhi: in UpdatePlacement()
|
H A D | escape-analysis.cc | 455 if (old_value && old_value->opcode() == IrOpcode::kPhi && in MergeInputs()
|
H A D | graph-assembler.h | 649 DCHECK_EQ(IrOpcode::kPhi, label->bindings_[i]->opcode()); in MergeState()
|
H A D | opcodes.h | 1070 return value == kPhi || value == kEffectPhi; in IsPhiOpcode()
|
/third_party/node/deps/v8/src/torque/ |
H A D | instructions.h | 85 kPhi, member in v8::internal::torque::DefinitionLocation::Kind 96 return DefinitionLocation(Kind::kPhi, block, index); in Phi() 107 bool IsPhi() const { return kind_ == Kind::kPhi; } in IsPhi() 176 case DefinitionLocation::Kind::kPhi: in operator <<()
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-verifier.h | 126 case Opcode::kPhi: in Process()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map.h | 948 // the hash value. The constant kPhi (suggested by Knuth) is roughly in BucketNumber() 950 constexpr uint64 kPhi = uint64{0x9e3779b97f4a7c15}; in BucketNumber() local 951 return ((kPhi * h) >> 32) & (num_buckets_ - 1); in BucketNumber()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction-selector.cc | 105 if (phi->opcode() != IrOpcode::kPhi) continue; in SelectInstructions() 1396 case IrOpcode::kPhi: { in VisitNode() 3241 if (node->opcode() == IrOpcode::kPhi) { in ZeroExtendsWord32ToWord64()
|