Home
last modified time | relevance | path

Searched refs:input_count_with_deps (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/cctest/compiler/
Dgraph-builder-tester.h252 int input_count_with_deps = value_input_count; in MakeNode() local
253 if (has_control) ++input_count_with_deps; in MakeNode()
254 if (has_effect) ++input_count_with_deps; in MakeNode()
255 Node** buffer = zone()->template NewArray<Node*>(input_count_with_deps); in MakeNode()
264 result = graph()->NewNode(op, input_count_with_deps, buffer); in MakeNode()
/external/v8/src/compiler/
Dbytecode-graph-builder.cc1910 int input_count_with_deps = value_input_count; in MakeNode() local
1911 if (has_context) ++input_count_with_deps; in MakeNode()
1912 input_count_with_deps += frame_state_count; in MakeNode()
1913 if (has_control) ++input_count_with_deps; in MakeNode()
1914 if (has_effect) ++input_count_with_deps; in MakeNode()
1915 Node** buffer = EnsureInputBufferSize(input_count_with_deps); in MakeNode()
1933 result = graph()->NewNode(op, input_count_with_deps, buffer, incomplete); in MakeNode()
Dast-graph-builder.cc4090 int input_count_with_deps = value_input_count; in MakeNode() local
4091 if (has_context) ++input_count_with_deps; in MakeNode()
4092 input_count_with_deps += frame_state_count; in MakeNode()
4093 if (has_control) ++input_count_with_deps; in MakeNode()
4094 if (has_effect) ++input_count_with_deps; in MakeNode()
4095 Node** buffer = EnsureInputBufferSize(input_count_with_deps); in MakeNode()
4113 result = graph()->NewNode(op, input_count_with_deps, buffer, incomplete); in MakeNode()