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

  /external/v8/test/cctest/compiler/
simplified-graph-builder.cc 47 int value_input_count,
49 DCHECK(op->InputCount() == value_input_count);
61 result = graph()->NewNode(op, value_input_count, value_inputs);
63 int input_count_with_deps = value_input_count;
67 memcpy(buffer, value_inputs, kPointerSize * value_input_count);
68 Node** current_input = buffer + value_input_count;
graph-builder-tester.h 29 virtual Node* MakeNode(const Operator* op, int value_input_count,
31 return graph()->NewNode(op, value_input_count, value_inputs);
simplified-graph-builder.h 141 virtual Node* MakeNode(const Operator* op, int value_input_count,
  /external/v8/src/compiler/
common-operator-unittest.cc 27 int value_input_count; member in struct:v8::internal::compiler::__anon19115::SharedOperator
41 #define SHARED(Name, properties, value_input_count, effect_input_count, \
45 value_input_count, effect_input_count, control_input_count, \
80 EXPECT_EQ(sop.value_input_count, OperatorProperties::GetValueInputCount(op));
86 sop.value_input_count + sop.effect_input_count + sop.control_input_count,
graph-builder.cc 32 int value_input_count,
34 DCHECK(op->InputCount() == value_input_count);
46 result = graph()->NewNode(op, value_input_count, value_inputs);
48 int input_count_with_deps = value_input_count;
54 memcpy(buffer, value_inputs, kPointerSize * value_input_count);
55 Node** current_input = buffer + value_input_count;
graph-builder.h 60 Node* NewNode(const Operator* op, int value_input_count,
62 return MakeNode(op, value_input_count, value_inputs);
69 virtual Node* MakeNode(const Operator* op, int value_input_count,
111 virtual Node* MakeNode(const Operator* op, int value_input_count,
common-operator.cc 67 #define SHARED(Name, properties, value_input_count, control_input_count) \
70 : ControlOperator(IrOpcode::k##Name, properties, value_input_count, 0, \
94 #define SHARED(Name, properties, value_input_count, control_input_count) \
simplified-operator-unittest.cc 32 int value_input_count; member in struct:v8::internal::compiler::__anon19130::PureOperator
94 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetValueInputCount(op));
97 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetTotalInputCount(op));
machine-operator-unittest.cc 174 int value_input_count; member in struct:v8::internal::compiler::__anon19127::PureOperator
240 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetValueInputCount(op));
243 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetTotalInputCount(op));

Completed in 268 milliseconds