< prev index next >

src/cpu/x86/vm/interpreterRT_x86_32.cpp

Print this page

        

*** 122,132 **** *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr; _from -= Interpreter::stackElementSize; } public: ! SlowSignatureHandler(methodHandle method, address from, intptr_t* to) : NativeSignatureIterator(method) { _from = from; _to = to + (is_static() ? 2 : 1); } }; --- 122,132 ---- *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr; _from -= Interpreter::stackElementSize; } public: ! SlowSignatureHandler(const methodHandle& method, address from, intptr_t* to) : NativeSignatureIterator(method) { _from = from; _to = to + (is_static() ? 2 : 1); } };
< prev index next >