Home
last modified time | relevance | path

Searched refs:state_values (Results 1 - 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/compiler/
H A Djs-inlining-heuristic.cc318 bool CollectStateValuesOwnedUses(Node* node, Node* state_values, in CollectStateValuesOwnedUses() argument
322 if (state_values->UseCount() > 1) return true; in CollectStateValuesOwnedUses()
323 for (int i = 0; i < state_values->InputCount(); i++) { in CollectStateValuesOwnedUses()
324 Node* input = state_values->InputAt(i); in CollectStateValuesOwnedUses()
332 uses_buffer[*use_count] = {state_values, i}; in CollectStateValuesOwnedUses()
341 Node* JSInliningHeuristic::DuplicateStateValuesAndRename(Node* state_values, in DuplicateStateValuesAndRename() argument
346 if (state_values->UseCount() > 1) return state_values; in DuplicateStateValuesAndRename()
347 Node* copy = mode == kChangeInPlace ? state_values : nullptr; in DuplicateStateValuesAndRename()
348 for (int i = 0; i < state_values in DuplicateStateValuesAndRename()
[all...]
H A Djs-inlining-heuristic.h90 Node* DuplicateStateValuesAndRename(Node* state_values, Node* from, Node* to,
H A Dbytecode-graph-builder.cc595 bool StateValuesRequireUpdate(Node** state_values, Node** values, int count);
596 void UpdateStateValues(Node** state_values, Node** values, int count);
906 Node** state_values, Node** values, int count) { in StateValuesRequireUpdate()
907 if (*state_values == nullptr) { in StateValuesRequireUpdate()
910 Node::Inputs inputs = (*state_values)->inputs(); in StateValuesRequireUpdate()
973 void BytecodeGraphBuilder::Environment::UpdateStateValues(Node** state_values, in UpdateStateValues() argument
976 if (StateValuesRequireUpdate(state_values, values, count)) { in UpdateStateValues()
978 (*state_values) = graph()->NewNode(op, count, values); in UpdateStateValues()
905 StateValuesRequireUpdate( Node** state_values, Node** values, int count) StateValuesRequireUpdate() argument
/third_party/python/Lib/test/
H A Dtest_random.py694 state_values = self.gen.getstate()[1]
695 state_values = list(state_values)
696 state_values[-1] = float('nan')
697 state = (int(x) for x in state_values)

Completed in 12 milliseconds