HomeSort by relevance Sort by last modified time
    Searched refs:CreateArgumentsType (Results 1 - 12 of 12) sorted by null

  /external/v8/src/compiler/
js-call-reducer.cc 119 CreateArgumentsType const type = CreateArgumentsTypeOf(arg_array->op());
129 if (type == CreateArgumentsType::kMappedArguments) {
132 } else if (type == CreateArgumentsType::kRestParameter) {
144 if (type != CreateArgumentsType::kRestParameter &&
441 CreateArgumentsType type = CreateArgumentsTypeOf(spread->op());
452 if (type == CreateArgumentsType::kMappedArguments) {
457 } else if (type == CreateArgumentsType::kRestParameter) {
    [all...]
js-create-lowering.cc 291 CreateArgumentsType type = CreateArgumentsTypeOf(node->op());
301 case CreateArgumentsType::kMappedArguments: {
350 case CreateArgumentsType::kUnmappedArguments: {
389 case CreateArgumentsType::kRestParameter: {
433 if (type == CreateArgumentsType::kMappedArguments) {
470 } else if (type == CreateArgumentsType::kUnmappedArguments) {
498 } else if (type == CreateArgumentsType::kRestParameter) {
    [all...]
js-operator.h 490 // CreateArgumentsType is used as parameter to JSCreateArguments nodes.
491 CreateArgumentsType const& CreateArgumentsTypeOf(const Operator* op);
619 const Operator* CreateArguments(CreateArgumentsType type);
bytecode-graph-builder.h 136 void BuildCreateArguments(CreateArgumentsType type);
js-generic-lowering.cc 344 CreateArgumentsType const type = CreateArgumentsTypeOf(node->op());
346 case CreateArgumentsType::kMappedArguments:
349 case CreateArgumentsType::kUnmappedArguments:
352 case CreateArgumentsType::kRestParameter:
js-operator.cc 443 CreateArgumentsType const& CreateArgumentsTypeOf(const Operator* op) {
445 return OpParameter<CreateArgumentsType>(op);
    [all...]
bytecode-graph-builder.cc     [all...]
ast-graph-builder.cc     [all...]
  /external/v8/src/
globals.h 861 enum class CreateArgumentsType : uint8_t {
867 inline size_t hash_value(CreateArgumentsType type) {
871 inline std::ostream& operator<<(std::ostream& os, CreateArgumentsType type) {
873 case CreateArgumentsType::kMappedArguments:
875 case CreateArgumentsType::kUnmappedArguments:
877 case CreateArgumentsType::kRestParameter:
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.cc 751 CreateArgumentsType type) {
753 case CreateArgumentsType::kMappedArguments:
756 case CreateArgumentsType::kUnmappedArguments:
759 case CreateArgumentsType::kRestParameter:
    [all...]
bytecode-array-builder.h 217 BytecodeArrayBuilder& CreateArguments(CreateArgumentsType type);
bytecode-generator.cc     [all...]

Completed in 224 milliseconds