OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:last_fp
(Results
1 - 3
of
3
) sorted by null
/external/google-breakpad/src/processor/
stackwalker_arm.cc
203
uint32_t
last_fp
= last_frame->context.iregs[fp_register_];
local
206
if (
last_fp
&& !memory_->GetMemoryAtAddress(
last_fp
, &caller_fp)) {
207
BPLOG(ERROR) << "Unable to read caller_fp from
last_fp
: 0x"
208
<< std::hex <<
last_fp
;
local
213
if (
last_fp
&& !memory_->GetMemoryAtAddress(
last_fp
+ 4, &caller_lr)) {
214
BPLOG(ERROR) << "Unable to read caller_lr from
last_fp
+ 4: 0x"
215
<< std::hex << (
last_fp
+ 4);
219
uint32_t caller_sp =
last_fp
? last_fp + 8
[
all
...]
stackwalker_arm64.cc
189
uint64_t
last_fp
= last_frame->context.iregs[MD_CONTEXT_ARM64_REG_FP];
local
192
if (
last_fp
&& !memory_->GetMemoryAtAddress(
last_fp
, &caller_fp)) {
193
BPLOG(ERROR) << "Unable to read caller_fp from
last_fp
: 0x"
194
<< std::hex <<
last_fp
;
local
199
if (
last_fp
&& !memory_->GetMemoryAtAddress(
last_fp
+ 8, &caller_lr)) {
200
BPLOG(ERROR) << "Unable to read caller_lr from
last_fp
+ 8: 0x"
201
<< std::hex << (
last_fp
+ 8);
205
uint64_t caller_sp =
last_fp
? last_fp + 16
[
all
...]
/external/v8/src/
frames.cc
264
Address last_sp = last_frame->sp(),
last_fp
= last_frame->fp();
local
278
if (frame_->sp() < last_sp || frame_->fp() <
last_fp
) {
[
all
...]
Completed in 56 milliseconds