• Home
  • Raw
  • Download

Lines Matching refs:frame

73   StackFrameMIPS* frame = new StackFrameMIPS();  in GetContextFrame()  local
77 frame->context = *context_; in GetContextFrame()
78 frame->context_validity = StackFrameMIPS::CONTEXT_VALID_ALL; in GetContextFrame()
79 frame->trust = StackFrame::FRAME_TRUST_CONTEXT; in GetContextFrame()
80 frame->instruction = frame->context.epc; in GetContextFrame()
82 return frame; in GetContextFrame()
131 scoped_ptr<StackFrameMIPS> frame(new StackFrameMIPS()); in GetCallerByCFIFrameInfo() local
140 frame->context.iregs[i] = caller_entry->second; in GetCallerByCFIFrameInfo()
141 frame->context_validity |= StackFrameMIPS::RegisterValidFlag(i); in GetCallerByCFIFrameInfo()
151 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
152 frame->context_validity |= StackFrameMIPS::RegisterValidFlag(i); in GetCallerByCFIFrameInfo()
156 frame->context.epc = caller_registers["$pc"]; in GetCallerByCFIFrameInfo()
157 frame->instruction = caller_registers["$pc"]; in GetCallerByCFIFrameInfo()
158 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_PC; in GetCallerByCFIFrameInfo()
160 frame->context.iregs[MD_CONTEXT_MIPS_REG_RA] = caller_registers["$ra"]; in GetCallerByCFIFrameInfo()
161 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_RA; in GetCallerByCFIFrameInfo()
163 frame->trust = StackFrame::FRAME_TRUST_CFI; in GetCallerByCFIFrameInfo()
165 return frame.release(); in GetCallerByCFIFrameInfo()
280 StackFrameMIPS* frame = new StackFrameMIPS(); in GetCallerByStackScan() local
281 frame->trust = StackFrame::FRAME_TRUST_SCAN; in GetCallerByStackScan()
282 frame->context = last_frame->context; in GetCallerByStackScan()
283 frame->context.epc = caller_pc; in GetCallerByStackScan()
284 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_PC; in GetCallerByStackScan()
285 frame->instruction = caller_pc; in GetCallerByStackScan()
287 frame->context.iregs[MD_CONTEXT_MIPS_REG_SP] = caller_sp; in GetCallerByStackScan()
288 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_SP; in GetCallerByStackScan()
289 frame->context.iregs[MD_CONTEXT_MIPS_REG_FP] = caller_fp; in GetCallerByStackScan()
290 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_FP; in GetCallerByStackScan()
292 frame->context.iregs[MD_CONTEXT_MIPS_REG_RA] = in GetCallerByStackScan()
294 frame->context_validity |= StackFrameMIPS::CONTEXT_VALID_RA; in GetCallerByStackScan()
296 return frame; in GetCallerByStackScan()