< prev index next >

src/cpu/x86/vm/frame_x86.hpp

Print this page

        

*** 176,192 **** #endif public: // Constructors ! frame(intptr_t* sp, intptr_t* fp, address pc); ! frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc); ! frame(intptr_t* sp, intptr_t* fp); ! void init(intptr_t* sp, intptr_t* fp, address pc); // accessors for the instance variables // Note: not necessarily the real 'frame pointer' (see real_fp) intptr_t* fp() const { return _fp; } --- 176,192 ---- #endif public: // Constructors ! frame(Thread* thread, intptr_t* sp, intptr_t* fp, address pc); ! frame(Thread* thread, intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc); ! frame(Thread* thread, intptr_t* sp, intptr_t* fp); ! void init(Thread* thread, intptr_t* sp, intptr_t* fp, address pc); // accessors for the instance variables // Note: not necessarily the real 'frame pointer' (see real_fp) intptr_t* fp() const { return _fp; }
< prev index next >