/third_party/node/deps/v8/src/compiler/ |
H A D | decompression-optimizer.cc | 71 DCHECK_EQ(node->op()->ValueInputCount(), 1); in MarkNodeInputs() 76 DCHECK_EQ(node->op()->ValueInputCount(), 1); in MarkNodeInputs() 88 DCHECK_EQ(node->op()->ValueInputCount(), 2); in MarkNodeInputs() 99 DCHECK_EQ(node->op()->ValueInputCount(), 3); in MarkNodeInputs() 124 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in MarkNodeInputs() 132 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in MarkNodeInputs() 140 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in MarkNodeInputs() 150 for (int i = node->op()->ValueInputCount(); i < node->InputCount(); ++i) { in MarkNodeInputs() 190 node, common()->Phi(mach_rep, node->op()->ValueInputCount())); in ChangePhi()
|
H A D | node-properties.cc | 29 node->op()->ValueInputCount()); in IsValueEdge() 94 CHECK_LT(index, node->op()->ValueInputCount()); in ReplaceValueInput() 101 int value_input_count = node->op()->ValueInputCount(); in ReplaceValueInputs() 141 node->TrimInputCount(node->op()->ValueInputCount()); in RemoveNonValueInputs() 147 int value_input_count = node->op()->ValueInputCount(); in RemoveValueInputs() 597 int input_count = node->op()->ValueInputCount(); in AllValueInputsAreTyped()
|
H A D | node-properties.h | 39 return FirstValueIndex(node) + node->op()->ValueInputCount(); in PastValueIndex() 65 CHECK_LT(index, node->op()->ValueInputCount()); in GetValueInput() 71 CHECK_LT(index, node->op()->ValueInputCount()); in GetValueInput()
|
H A D | machine-graph-verifier.cc | 642 for (int j = 0; j < node->op()->ValueInputCount(); ++j) { in Run() 647 for (int j = 0; j < node->op()->ValueInputCount(); ++j) { in Run() 657 for (int j = 0; j < node->op()->ValueInputCount(); ++j) { in Run() 662 for (int j = 0; j < node->op()->ValueInputCount(); ++j) { in Run() 667 for (int j = 0; j < node->op()->ValueInputCount(); ++j) { in Run() 715 if (node->op()->ValueInputCount() != 0) { in Run()
|
H A D | simplified-lowering.cc | 380 int arity = node->op()->ValueInputCount(); in TypePhi() 400 for (int i = 0; i < node->op()->ValueInputCount(); i++) { in UpdateFeedbackType() 825 DCHECK_EQ(1, node->op()->ValueInputCount()); in InputCannotBe() 830 DCHECK_EQ(1, node->op()->ValueInputCount()); in InputIs() 843 DCHECK_EQ(2, node->op()->ValueInputCount()); in BothInputsAre() 854 DCHECK_EQ(2, node->op()->ValueInputCount()); in OneInputCannotBe() 870 node->TrimInputCount(dead_value->ValueInputCount()); in ChangeToDeadValue() 897 DCHECK_EQ(new_op->ValueInputCount(), node->op()->ValueInputCount()); in ChangeToPureOp() 907 node->TrimInputCount(new_op->ValueInputCount()); in ChangeToPureOp() [all...] |
H A D | operator.h | 102 int ValueInputCount() const { return value_in_; } in ValueInputCount() function in v8::internal::compiler::Operator
|
H A D | loop-unrolling.cc | 192 ? use->op()->ValueInputCount() in UnrollLoop()
|
H A D | operator-properties.cc | 266 return op->ValueInputCount() + GetContextInputCount(op) + in GetTotalInputCount()
|
H A D | csa-load-elimination.cc | 20 if (node->op()->ValueInputCount() > 0) { in Reduce() 22 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in Reduce()
|
H A D | js-inlining-heuristic.cc | 107 int const value_input_count = m.node()->op()->ValueInputCount(); in CollectFunctions() 506 int const num_calls = callee->op()->ValueInputCount(); in TryReuseDispatch()
|
H A D | loop-variable-optimizer.cc | 224 DCHECK_EQ(2, phi->op()->ValueInputCount()); in TryGetInductionVariable()
|
H A D | redundancy-elimination.cc | 207 for (int i = a->op()->ValueInputCount(); --i >= 0;) { in CheckSubsumes()
|
H A D | escape-analysis-reducer.cc | 177 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in ReduceDeoptState()
|
H A D | dead-code-elimination.cc | 223 int input_count = node->op()->ValueInputCount(); in ReducePhi()
|
H A D | graph-visualizer.cc | 350 os_ << ",\"opinfo\":\"" << node->op()->ValueInputCount() << " v " in PrintNode() 546 PrintInputs(&i, node->op()->ValueInputCount(), " "); in PrintInputs()
|
H A D | raw-machine-assembler.cc | 178 DCHECK_EQ(phi->op()->ValueInputCount(), block->PredecessorCount()); in OptimizeControlFlow() 399 int value_count = phi->op()->ValueInputCount(); in MakePhiBinary()
|
H A D | typed-optimization.cc | 230 for (int i = 1; i < node->op()->ValueInputCount(); ++i) { in ReduceCheckMaps() 384 int arity = node->op()->ValueInputCount(); in ReducePhi()
|
H A D | js-generic-lowering.cc | 140 DCHECK_EQ(node->op()->ValueInputCount(), 2); in ReplaceUnaryOpWithBuiltinCall() 172 DCHECK_EQ(node->op()->ValueInputCount(), 3); in ReplaceBinaryOpWithBuiltinCall() 223 DCHECK_EQ(node->op()->ValueInputCount(), 3); in LowerJSStrictEqual()
|
H A D | js-type-hint-lowering.cc | 189 DCHECK_EQ(2, op->ValueInputCount()); in BuildSpeculativeOperation()
|
H A D | wasm-inlining.cc | 481 int const return_arity = return_nodes[0]->op()->ValueInputCount() - 1; in InlineCall()
|
H A D | verifier.cc | 140 int value_count = node->op()->ValueInputCount(); in Check() 1935 for (int j = node->op()->ValueInputCount() - 1; j >= 0; j--) { in CheckInputsDominate() 2102 if (phi->InputCount() > phi->op()->ValueInputCount()) { in Run()
|
H A D | int64-lowering.cc | 892 for (int i = 0; i < node->op()->ValueInputCount(); i++) { in LowerNode() 1140 int value_count = phi->op()->ValueInputCount(); in PreparePhiReplacement()
|
H A D | load-elimination.cc | 78 if (node->op()->ValueInputCount() > 0) { in Reduce() 80 for (int i = 0; i < node->op()->ValueInputCount(); ++i) { in Reduce()
|
H A D | escape-analysis.cc | 834 int value_input_count = op->ValueInputCount(); in ReduceNode()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction-selector.cc | 626 int const input_count = input->op()->ValueInputCount(); in AddOperandToStateValueDescriptor() 953 call->op()->ValueInputCount(), in InitializeCallBuffer() 2868 const int input_count = node->op()->ValueInputCount(); in VisitPhi() 3094 : ret->op()->ValueInputCount(); in VisitReturn() 3258 int input_count = node->op()->ValueInputCount(); in ZeroExtendsWord32ToWord64()
|