Home
last modified time | relevance | path

Searched refs:GetParameterCount (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/torque/
Ddeclarable.cc51 if (l.GetParameterCount() != 0) { in PrintLabel()
Ddeclarable.h169 size_t GetParameterCount() const { return parameters_.size(); } in GetParameterCount() function
Dimplementation-visitor.cc579 if (stmt->arguments.size() != label->GetParameterCount()) { in Visit()
582 << std::to_string(label->GetParameterCount()) << " found " in Visit()
1787 if (label->GetParameterCount() != callee_label_parameters) { in GenerateCall()
1791 << std::to_string(label->GetParameterCount()) << " expected " in GenerateCall()
/external/v8/src/
Dcode-stubs.h313 int GetParameterCount() const { in GetParameterCount() function
314 return call_descriptor().GetParameterCount(); in GetParameterCount()
340 int params = GetParameterCount(); in GetHandlerParameterCount()
Dinterface-descriptors.h232 int GetParameterCount() const { return data()->param_count(); } in GetParameterCount() function
/external/v8/src/debug/
Ddebug-frames.cc62 return wasm_interpreted_frame_->GetParameterCount(); in GetParametersCount()
/external/v8/src/wasm/
Dwasm-interpreter.h64 int GetParameterCount() const;
Dwasm-debug.cc437 int num_params = frame->GetParameterCount(); in GetLocalScopeObject()
Dwasm-interpreter.cc2939 int GetParameterCount() const { in GetParameterCount() function in v8::internal::wasm::__anon49171a620111::InterpretedFrameImpl
3205 int InterpretedFrame::GetParameterCount() const { in GetParameterCount() function in v8::internal::wasm::InterpretedFrame
3206 return ToImpl(this)->GetParameterCount(); in GetParameterCount()
/external/v8/src/compiler/
Dcode-assembler.cc1159 DCHECK_LE(descriptor.GetParameterCount(), argc); in CallStubN()
1181 DCHECK_EQ(descriptor.GetParameterCount(), args.size()); in TailCallStubImpl()
1219 DCHECK_LE(descriptor.GetParameterCount(), args.size()); in TailCallStubThenBytecodeDispatchImpl()
1240 DCHECK_EQ(descriptor.GetParameterCount(), sizeof...(args)); in TailCallBytecodeDispatch()
1245 CHECK_EQ(descriptor.GetParameterCount() + 1, arraysize(nodes)); in TailCallBytecodeDispatch()
1266 CHECK_EQ(descriptor.GetParameterCount() + 2, arraysize(nodes)); in TailCallJSCode()
/external/v8/src/interpreter/
Dinterpreter-intrinsics-generator.cc183 int param_count = callable.descriptor().GetParameterCount(); in IntrinsicAsStubCall()