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/
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 145 int value_input_count = node->op()->ValueInputCount(); local
146 DCHECK_LE(1, value_input_count);
148 while (--value_input_count > 0) {
149 node->RemoveInput(value_input_count);
189 int value_input_count = node->op()->ValueInputCount(); local
190 while (--value_input_count >= 0) {
191 node->RemoveInput(value_input_count);
js-operator.cc 484 #define CACHED_OP(Name, properties, value_input_count, value_output_count) \
488 value_input_count, Operator::ZeroIfPure(properties), \
541 #define CACHED_OP(Name, properties, value_input_count, value_output_count) \
800 int const value_input_count = static_cast<int>(arity) + 2; local
805 value_input_count, 1, 1, 1, 1, 2, // counts
    [all...]
simplified-operator.cc 458 #define PURE(Name, properties, value_input_count, control_input_count) \
462 value_input_count, 0, control_input_count, 1, 0, 0) {} \
468 #define CHECKED(Name, value_input_count, value_output_count) \
473 value_input_count, 1, 1, value_output_count, 1, 0) {} \
695 int const value_input_count = 1 + map_input_count; local
700 value_input_count, 1, 1, 0, 1, 0, // counts
    [all...]
escape-analysis.cc 440 int value_input_count = static_cast<int>(cache->fields().size()); local
446 common->Phi(MachineRepresentation::kTagged, value_input_count),
447 value_input_count + 1, &cache->fields().front());
452 for (int i = 0; i < value_input_count; i++) {
462 for (int n = 0; n < value_input_count; ++n) {
1395 int value_input_count = static_cast<int>(cache_->fields().size()); local
    [all...]
simplified-lowering.cc 934 int value_input_count = node->op()->ValueInputCount(); local
    [all...]
bytecode-graph-builder.cc 1817 int value_input_count = 3 + register_count; local
1828 MakeNode(javascript()->GeneratorStore(register_count), value_input_count, local
    [all...]

Completed in 1130 milliseconds