Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h214 class CallRuntimeParameters final {
216 CallRuntimeParameters(Runtime::FunctionId id, size_t arity) in CallRuntimeParameters() function
227 bool operator==(CallRuntimeParameters const&, CallRuntimeParameters const&);
228 bool operator!=(CallRuntimeParameters const&, CallRuntimeParameters const&);
230 size_t hash_value(CallRuntimeParameters const&);
232 std::ostream& operator<<(std::ostream&, CallRuntimeParameters const&);
234 const CallRuntimeParameters& CallRuntimeParametersOf(const Operator* op);
Djs-operator.cc90 bool operator==(CallRuntimeParameters const& lhs, in operator ==()
91 CallRuntimeParameters const& rhs) { in operator ==()
96 bool operator!=(CallRuntimeParameters const& lhs, in operator !=()
97 CallRuntimeParameters const& rhs) { in operator !=()
102 size_t hash_value(CallRuntimeParameters const& p) { in hash_value()
107 std::ostream& operator<<(std::ostream& os, CallRuntimeParameters const& p) { in operator <<()
112 const CallRuntimeParameters& CallRuntimeParametersOf(const Operator* op) { in CallRuntimeParametersOf()
114 return OpParameter<CallRuntimeParameters>(op); in CallRuntimeParametersOf()
876 CallRuntimeParameters parameters(f->function_id, arity); in CallRuntime()
878 return new (zone()) Operator1<CallRuntimeParameters>( // -- in CallRuntime()
Doperator-properties.cc29 const CallRuntimeParameters& p = CallRuntimeParametersOf(op); in HasFrameStateInput()
Djs-generic-lowering.cc727 const CallRuntimeParameters& p = CallRuntimeParametersOf(node->op()); in LowerJSCallRuntime()