HomeSort by relevance Sort by last modified time
    Searched defs:value_input_count (Results 1 - 7 of 7) sorted by null

  /external/v8/src/compiler/
common-operator-reducer.cc 224 int const value_input_count = inputs.count() - 1; local
225 DCHECK_LE(1, value_input_count);
226 Node* const merge = inputs[value_input_count];
228 DCHECK_EQ(value_input_count, merge->InputCount());
229 if (value_input_count == 2) {
273 for (int i = 1; i < value_input_count; ++i) {
js-inlining-heuristic.cc 33 int const value_input_count = m.node()->op()->ValueInputCount(); local
34 if (value_input_count > functions_size) return 0;
35 for (int n = 0; n < value_input_count; ++n) {
40 return value_input_count;
node-properties.cc 148 int value_input_count = node->op()->ValueInputCount(); local
149 DCHECK_LE(1, value_input_count);
151 while (--value_input_count > 0) {
152 node->RemoveInput(value_input_count);
192 int value_input_count = node->op()->ValueInputCount(); local
193 while (--value_input_count >= 0) {
194 node->RemoveInput(value_input_count);
js-operator.cc 608 #define CACHED_OP(Name, properties, value_input_count, value_output_count) \
612 value_input_count, Operator::ZeroIfPure(properties), \
669 #define CACHED_OP(Name, properties, value_input_count, value_output_count) \
981 int const value_input_count = static_cast<int>(arity) + 2; local
    [all...]
escape-analysis.cc 446 int value_input_count = static_cast<int>(cache->fields().size()); local
459 common->Phi(MachineRepresentation::kTagged, value_input_count),
460 value_input_count + 1, &cache->fields().front());
467 for (int i = 0; i < value_input_count; i++) {
477 for (int n = 0; n < value_input_count; ++n) {
1455 int value_input_count = static_cast<int>(cache_->fields().size()); local
    [all...]
simplified-lowering.cc 966 int value_input_count = node->op()->ValueInputCount(); local
    [all...]
bytecode-graph-builder.cc 1988 int value_input_count = 3 + register_count; local
1999 MakeNode(javascript()->GeneratorStore(register_count), value_input_count, local
    [all...]

Completed in 72 milliseconds