Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h299 class CreateArrayParameters final {
301 explicit CreateArrayParameters(size_t arity, Handle<AllocationSite> site) in CreateArrayParameters() function
312 bool operator==(CreateArrayParameters const&, CreateArrayParameters const&);
313 bool operator!=(CreateArrayParameters const&, CreateArrayParameters const&);
315 size_t hash_value(CreateArrayParameters const&);
317 std::ostream& operator<<(std::ostream&, CreateArrayParameters const&);
319 const CreateArrayParameters& CreateArrayParametersOf(const Operator* op);
Djs-operator.cc286 bool operator==(CreateArrayParameters const& lhs, in operator ==()
287 CreateArrayParameters const& rhs) { in operator ==()
293 bool operator!=(CreateArrayParameters const& lhs, in operator !=()
294 CreateArrayParameters const& rhs) { in operator !=()
299 size_t hash_value(CreateArrayParameters const& p) { in hash_value()
304 std::ostream& operator<<(std::ostream& os, CreateArrayParameters const& p) { in operator <<()
311 const CreateArrayParameters& CreateArrayParametersOf(const Operator* op) { in CreateArrayParametersOf()
313 return OpParameter<CreateArrayParameters>(op); in CreateArrayParametersOf()
829 CreateArrayParameters parameters(arity, site); in CreateArray()
830 return new (zone()) Operator1<CreateArrayParameters>( // -- in CreateArray()
Djs-generic-lowering.cc394 CreateArrayParameters const& p = CreateArrayParametersOf(node->op()); in LowerJSCreateArray()
Djs-create-lowering.cc514 CreateArrayParameters const& p = CreateArrayParametersOf(node->op()); in ReduceJSCreateArray()