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

Side by Side Diff: src/arm/frames-arm.h

Issue 6529032: Merge 6168:6800 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 10 months 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/disasm-arm.cc ('k') | src/arm/frames-arm.cc » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 int JSCallerSavedCode(int n); 59 int JSCallerSavedCode(int n);
60 60
61 61
62 // Callee-saved registers preserved when switching from C to JavaScript 62 // Callee-saved registers preserved when switching from C to JavaScript
63 static const RegList kCalleeSaved = 63 static const RegList kCalleeSaved =
64 1 << 4 | // r4 v1 64 1 << 4 | // r4 v1
65 1 << 5 | // r5 v2 65 1 << 5 | // r5 v2
66 1 << 6 | // r6 v3 66 1 << 6 | // r6 v3
67 1 << 7 | // r7 v4 67 1 << 7 | // r7 v4
68 1 << 8 | // r8 v5 (cp in JavaScript code) 68 1 << 8 | // r8 v5 (cp in JavaScript code)
69 kR9Available 69 kR9Available << 9 | // r9 v6
70 << 9 | // r9 v6
71 1 << 10 | // r10 v7 70 1 << 10 | // r10 v7
72 1 << 11; // r11 v8 (fp in JavaScript code) 71 1 << 11; // r11 v8 (fp in JavaScript code)
73 72
74 static const int kNumCalleeSaved = 7 + kR9Available; 73 static const int kNumCalleeSaved = 7 + kR9Available;
75 74
76 75
77 // Number of registers for which space is reserved in safepoints. Must be a 76 // Number of registers for which space is reserved in safepoints. Must be a
78 // multiple of 8. 77 // multiple of 8.
79 // TODO(regis): Only 8 registers may actually be sufficient. Revisit. 78 // TODO(regis): Only 8 registers may actually be sufficient. Revisit.
80 static const int kNumSafepointRegisters = 16; 79 static const int kNumSafepointRegisters = 16;
(...skipping 20 matching lines...) Expand all
101 100
102 101
103 class EntryFrameConstants : public AllStatic { 102 class EntryFrameConstants : public AllStatic {
104 public: 103 public:
105 static const int kCallerFPOffset = -3 * kPointerSize; 104 static const int kCallerFPOffset = -3 * kPointerSize;
106 }; 105 };
107 106
108 107
109 class ExitFrameConstants : public AllStatic { 108 class ExitFrameConstants : public AllStatic {
110 public: 109 public:
111 static const int kCodeOffset = -1 * kPointerSize; 110 static const int kCodeOffset = -2 * kPointerSize;
112 static const int kSPOffset = -1 * kPointerSize; 111 static const int kSPOffset = -1 * kPointerSize;
113 112
114 // TODO(regis): Use a patched sp value on the stack instead.
115 // A marker of 0 indicates that double registers are saved.
116 static const int kMarkerOffset = -2 * kPointerSize;
117
118 // The caller fields are below the frame pointer on the stack. 113 // The caller fields are below the frame pointer on the stack.
119 static const int kCallerFPOffset = +0 * kPointerSize; 114 static const int kCallerFPOffset = 0 * kPointerSize;
120 // The calling JS function is between FP and PC. 115 // The calling JS function is below FP.
121 static const int kCallerPCOffset = +2 * kPointerSize; 116 static const int kCallerPCOffset = 1 * kPointerSize;
122 117
123 // FP-relative displacement of the caller's SP. It points just 118 // FP-relative displacement of the caller's SP. It points just
124 // below the saved PC. 119 // below the saved PC.
125 static const int kCallerSPDisplacement = +3 * kPointerSize; 120 static const int kCallerSPDisplacement = 2 * kPointerSize;
126 }; 121 };
127 122
128 123
129 class StandardFrameConstants : public AllStatic { 124 class StandardFrameConstants : public AllStatic {
130 public: 125 public:
131 static const int kExpressionsOffset = -3 * kPointerSize; 126 static const int kExpressionsOffset = -3 * kPointerSize;
132 static const int kMarkerOffset = -2 * kPointerSize; 127 static const int kMarkerOffset = -2 * kPointerSize;
133 static const int kContextOffset = -1 * kPointerSize; 128 static const int kContextOffset = -1 * kPointerSize;
134 static const int kCallerFPOffset = 0 * kPointerSize; 129 static const int kCallerFPOffset = 0 * kPointerSize;
135 static const int kCallerPCOffset = +1 * kPointerSize; 130 static const int kCallerPCOffset = 1 * kPointerSize;
136 static const int kCallerSPOffset = +2 * kPointerSize; 131 static const int kCallerSPOffset = 2 * kPointerSize;
137 }; 132 };
138 133
139 134
140 class JavaScriptFrameConstants : public AllStatic { 135 class JavaScriptFrameConstants : public AllStatic {
141 public: 136 public:
142 // FP-relative. 137 // FP-relative.
143 static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset; 138 static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset;
144 static const int kSavedRegistersOffset = +2 * kPointerSize; 139 static const int kSavedRegistersOffset = +2 * kPointerSize;
145 static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset; 140 static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset;
146 141
(...skipping 17 matching lines...) Expand all
164 159
165 inline Object* JavaScriptFrame::function_slot_object() const { 160 inline Object* JavaScriptFrame::function_slot_object() const {
166 const int offset = JavaScriptFrameConstants::kFunctionOffset; 161 const int offset = JavaScriptFrameConstants::kFunctionOffset;
167 return Memory::Object_at(fp() + offset); 162 return Memory::Object_at(fp() + offset);
168 } 163 }
169 164
170 165
171 } } // namespace v8::internal 166 } } // namespace v8::internal
172 167
173 #endif // V8_ARM_FRAMES_ARM_H_ 168 #endif // V8_ARM_FRAMES_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/disasm-arm.cc ('k') | src/arm/frames-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698