OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 290 |
291 virtual void Iterate(ObjectVisitor* v) const = 0; | 291 virtual void Iterate(ObjectVisitor* v) const = 0; |
292 static void IteratePc(ObjectVisitor* v, Address* pc_address, Code* holder); | 292 static void IteratePc(ObjectVisitor* v, Address* pc_address, Code* holder); |
293 | 293 |
294 // Sets a callback function for return-address rewriting profilers | 294 // Sets a callback function for return-address rewriting profilers |
295 // to resolve the location of a return address to the location of the | 295 // to resolve the location of a return address to the location of the |
296 // profiler's stashed return address. | 296 // profiler's stashed return address. |
297 static void SetReturnAddressLocationResolver( | 297 static void SetReturnAddressLocationResolver( |
298 ReturnAddressLocationResolver resolver); | 298 ReturnAddressLocationResolver resolver); |
299 | 299 |
| 300 // Resolves pc_address through the resolution address function if one is set. |
| 301 static inline Address* ResolveReturnAddressLocation(Address* pc_address); |
| 302 |
| 303 |
300 // Printing support. | 304 // Printing support. |
301 enum PrintMode { OVERVIEW, DETAILS }; | 305 enum PrintMode { OVERVIEW, DETAILS }; |
302 virtual void Print(StringStream* accumulator, | 306 virtual void Print(StringStream* accumulator, |
303 PrintMode mode, | 307 PrintMode mode, |
304 int index) const { } | 308 int index) const { } |
305 | 309 |
306 Isolate* isolate() const { return isolate_; } | 310 Isolate* isolate() const { return isolate_; } |
307 | 311 |
308 protected: | 312 protected: |
309 inline explicit StackFrame(StackFrameIterator* iterator); | 313 inline explicit StackFrame(StackFrameIterator* iterator); |
(...skipping 11 matching lines...) Expand all Loading... |
321 inline StackHandler* top_handler() const; | 325 inline StackHandler* top_handler() const; |
322 | 326 |
323 // Compute the stack frame type for the given state. | 327 // Compute the stack frame type for the given state. |
324 static Type ComputeType(Isolate* isolate, State* state); | 328 static Type ComputeType(Isolate* isolate, State* state); |
325 | 329 |
326 private: | 330 private: |
327 const StackFrameIterator* iterator_; | 331 const StackFrameIterator* iterator_; |
328 Isolate* isolate_; | 332 Isolate* isolate_; |
329 State state_; | 333 State state_; |
330 | 334 |
| 335 static ReturnAddressLocationResolver return_address_location_resolver_; |
| 336 |
331 // Fill in the state of the calling frame. | 337 // Fill in the state of the calling frame. |
332 virtual void ComputeCallerState(State* state) const = 0; | 338 virtual void ComputeCallerState(State* state) const = 0; |
333 | 339 |
334 // Get the type and the state of the calling frame. | 340 // Get the type and the state of the calling frame. |
335 virtual Type GetCallerState(State* state) const; | 341 virtual Type GetCallerState(State* state) const; |
336 | 342 |
337 static const intptr_t kIsolateTag = 1; | 343 static const intptr_t kIsolateTag = 1; |
338 | 344 |
339 friend class StackFrameIterator; | 345 friend class StackFrameIterator; |
340 friend class StackHandlerIterator; | 346 friend class StackHandlerIterator; |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 }; | 1010 }; |
1005 | 1011 |
1006 | 1012 |
1007 // Reads all frames on the current stack and copies them into the current | 1013 // Reads all frames on the current stack and copies them into the current |
1008 // zone memory. | 1014 // zone memory. |
1009 Vector<StackFrame*> CreateStackMap(Isolate* isolate, Zone* zone); | 1015 Vector<StackFrame*> CreateStackMap(Isolate* isolate, Zone* zone); |
1010 | 1016 |
1011 } } // namespace v8::internal | 1017 } } // namespace v8::internal |
1012 | 1018 |
1013 #endif // V8_FRAMES_H_ | 1019 #endif // V8_FRAMES_H_ |
OLD | NEW |