| Index: src/frames.h
|
| ===================================================================
|
| --- src/frames.h (revision 6800)
|
| +++ src/frames.h (working copy)
|
| @@ -28,6 +28,8 @@
|
| #ifndef V8_FRAMES_H_
|
| #define V8_FRAMES_H_
|
|
|
| +#include "safepoint-table.h"
|
| +
|
| namespace v8 {
|
| namespace internal {
|
|
|
| @@ -51,7 +53,7 @@
|
| struct PcToCodeCacheEntry {
|
| Address pc;
|
| Code* code;
|
| - uint8_t* safepoint_entry;
|
| + SafepointEntry safepoint_entry;
|
| };
|
|
|
| static PcToCodeCacheEntry* cache(int index) {
|
| @@ -208,7 +210,7 @@
|
| // safepoint entry and the number of stack slots. The pc must be at
|
| // a safepoint.
|
| static Code* GetSafepointData(Address pc,
|
| - uint8_t** safepoint_entry,
|
| + SafepointEntry* safepoint_entry,
|
| unsigned* stack_slots);
|
|
|
| virtual void Iterate(ObjectVisitor* v) const = 0;
|
|
|