Lines Matching defs:values

20 #include "src/compiler/state-values-utils.h"
38 // Retrieves the frame state holding actual argument values.
567 Node* node, std::vector<Node*> values, MapRef initial_map,
582 // Check {values} based on the {elements_kind}. These checks are guarded
586 for (auto& value : values) {
593 for (auto& value : values) {
606 AllocateElements(effect, control, elements_kind, values, allocation);
607 Node* length = jsgraph()->Constant(static_cast<int>(values.size()));
697 // Gather the values to store into the newly created array.
700 std::vector<Node*> values;
701 values.reserve(p.arity());
714 values.push_back(value);
730 // We have some crazy combination of types for the {values} where
737 return ReduceNewArray(node, values, *initial_map, elements_kind, allocation,
1425 // Helper that allocates a FixedArray holding argument values recorded in the
1433 // Prepare an iterator over argument values recorded in the frame state.
1453 // Helper that allocates a FixedArray holding argument values recorded in the
1463 // Prepare an iterator over argument values recorded in the frame state.
1484 // Helper that allocates a FixedArray serving as a parameter map for values
1502 // Calculate number of argument values being aliased/mapped.
1520 // Prepare an iterator over argument values recorded in the frame state.
1526 // The unmapped argument values recorded in the frame state are stored yet
1528 // whereas mapped argument values are replaced with a hole instead.
1554 // Helper that allocates a FixedArray serving as a parameter map for values
1556 // values can only be determined dynamically at run-time and are provided.
1590 // The unmapped argument values are stored yet another indirection away and
1591 // then linked into the parameter map below, whereas mapped argument values
1643 std::vector<Node*> const& values,
1645 int const capacity = static_cast<int>(values.size());
1661 a.Store(access, index, values[i]);