Lines Matching refs:intptr_t
62 void patch_slot_address(intptr_t slot) { in patch_slot_address()
344 void AddObjectStart(intptr_t slot_address, int argc, bool is_arguments);
345 void AddObjectDuplication(intptr_t slot, int object_index);
346 void AddObjectTaggedValue(intptr_t value);
348 void AddDoubleValue(intptr_t slot_address, double value);
486 intptr_t GetFrameSlot(unsigned offset) { in GetFrameSlot()
491 intptr_t* ptr = GetFrameSlotPointer(offset); in GetDoubleFrameSlot()
495 void SetFrameSlot(unsigned offset, intptr_t value) { in SetFrameSlot()
499 void SetCallerPc(unsigned offset, intptr_t value);
501 void SetCallerFp(unsigned offset, intptr_t value);
503 void SetCallerConstantPool(unsigned offset, intptr_t value);
505 intptr_t GetRegister(unsigned n) const { in GetRegister()
523 void SetRegister(unsigned n, intptr_t value) { in SetRegister()
533 intptr_t GetTop() const { return top_; } in GetTop()
534 void SetTop(intptr_t top) { top_ = top; } in SetTop()
536 intptr_t GetPc() const { return pc_; } in GetPc()
537 void SetPc(intptr_t pc) { pc_ = pc; } in SetPc()
539 intptr_t GetFp() const { return fp_; } in GetFp()
540 void SetFp(intptr_t fp) { fp_ = fp; } in SetFp()
542 intptr_t GetContext() const { return context_; } in GetContext()
543 void SetContext(intptr_t context) { context_ = context; } in SetContext()
545 intptr_t GetConstantPool() const { return constant_pool_; } in GetConstantPool()
546 void SetConstantPool(intptr_t constant_pool) { in SetConstantPool()
553 void SetContinuation(intptr_t pc) { continuation_ = pc; } in SetContinuation()
606 intptr_t registers_[Register::kNumRegisters];
608 intptr_t top_;
609 intptr_t pc_;
610 intptr_t fp_;
611 intptr_t context_;
612 intptr_t constant_pool_;
618 intptr_t continuation_;
622 intptr_t frame_content_[1];
624 intptr_t* GetFrameSlotPointer(unsigned offset) { in GetFrameSlotPointer()
626 return reinterpret_cast<intptr_t*>( in GetFrameSlotPointer()