OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_STACK_FRAME_H_ | 5 #ifndef VM_STACK_FRAME_H_ |
6 #define VM_STACK_FRAME_H_ | 6 #define VM_STACK_FRAME_H_ |
7 | 7 |
8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 #include "vm/stub_code.h" | 10 #include "vm/stub_code.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 void set_pc(uword value) { | 54 void set_pc(uword value) { |
55 *reinterpret_cast<uword*>(sp() + (kSavedPcSlotFromSp * kWordSize)) = value; | 55 *reinterpret_cast<uword*>(sp() + (kSavedPcSlotFromSp * kWordSize)) = value; |
56 } | 56 } |
57 | 57 |
58 void set_pc_marker(RawCode* code) { | 58 void set_pc_marker(RawCode* code) { |
59 *reinterpret_cast<RawCode**>(fp() + (kPcMarkerSlotFromFp * kWordSize)) = | 59 *reinterpret_cast<RawCode**>(fp() + (kPcMarkerSlotFromFp * kWordSize)) = |
60 code; | 60 code; |
61 } | 61 } |
62 | 62 |
63 #if !defined(TARGET_ARCH_IA32) && !defined(TARGET_ARCH_DBC) | |
64 uword* saved_caller_pp_slot() const { | |
65 return reinterpret_cast<uword*>(fp() + | |
66 SavedCallerPpSlotFromFp() * kWordSize); | |
67 } | |
68 #endif | |
69 | |
70 // Visit objects in the frame. | 63 // Visit objects in the frame. |
71 virtual void VisitObjectPointers(ObjectPointerVisitor* visitor); | 64 virtual void VisitObjectPointers(ObjectPointerVisitor* visitor); |
72 | 65 |
73 const char* ToCString() const; | 66 const char* ToCString() const; |
74 | 67 |
75 // Check validity of a frame, used for assertion purposes. | 68 // Check validity of a frame, used for assertion purposes. |
76 virtual bool IsValid() const; | 69 virtual bool IsValid() const; |
77 | 70 |
78 // Frame type. | 71 // Frame type. |
79 virtual bool IsDartFrame(bool validate = true) const { | 72 virtual bool IsDartFrame(bool validate = true) const { |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 | 372 |
380 | 373 |
381 DART_FORCE_INLINE static uword LocalVarAddress(uword fp, intptr_t index) { | 374 DART_FORCE_INLINE static uword LocalVarAddress(uword fp, intptr_t index) { |
382 return fp + LocalVarIndex(0, index) * kWordSize; | 375 return fp + LocalVarIndex(0, index) * kWordSize; |
383 } | 376 } |
384 | 377 |
385 | 378 |
386 } // namespace dart | 379 } // namespace dart |
387 | 380 |
388 #endif // VM_STACK_FRAME_H_ | 381 #endif // VM_STACK_FRAME_H_ |
OLD | NEW |