Home
last modified time | relevance | path

Searched refs:CreateArrayParameters (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/
Djs-operator.h390 class CreateArrayParameters final {
392 explicit CreateArrayParameters(size_t arity, Handle<AllocationSite> site) in CreateArrayParameters() function
403 bool operator==(CreateArrayParameters const&, CreateArrayParameters const&);
404 bool operator!=(CreateArrayParameters const&, CreateArrayParameters const&);
406 size_t hash_value(CreateArrayParameters const&);
408 std::ostream& operator<<(std::ostream&, CreateArrayParameters const&);
410 const CreateArrayParameters& CreateArrayParametersOf(const Operator* op);
Djs-operator.cc399 bool operator==(CreateArrayParameters const& lhs, in operator ==()
400 CreateArrayParameters const& rhs) { in operator ==()
406 bool operator!=(CreateArrayParameters const& lhs, in operator !=()
407 CreateArrayParameters const& rhs) { in operator !=()
412 size_t hash_value(CreateArrayParameters const& p) { in hash_value()
417 std::ostream& operator<<(std::ostream& os, CreateArrayParameters const& p) { in operator <<()
424 const CreateArrayParameters& CreateArrayParametersOf(const Operator* op) { in CreateArrayParametersOf()
426 return OpParameter<CreateArrayParameters>(op); in CreateArrayParametersOf()
912 CreateArrayParameters parameters(arity, site); in CreateArray()
913 return new (zone()) Operator1<CreateArrayParameters>( // -- in CreateArray()
Djs-generic-lowering.cc474 CreateArrayParameters const& p = CreateArrayParametersOf(node->op()); in LowerJSCreateArray()
Djs-typed-lowering.cc1737 CreateArrayParameters const& p = CreateArrayParametersOf(node->op()); in ReduceJSCreateArray()