Lines Matching defs:fp
71 static void DoTrace(Address fp) {
72 trace_env.sample->fp = fp;
82 static void DoTraceHideCEntryFPAddress(Address fp) {
87 DoTrace(fp);
136 Address fp = *reinterpret_cast<Address*>(*args[0]);
140 Address fp = reinterpret_cast<Address>(high_bits | low_bits);
144 printf("Trace: %p\n", fp);
145 return fp;
226 int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp());
229 uint64_t fp = reinterpret_cast<uint64_t>(calling_frame->fp());
230 int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff);
231 int32_t high_bits = static_cast<int32_t>(fp >> 32);
259 " fp = new FPGrabber();"
260 " %s(fp.low_bits, fp.high_bits);"
366 Address fp;
368 fp = reinterpret_cast<Address>(__builtin_frame_address(0));
372 fp = &dummy_parameter - 2 * sizeof(void*); // NOLINT
376 DoTrace(fp);