Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dbytecode-graph-builder.cc2266 int input_count_with_deps = value_input_count; in MakeNode() local
2267 if (has_context) ++input_count_with_deps; in MakeNode()
2268 if (has_frame_state) ++input_count_with_deps; in MakeNode()
2269 if (has_control) ++input_count_with_deps; in MakeNode()
2270 if (has_effect) ++input_count_with_deps; in MakeNode()
2271 Node** buffer = EnsureInputBufferSize(input_count_with_deps); in MakeNode()
2289 result = graph()->NewNode(op, input_count_with_deps, buffer, incomplete); in MakeNode()
Dast-graph-builder.cc2908 int input_count_with_deps = value_input_count; in MakeNode() local
2909 if (has_context) ++input_count_with_deps; in MakeNode()
2910 if (has_frame_state) ++input_count_with_deps; in MakeNode()
2911 if (has_control) ++input_count_with_deps; in MakeNode()
2912 if (has_effect) ++input_count_with_deps; in MakeNode()
2913 Node** buffer = EnsureInputBufferSize(input_count_with_deps); in MakeNode()
2931 result = graph()->NewNode(op, input_count_with_deps, buffer, incomplete); in MakeNode()