Searched refs:poplen (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp398 void ppop_any (int poplen);
401 void ppdupswap (int poplen, const char *out);
H A DgenerateOopMap.cpp1678 void GenerateOopMap::ppdupswap(int poplen, const char *out) { argument
1680 assert(poplen < 5, "this must be less than length of actual vector"); argument
1683 for(int i = 0; i < poplen; i++) actual[i] = pop();
1689 assert(idx >= 0 && idx < poplen, "wrong arguments");
1727 void GenerateOopMap::ppop_any(int poplen) {
1728 if (_stack_top >= poplen) {
1729 _stack_top -= poplen;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1633 void ppopAny (int poplen) { argument
1634 if (_stack_top >= poplen) {
1635 _stack_top -= poplen;
1651 void ppdupswap (int poplen, String out) { argument
1653 Assert.that(poplen < 5, "this must be less than length of actual vector");
1656 for(int i = 0; i < poplen; i++) actual[i] = pop();
1663 Assert.that(idx >= 0 && idx < poplen, "wrong arguments");

Completed in 46 milliseconds