Searched refs:machine_types (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/codegen/ |
D | interface-descriptors.cc | 47 const MachineType* machine_types, int machine_types_length) { in InitializeTypes() argument 52 if (machine_types == nullptr) { in InitializeTypes() 58 for (int i = 0; i < types_length; i++) machine_types_[i] = machine_types[i]; in InitializeTypes()
|
D | interface-descriptors.h | 188 void InitializeTypes(const MachineType* machine_types, 613 MachineType machine_types[] = {__VA_ARGS__}; \ 615 kReturnCount + kParameterCount == arraysize(machine_types), \ 617 data->InitializeTypes(machine_types, arraysize(machine_types)); \
|
/third_party/node/deps/v8/src/torque/ |
D | utils.cc | 191 static const char* const machine_types[]{VOID_TYPE_STRING, in IsMachineType() local 213 return std::find(std::begin(machine_types), std::end(machine_types), s) != in IsMachineType() 214 std::end(machine_types); in IsMachineType()
|
/third_party/node/deps/v8/src/compiler/ |
D | common-operator.h | 178 const ZoneVector<MachineType>* machine_types) in TypedObjectStateInfo() 180 machine_types) {} in TypedObjectStateInfo() 182 const ZoneVector<MachineType>* machine_types() const { return second; } in machine_types() function 316 TypedStateValueInfo(ZoneVector<MachineType> const* machine_types, in TypedStateValueInfo() argument 318 : machine_types_(machine_types), sparse_input_mask_(sparse_input_mask) {} in TypedStateValueInfo() 320 ZoneVector<MachineType> const* machine_types() const { in machine_types() function
|
D | common-operator.cc | 188 return os << "id:" << i.object_id() << ", " << i.machine_types(); in operator <<() 192 return base::hash_combine(p.object_id(), p.machine_types()); in hash_value() 308 return lhs.machine_types() == rhs.machine_types() && in operator ==() 318 return base::hash_combine(p.machine_types(), p.sparse_input_mask()); in hash_value() 322 return os << p.machine_types() << ", " << p.sparse_input_mask(); in operator <<() 383 return OpParameter<TypedStateValueInfo>(op).machine_types(); in MachineTypesOf() 385 return OpParameter<TypedObjectStateInfo>(op).machine_types(); in MachineTypesOf()
|