Searched refs:max_stack (Results 26 - 50 of 62) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java394 if (code.max_stack >= TOO_BIG ||
454 code.max_stack = readUnsignedShort();
H A DClassWriter.java232 writeShort(code.max_stack);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp384 unextended_sp() + method()->max_stack(),
H A DcppInterpreter_zero.cpp675 stack_words = method->max_stack();
942 int stack_words = is_top_frame ? method->max_stack() : tempcount;
999 istate->set_stack_limit(stack_base - method->max_stack() - 1);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DCodeWriter.java94 println("stack=" + attr.max_stack +
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp161 int IRScope::max_stack() const { function in class:IRScope
162 int my_max = method()->max_stack();
165 callee_max = MAX2(callee_max, callee_no(i)->max_stack());
H A Dc1_Compilation.cpp346 _frame_map = new FrameMap(method(), hir()->number_of_locks(), MAX2(4, hir()->max_stack()));
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodKlass.cpp231 st->print_cr(" - max stack: %d", m->max_stack());
H A DmethodOop.hpp76 // | method_size | max_stack |
252 int max_stack() const { return _max_stack + extra_stack_entries(); } function in class:methodOopDesc
H A DgenerateOopMap.cpp1207 assert(method()->max_stack() > 0, "sanity check");
2065 _max_stack = method()->max_stack();
2091 if (method()->code_size() == 0 || _max_locals + method()->max_stack() == 0) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp570 // stack frames shouldn't be much larger than max_stack elements
572 if (fp() - sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) {
H A DcppInterpreter_x86.cpp2254 const int method_stack = (method->max_locals() + method->max_stack() + extra_stack) *
2320 to_fill->_stack_limit = stack_base - (method->max_stack() + extra_stack + 1);
2369 int full_frame_size = short_frame_size + (method->max_stack() + extra_stack) * BytesPerWord;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.h446 void get_code_header(int& max_stack,
H A Dunpack.cpp2684 void unpacker::get_code_header(int& max_stack, argument
2690 max_stack = max_na_locals = handler_count = cflags = -1;
2710 max_stack = sc % mod;
2726 int max_stack, max_locals, handler_count, cflags;
2727 get_code_header(max_stack, max_locals, handler_count, cflags);
2728 if (max_stack < 0) code_max_stack.expectMoreLength(1);
4022 int max_stack, max_locals, handler_count, cflags;
4023 get_code_header(max_stack, max_locals, handler_count, cflags);
4025 if (max_stack < 0) max_stack
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse1.cpp183 int max_stack = jvms()->stk_size(); local
189 assert(max_stack >= method()->max_stack(), "sanity");
190 assert((int)jvms()->endoff() == TypeFunc::Parms + max_locals + max_stack, "sanity");
1002 uint len = TypeFunc::Parms + method()->max_locals() + method()->max_stack();
H A Dmatcher.cpp981 Node *Matcher::xform( Node *n, int max_stack ) {
983 MStack mstack(max_stack * 2 * 2); // C->unique() * 2 * 2
H A DcallGenerator.cpp346 map->ensure_stack(jvms, jvms->method()->max_stack());
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp101 if (method()->code_size() == 0 || method()->max_locals() + method()->max_stack() == 0) {
H A DbytecodeInterpreter.cpp467 assert(abs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
637 if ((istate->_stack_base - istate->_stack_limit) != istate->method()->max_stack() + 1) {
795 if ((istate->_stack_base - istate->_stack_limit) != istate->method()->max_stack() + 1) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.cpp663 // stack frames shouldn't be much larger than max_stack elements
665 if (fp() - sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp122 // JVMSpec| u2 max_stack;
198 2+2+4 + // max_stack, max_locals, code_length
207 write_u2(method->max_stack());
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1877 u2 max_stack = 0; local
1944 max_stack = cfs->get_u1_fast();
1949 max_stack = cfs->get_u2_fast();
1982 sizeof(max_stack) + sizeof(max_locals) + sizeof(code_length);
1984 // max_stack, locals and length are smaller in pre-version 45.2 classes
2210 m->set_max_stack(max_stack);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp78 _max_stack = h_m()->max_stack();
H A DciTypeFlow.hpp72 int max_stack() const { return _max_stack; } function in class:ciTypeFlow
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassWriter.java381 out.writeShort(attr.max_stack);

Completed in 4179 milliseconds

123