Searched defs:register_param_count (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dinterface-descriptors.h125 int register_param_count() const { return register_param_count_; } function in class:v8::internal::CallInterfaceDescriptorData
175 return data()->register_param_count();
179 return data()->function_type()->Arity() - data()->register_param_count();
209 Isolate* isolate, int register_param_count) {
210 return BuildDefaultFunctionType(isolate, register_param_count);
223 isolate, d->register_param_count());
268 Isolate* isolate, int register_param_count) override; \
276 Isolate* isolate, int register_param_count) override { \
278 isolate, register_param_count, arg); \
208 BuildCallInterfaceDescriptorFunctionType( Isolate* isolate, int register_param_count) argument
H A Dcode-stubs-hydrogen.cc113 int register_param_count = GetRegisterParameterCount(); local
125 if (i >= register_param_count) {
126 param = Add<HParameter>(i - register_param_count,
133 if (i < register_param_count && IsParameterCountRegister(i)) {
143 Add<HConstant>(param_count - register_param_count - 1);

Completed in 44 milliseconds