Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/
Djs-operator.cc121 bool operator==(CallRuntimeParameters const& lhs, in operator ==()
122 CallRuntimeParameters const& rhs) { in operator ==()
127 bool operator!=(CallRuntimeParameters const& lhs, in operator !=()
128 CallRuntimeParameters const& rhs) { in operator !=()
133 size_t hash_value(CallRuntimeParameters const& p) { in hash_value()
138 std::ostream& operator<<(std::ostream& os, CallRuntimeParameters const& p) { in operator <<()
143 const CallRuntimeParameters& CallRuntimeParametersOf(const Operator* op) { in CallRuntimeParametersOf()
145 return OpParameter<CallRuntimeParameters>(op); in CallRuntimeParametersOf()
928 CallRuntimeParameters parameters(f->function_id, arity); in CallRuntime()
930 return zone()->New<Operator1<CallRuntimeParameters>>( // -- in CallRuntime()
Djs-operator.h311 class V8_EXPORT_PRIVATE CallRuntimeParameters final {
313 CallRuntimeParameters(Runtime::FunctionId id, size_t arity) in CallRuntimeParameters() function
324 bool operator==(CallRuntimeParameters const&, CallRuntimeParameters const&);
325 bool operator!=(CallRuntimeParameters const&, CallRuntimeParameters const&);
327 size_t hash_value(CallRuntimeParameters const&);
329 std::ostream& operator<<(std::ostream&, CallRuntimeParameters const&);
331 V8_EXPORT_PRIVATE const CallRuntimeParameters& CallRuntimeParametersOf(
Doperator-properties.cc143 const CallRuntimeParameters& p = CallRuntimeParametersOf(op); in HasFrameStateInput()
Djs-generic-lowering.cc1056 const CallRuntimeParameters& p = CallRuntimeParametersOf(node->op()); in LowerJSCallRuntime()