Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/x64/frames-x64.cc

Issue 341082: Reverting 3174. Aka reapplying 3150, 3151 and 3159. Aka api accessor (Closed)
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x64/frames-x64.h ('k') | src/x64/macro-assembler-x64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 if (Memory::Address_at(fp + ExitFrameConstants::kDebugMarkOffset) != 0) { 60 return EXIT;
61 return EXIT_DEBUG;
62 } else {
63 return EXIT;
64 }
65 } 61 }
66 62
67 int JavaScriptFrame::GetProvidedParametersCount() const { 63 int JavaScriptFrame::GetProvidedParametersCount() const {
68 return ComputeParametersCount(); 64 return ComputeParametersCount();
69 } 65 }
70 66
71 67
72 void ExitFrame::Iterate(ObjectVisitor* a) const { 68 void ExitFrame::Iterate(ObjectVisitor* v) const {
73 // Exit frames on X64 do not contain any pointers. The arguments 69 v->VisitPointer(&code_slot());
74 // are traversed as part of the expression stack of the calling 70 // The arguments are traversed as part of the expression stack of
75 // frame. 71 // the calling frame.
76 } 72 }
77 73
78 byte* InternalFrame::GetCallerStackPointer() const { 74 byte* InternalFrame::GetCallerStackPointer() const {
79 // Internal frames have no arguments. The stack pointer of the 75 // Internal frames have no arguments. The stack pointer of the
80 // caller is at a fixed offset from the frame pointer. 76 // caller is at a fixed offset from the frame pointer.
81 return fp() + StandardFrameConstants::kCallerSPOffset; 77 return fp() + StandardFrameConstants::kCallerSPOffset;
82 } 78 }
83 79
84 byte* JavaScriptFrame::GetCallerStackPointer() const { 80 byte* JavaScriptFrame::GetCallerStackPointer() const {
85 int arguments; 81 int arguments;
(...skipping 18 matching lines...) Expand all
104 100
105 101
106 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const { 102 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const {
107 const int arguments = Smi::cast(GetExpression(0))->value(); 103 const int arguments = Smi::cast(GetExpression(0))->value();
108 const int offset = StandardFrameConstants::kCallerSPOffset; 104 const int offset = StandardFrameConstants::kCallerSPOffset;
109 return fp() + offset + (arguments + 1) * kPointerSize; 105 return fp() + offset + (arguments + 1) * kPointerSize;
110 } 106 }
111 107
112 108
113 } } // namespace v8::internal 109 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/x64/frames-x64.h ('k') | src/x64/macro-assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698