Home
last modified time | relevance | path

Searched refs:value_input_count (Results 1 – 9 of 9) sorted by relevance

/external/v8/test/cctest/compiler/
Dsimplified-graph-builder.cc47 int value_input_count, in MakeNode() argument
49 DCHECK(op->InputCount() == value_input_count); in MakeNode()
61 result = graph()->NewNode(op, value_input_count, value_inputs); in MakeNode()
63 int input_count_with_deps = value_input_count; in MakeNode()
67 memcpy(buffer, value_inputs, kPointerSize * value_input_count); in MakeNode()
68 Node** current_input = buffer + value_input_count; in MakeNode()
Dgraph-builder-tester.h29 virtual Node* MakeNode(const Operator* op, int value_input_count, in MakeNode() argument
31 return graph()->NewNode(op, value_input_count, value_inputs); in MakeNode()
Dsimplified-graph-builder.h141 virtual Node* MakeNode(const Operator* op, int value_input_count,
/external/v8/src/compiler/
Dcommon-operator-unittest.cc27 int value_input_count; member
41 #define SHARED(Name, properties, value_input_count, effect_input_count, \ argument
45 value_input_count, effect_input_count, control_input_count, \
80 EXPECT_EQ(sop.value_input_count, OperatorProperties::GetValueInputCount(op)); in TEST_P()
86 sop.value_input_count + sop.effect_input_count + sop.control_input_count, in TEST_P()
Dgraph-builder.cc32 int value_input_count, in MakeNode() argument
34 DCHECK(op->InputCount() == value_input_count); in MakeNode()
46 result = graph()->NewNode(op, value_input_count, value_inputs); in MakeNode()
48 int input_count_with_deps = value_input_count; in MakeNode()
54 memcpy(buffer, value_inputs, kPointerSize * value_input_count); in MakeNode()
55 Node** current_input = buffer + value_input_count; in MakeNode()
Dgraph-builder.h60 Node* NewNode(const Operator* op, int value_input_count, in NewNode() argument
62 return MakeNode(op, value_input_count, value_inputs); in NewNode()
69 virtual Node* MakeNode(const Operator* op, int value_input_count,
111 virtual Node* MakeNode(const Operator* op, int value_input_count,
Dcommon-operator.cc67 #define SHARED(Name, properties, value_input_count, control_input_count) \ argument
70 : ControlOperator(IrOpcode::k##Name, properties, value_input_count, 0, \
94 #define SHARED(Name, properties, value_input_count, control_input_count) \ argument
Dsimplified-operator-unittest.cc32 int value_input_count; member
94 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetValueInputCount(op)); in TEST_P()
97 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetTotalInputCount(op)); in TEST_P()
Dmachine-operator-unittest.cc174 int value_input_count; member
240 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetValueInputCount(op)); in TEST_P()
243 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetTotalInputCount(op)); in TEST_P()