Searched refs:m_max_stack (Results 1 – 2 of 2) sorted by relevance
82 public int m_max_stack, m_max_locals; field in CodeAttribute_info94 m_max_stack = max_stack; in CodeAttribute_info()148 s.append (" max_stack/max_locals = " + m_max_stack + '/' + m_max_locals + eol); in toString()185 out.writeU2 (m_max_stack); in writeInClassFormat()214 m_max_stack = bytes.readU2 (); in CodeAttribute_info()
1099 final int oldMaxStack = attribute.m_max_stack; in visit()1101 …attribute.m_max_stack += methodMaxStack; // this is not precise, but still need to add because the… in visit()1103 if (headerMaxStack > attribute.m_max_stack) in visit()1104 attribute.m_max_stack = headerMaxStack; in visit()1106 …(trace3) m_log.trace3 ("visit", "increasing maxstack by " + (attribute.m_max_stack - oldMaxStack)); in visit()