Lines Matching refs:intptr_t
26 intptr_t GetRegister(unsigned n) const {
46 void SetRegister(unsigned n, intptr_t value) {
51 intptr_t registers_[Register::kNumRegisters];
109 intptr_t GetFrameSlot(unsigned offset) {
133 void SetFrameSlot(unsigned offset, intptr_t value) {
137 void SetCallerPc(unsigned offset, intptr_t value);
139 void SetCallerFp(unsigned offset, intptr_t value);
141 void SetCallerConstantPool(unsigned offset, intptr_t value);
143 intptr_t GetRegister(unsigned n) const {
151 void SetRegister(unsigned n, intptr_t value) {
155 intptr_t GetTop() const { return top_; }
156 void SetTop(intptr_t top) { top_ = top; }
158 intptr_t GetPc() const { return pc_; }
159 void SetPc(intptr_t pc);
161 intptr_t GetFp() const { return fp_; }
162 void SetFp(intptr_t fp) { fp_ = fp; }
164 intptr_t GetContext() const { return context_; }
165 void SetContext(intptr_t context) { context_ = context; }
167 intptr_t GetConstantPool() const { return constant_pool_; }
168 void SetConstantPool(intptr_t constant_pool) {
172 void SetContinuation(intptr_t pc) { continuation_ = pc; }
203 // keep the variable-size array frame_content_ of type intptr_t at
208 intptr_t top_;
209 intptr_t pc_;
210 intptr_t fp_;
211 intptr_t context_;
212 intptr_t constant_pool_;
216 intptr_t continuation_;
220 intptr_t frame_content_[1];
222 intptr_t* GetFrameSlotPointer(unsigned offset) {
224 return reinterpret_cast<intptr_t*>(reinterpret_cast<Address>(this) +