Searched refs:argument_count (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.hpp42 int argument_count() const { function in class:SignatureHandler
55 return *(argument_types() + argument_count());
H A DinterpreterRT_zero.cpp136 argument_count(),
H A Dframe_zero.cpp311 intptr_t *params = istate->stack_base() - handler->argument_count();
327 for (int i = 0; i < handler->argument_count(); i++) {
H A DcppInterpreter_zero.cpp272 stack->overflow_check(handler->argument_count() * 2, THREAD);
279 (void **) stack->alloc(handler->argument_count() * sizeof(void **));
293 for (int i = dst - arguments; i < handler->argument_count(); i++) {
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp463 int argument_count() { return dep_args(type()); } function in class:Dependencies::DepStream
464 int argument_index(int i) { assert(0 <= i && i < argument_count(), "oob");
H A Ddependencies.cpp544 int nargs = argument_count();
559 int nargs = argument_count();
628 if (ctxkj >= 0 && i == ctxkj && ctxkj+1 < argument_count()) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2666 // length*{bootstrap_method_index, argument_count*{argument_index}}
2689 u2 argument_count = cfs->get_u2_fast(); local
2697 operands->short_at_put(operand_fill_index++, argument_count);
2699 cfs->guarantee_more(sizeof(u2) * argument_count, CHECK); // argv[argc]
2700 for (int j = 0; j < argument_count; j++) {

Completed in 44 milliseconds