Searched refs:arg_size (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.hpp57 virtual int arg_size() const = 0;
162 return extended_frame_size() - arg_size();
255 int arg_size() const;
285 int arg_size() const;
H A DsharkInvariants.hpp171 int arg_size() const { function in class:SharkTargetInvariants
172 return target()->arg_size();
H A DsharkStack.cpp39 int extra_locals = locals_words - arg_size();
206 int SharkStackWithNormalFrame::arg_size() const { function in class:SharkStackWithNormalFrame
207 return function()->arg_size();
209 int SharkStackWithNativeFrame::arg_size() const { function in class:SharkStackWithNativeFrame
210 return wrapper()->arg_size();
217 return wrapper()->arg_size();
H A DsharkCacheDecache.hpp216 return value && (index < callee()->arg_size() || value->is_jobject());
219 return value && value->is_jobject() && index >= callee()->arg_size();
222 return index >= callee()->arg_size();
H A DsharkNativeWrapper.cpp61 SharkStack::oopmap_slot_munge(arg_size()));
120 for (int i = 0; i < arg_size(); i++) {
121 int slot_offset = stack()->locals_slots_offset() + arg_size() - 1 - i;
H A DsharkInliner.cpp50 if (i < target->arg_size())
686 for (int i = 0; i < target()->arg_size(); i++) {
687 SharkValue *arg = entry_state()->stack(target()->arg_size() - 1 - i);
H A DsharkNativeWrapper.hpp86 int arg_size() const { function in class:SharkNativeWrapper
H A DsharkCacheDecache.cpp42 oopmap_slot_munge(arg_size()));
H A DsharkState.cpp217 if (i >= arg_size()) {
H A DsharkTopLevelBlock.cpp262 for (int i = 0; i < callee->arg_size(); i++)
1272 receiver = xstack(dest_method->arg_size() - 1);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.hpp131 int arg_size() const { function in class:ciMethod
136 // This is different than the regular arg_size because invokedynamic
140 return arg_size();
142 int arg_size = _signature->size(); local
146 arg_size++;
148 return arg_size;
H A DbcEscapeAnalyzer.cpp253 int arg_size = target->invoke_arg_size(code); local
254 int arg_base = MAX2(state._stack_height - arg_size, 0);
274 for (i = 0; i < arg_size; i++) {
301 for (i = arg_size - 1; i >= 0; i--) {
333 for (i = 0; i < arg_size; i++) {
1411 , _arg_size(method ? method->arg_size() : 0)
H A DciTypeFlow.cpp667 const int arg_size = declared_signature->size(); local
668 const int stack_base = stack_size() - arg_size;
680 assert(arg_size == i, "must match");
681 for (int j = 0; j < arg_size; j++) {
H A DciMethod.cpp1219 st->print(" arg_size=%d", arg_size());
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp180 ArgumentIterator(char* arg_buffer, size_t arg_size) { argument
182 _end = _pos + arg_size - 1;
228 static SolarisAttachOperation* create_operation(char* argp, size_t arg_size, int* err) { argument
232 if (arg_size < 2 || argp[arg_size-1] != '\0') {
237 ArgumentIterator args(argp, arg_size);
282 static void enqueue_proc(void* cookie, char* argp, size_t arg_size, argument
317 op = create_operation(argp, arg_size, &err);
/openjdk7/hotspot/src/os/bsd/vm/
H A DattachListener_bsd.cpp133 ArgumentIterator(char* arg_buffer, size_t arg_size) { argument
135 _end = _pos + arg_size - 1;
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp133 ArgumentIterator(char* arg_buffer, size_t arg_size) { argument
135 _end = _pos + arg_size - 1;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp52 BasicTypeList* sta = new BasicTypeList(method->arg_size());
182 _argcount = method->arg_size();
H A Dc1_GraphBuilder.cpp3457 Values* args = state()->pop_arguments(callee->arg_size());
3704 const int args_base = state()->stack_size() - callee->arg_size();
3714 assert(callee->arg_size() > 0, "must have at least a receiver");
3889 const int args_base = state()->stack_size() - callee->arg_size();
3914 const int args_base = state()->stack_size() - callee->arg_size();
4054 Values* args = state()->pop_arguments(callee->arg_size());
4070 Values* args = state()->pop_arguments(callee->arg_size());
4086 Values* args = state()->pop_arguments(callee->arg_size());
4098 Values* args = state()->pop_arguments(callee->arg_size());
4109 Values* args = state()->pop_arguments(callee->arg_size());
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp594 int arg_size = method->size_of_parameters(); local
595 object_size += DataLayout::compute_size_in_bytes(arg_size+1);
797 int arg_size = method->size_of_parameters(); local
798 dp->initialize(DataLayout::arg_info_data_tag, 0, arg_size+1);
800 object_size += extra_size + DataLayout::compute_size_in_bytes(arg_size+1);
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp191 kit.inc_sp(method()->arg_size()); // restore arguments
313 for (int i1 = 0; i1 < method()->arg_size(); i1++) {
344 int nargs = method()->arg_size();
758 Node* member_name = kit.argument(callee->arg_size() - 1);
983 int nargs = method()->arg_size();
H A Dparse1.cpp754 int arg_size = tf->domain()->cnt(); local
755 int max_size = MAX2(arg_size, (int)tf->range()->cnt());
759 assert(arg_size == TypeFunc::Parms + (is_osr_compilation() ? 1 : method()->arg_size()), "correct arg_size");
770 for (i = 0; i < (uint)arg_size; i++) {
1047 uint arg_size = tf()->domain()->cnt(); local
1048 ensure_stack(arg_size - TypeFunc::Parms); // OSR methods have funny args
1049 for (i = TypeFunc::Parms; i < arg_size; i++) {
1054 for (i = arg_size;
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dlibproc.h145 ushort_t arg_size; /* if AT_BYREF, size of object in bytes */ member in struct:__anon2
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1039 int arg_size; local
1040 _regs = SharedRuntime::find_callee_arguments(signature, has_receiver, &arg_size);
1041 assert(arg_size == _arg_size, "wrong arg size");
H A DsharedRuntime.hpp412 static VMRegPair* find_callee_arguments(Symbol* sig, bool has_receiver, int *arg_size);

Completed in 105 milliseconds

12