OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #if defined(V8_TARGET_ARCH_IA32) | 30 #if defined(V8_TARGET_ARCH_IA32) |
31 | 31 |
32 #include "frames-inl.h" | 32 #include "frames-inl.h" |
33 | 33 |
34 namespace v8 { | 34 namespace v8 { |
35 namespace internal { | 35 namespace internal { |
36 | 36 |
37 | 37 |
38 StackFrame::Type ExitFrame::GetStateForFramePointer(Address fp, State* state) { | 38 Address ExitFrame::ComputeStackPointer(Address fp) { |
39 if (fp == 0) return NONE; | 39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset); |
40 // Compute the stack pointer. | |
41 Address sp = Memory::Address_at(fp + ExitFrameConstants::kSPOffset); | |
42 // Fill in the state. | |
43 state->fp = fp; | |
44 state->sp = sp; | |
45 state->pc_address = reinterpret_cast<Address*>(sp - 1 * kPointerSize); | |
46 ASSERT(*state->pc_address != NULL); | |
47 return EXIT; | |
48 } | 40 } |
49 | 41 |
50 | 42 |
51 } } // namespace v8::internal | 43 } } // namespace v8::internal |
52 | 44 |
53 #endif // V8_TARGET_ARCH_IA32 | 45 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |