| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 StackFrame::Type ExitFrame::GetStateForFramePointer(Address fp, State* state) { | 51 StackFrame::Type ExitFrame::GetStateForFramePointer(Address fp, State* state) { |
| 52 if (fp == 0) return NONE; | 52 if (fp == 0) return NONE; |
| 53 // Compute the stack pointer. | 53 // Compute the stack pointer. |
| 54 Address sp = Memory::Address_at(fp + ExitFrameConstants::kSPOffset); | 54 Address sp = Memory::Address_at(fp + ExitFrameConstants::kSPOffset); |
| 55 // Fill in the state. | 55 // Fill in the state. |
| 56 state->fp = fp; | 56 state->fp = fp; |
| 57 state->sp = sp; | 57 state->sp = sp; |
| 58 state->pc_address = reinterpret_cast<Address*>(sp - 1 * kPointerSize); | 58 state->pc_address = reinterpret_cast<Address*>(sp - 1 * kPointerSize); |
| 59 // Determine frame type. | 59 // Determine frame type. |
| 60 return EXIT; | 60 if (Memory::Address_at(fp + ExitFrameConstants::kDebugMarkOffset) != 0) { |
| 61 return EXIT_DEBUG; |
| 62 } else { |
| 63 return EXIT; |
| 64 } |
| 61 } | 65 } |
| 62 | 66 |
| 63 int JavaScriptFrame::GetProvidedParametersCount() const { | 67 int JavaScriptFrame::GetProvidedParametersCount() const { |
| 64 return ComputeParametersCount(); | 68 return ComputeParametersCount(); |
| 65 } | 69 } |
| 66 | 70 |
| 67 | 71 |
| 68 void ExitFrame::Iterate(ObjectVisitor* v) const { | 72 void ExitFrame::Iterate(ObjectVisitor* a) const { |
| 69 v->VisitPointer(&code_slot()); | 73 // Exit frames on X64 do not contain any pointers. The arguments |
| 70 // The arguments are traversed as part of the expression stack of | 74 // are traversed as part of the expression stack of the calling |
| 71 // the calling frame. | 75 // frame. |
| 72 } | 76 } |
| 73 | 77 |
| 74 byte* InternalFrame::GetCallerStackPointer() const { | 78 byte* InternalFrame::GetCallerStackPointer() const { |
| 75 // Internal frames have no arguments. The stack pointer of the | 79 // Internal frames have no arguments. The stack pointer of the |
| 76 // caller is at a fixed offset from the frame pointer. | 80 // caller is at a fixed offset from the frame pointer. |
| 77 return fp() + StandardFrameConstants::kCallerSPOffset; | 81 return fp() + StandardFrameConstants::kCallerSPOffset; |
| 78 } | 82 } |
| 79 | 83 |
| 80 byte* JavaScriptFrame::GetCallerStackPointer() const { | 84 byte* JavaScriptFrame::GetCallerStackPointer() const { |
| 81 int arguments; | 85 int arguments; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 100 | 104 |
| 101 | 105 |
| 102 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const { | 106 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const { |
| 103 const int arguments = Smi::cast(GetExpression(0))->value(); | 107 const int arguments = Smi::cast(GetExpression(0))->value(); |
| 104 const int offset = StandardFrameConstants::kCallerSPOffset; | 108 const int offset = StandardFrameConstants::kCallerSPOffset; |
| 105 return fp() + offset + (arguments + 1) * kPointerSize; | 109 return fp() + offset + (arguments + 1) * kPointerSize; |
| 106 } | 110 } |
| 107 | 111 |
| 108 | 112 |
| 109 } } // namespace v8::internal | 113 } } // namespace v8::internal |
| OLD | NEW |