Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h172 class CallRuntimeParameters final {
174 CallRuntimeParameters(Runtime::FunctionId id, size_t arity) in CallRuntimeParameters() function
185 bool operator==(CallRuntimeParameters const&, CallRuntimeParameters const&);
186 bool operator!=(CallRuntimeParameters const&, CallRuntimeParameters const&);
188 size_t hash_value(CallRuntimeParameters const&);
190 std::ostream& operator<<(std::ostream&, CallRuntimeParameters const&);
192 const CallRuntimeParameters& CallRuntimeParametersOf(const Operator* op);
Djs-operator.cc153 bool operator==(CallRuntimeParameters const& lhs, in operator ==()
154 CallRuntimeParameters const& rhs) { in operator ==()
159 bool operator!=(CallRuntimeParameters const& lhs, in operator !=()
160 CallRuntimeParameters const& rhs) { in operator !=()
165 size_t hash_value(CallRuntimeParameters const& p) { in hash_value()
170 std::ostream& operator<<(std::ostream& os, CallRuntimeParameters const& p) { in operator <<()
175 const CallRuntimeParameters& CallRuntimeParametersOf(const Operator* op) { in CallRuntimeParametersOf()
177 return OpParameter<CallRuntimeParameters>(op); in CallRuntimeParametersOf()
751 CallRuntimeParameters parameters(id, arity); in CallRuntime()
754 return new (zone()) Operator1<CallRuntimeParameters>( // -- in CallRuntime()
Doperator-properties.cc28 const CallRuntimeParameters& p = CallRuntimeParametersOf(op); in GetFrameStateInputCount()
Djs-generic-lowering.cc600 const CallRuntimeParameters& p = CallRuntimeParametersOf(node->op()); in LowerJSCallRuntime()