Home | History | Annotate | Download | only in cctest

Lines Matching refs:fp

69 static void DoTrace(Address fp) {
71 regs.fp = fp;
81 static void DoTraceHideCEntryFPAddress(Address fp) {
86 DoTrace(fp);
137 Address fp = *reinterpret_cast<Address*>(*args[0]);
141 Address fp = reinterpret_cast<Address>(high_bits | low_bits);
145 printf("Trace: %p\n", fp);
146 return fp;
216 int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp());
219 uint64_t fp = reinterpret_cast<uint64_t>(calling_frame->fp());
220 int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff);
221 int32_t high_bits = static_cast<int32_t>(fp >> 32);
251 " fp = new FPGrabber();"
252 " %s(fp.low_bits, fp.high_bits);"
364 Address fp;
366 fp = reinterpret_cast<Address>(__builtin_frame_address(0));
370 fp = &dummy_parameter - 2 * sizeof(void*); // NOLINT
374 DoTrace(fp);