blob: 2c838938b71a50607a3d1de8ea05fa17bf93df9d [file] [log] [blame]
Steve Block44f0eee2011-05-26 01:26:41 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Andrei Popescu31002712010-02-23 13:46:05 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29
30#ifndef V8_MIPS_FRAMES_MIPS_H_
31#define V8_MIPS_FRAMES_MIPS_H_
32
Andrei Popescu31002712010-02-23 13:46:05 +000033namespace v8 {
34namespace internal {
35
36// Register lists.
37// Note that the bit values must match those used in actual instruction
38// encoding.
39static const int kNumRegs = 32;
40
41static const RegList kJSCallerSaved =
Ben Murdoch589d6972011-11-30 16:04:58 +000042 1 << 2 | // v0
43 1 << 3 | // v1
44 1 << 4 | // a0
45 1 << 5 | // a1
46 1 << 6 | // a2
47 1 << 7 | // a3
48 1 << 8 | // t0
49 1 << 9 | // t1
50 1 << 10 | // t2
51 1 << 11 | // t3
52 1 << 12 | // t4
53 1 << 13 | // t5
54 1 << 14 | // t6
55 1 << 15; // t7
Andrei Popescu31002712010-02-23 13:46:05 +000056
Ben Murdoch589d6972011-11-30 16:04:58 +000057static const int kNumJSCallerSaved = 14;
Andrei Popescu31002712010-02-23 13:46:05 +000058
59
60// Return the code of the n-th caller-saved register available to JavaScript
Steve Block44f0eee2011-05-26 01:26:41 +010061// e.g. JSCallerSavedReg(0) returns a0.code() == 4.
Andrei Popescu31002712010-02-23 13:46:05 +000062int JSCallerSavedCode(int n);
63
64
65// Callee-saved registers preserved when switching from C to JavaScript.
66static const RegList kCalleeSaved =
Ben Murdoch589d6972011-11-30 16:04:58 +000067 1 << 16 | // s0
68 1 << 17 | // s1
69 1 << 18 | // s2
70 1 << 19 | // s3
71 1 << 20 | // s4
72 1 << 21 | // s5
73 1 << 22 | // s6 (roots in Javascript code)
74 1 << 23 | // s7 (cp in Javascript code)
75 1 << 30; // fp/s8
Andrei Popescu31002712010-02-23 13:46:05 +000076
Ben Murdoch69a99ed2011-11-30 16:03:39 +000077static const int kNumCalleeSaved = 9;
Andrei Popescu31002712010-02-23 13:46:05 +000078
Ben Murdoch589d6972011-11-30 16:04:58 +000079static const RegList kCalleeSavedFPU =
80 1 << 20 | // f20
81 1 << 22 | // f22
82 1 << 24 | // f24
83 1 << 26 | // f26
84 1 << 28 | // f28
85 1 << 30; // f30
Andrei Popescu31002712010-02-23 13:46:05 +000086
Ben Murdoch589d6972011-11-30 16:04:58 +000087static const int kNumCalleeSavedFPU = 6;
Steve Block44f0eee2011-05-26 01:26:41 +010088// Number of registers for which space is reserved in safepoints. Must be a
89// multiple of 8.
Ben Murdoch589d6972011-11-30 16:04:58 +000090static const int kNumSafepointRegisters = 24;
Steve Block44f0eee2011-05-26 01:26:41 +010091
92// Define the list of registers actually saved at safepoints.
93// Note that the number of saved registers may be smaller than the reserved
94// space, i.e. kNumSafepointSavedRegisters <= kNumSafepointRegisters.
95static const RegList kSafepointSavedRegisters = kJSCallerSaved | kCalleeSaved;
96static const int kNumSafepointSavedRegisters =
97 kNumJSCallerSaved + kNumCalleeSaved;
98
Andrei Popescu31002712010-02-23 13:46:05 +000099typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved];
100
Ben Murdoch257744e2011-11-30 15:57:28 +0000101static const int kUndefIndex = -1;
102// Map with indexes on stack that corresponds to codes of saved registers.
103static const int kSafepointRegisterStackIndexMap[kNumRegs] = {
Ben Murdoch589d6972011-11-30 16:04:58 +0000104 kUndefIndex, // zero_reg
105 kUndefIndex, // at
106 0, // v0
107 1, // v1
108 2, // a0
109 3, // a1
110 4, // a2
111 5, // a3
112 6, // t0
113 7, // t1
114 8, // t2
115 9, // t3
116 10, // t4
117 11, // t5
118 12, // t6
119 13, // t7
120 14, // s0
121 15, // s1
122 16, // s2
123 17, // s3
124 18, // s4
125 19, // s5
126 20, // s6
127 21, // s7
128 kUndefIndex, // t8
129 kUndefIndex, // t9
130 kUndefIndex, // k0
131 kUndefIndex, // k1
132 kUndefIndex, // gp
133 kUndefIndex, // sp
134 22, // fp
Ben Murdoch257744e2011-11-30 15:57:28 +0000135 kUndefIndex
136};
137
Andrei Popescu31002712010-02-23 13:46:05 +0000138
139// ----------------------------------------------------
140
141class StackHandlerConstants : public AllStatic {
142 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000143 static const int kNextOffset = 0 * kPointerSize;
144 static const int kStateOffset = 1 * kPointerSize;
145 static const int kContextOffset = 2 * kPointerSize;
146 static const int kFPOffset = 3 * kPointerSize;
147 static const int kPCOffset = 4 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000148
149 static const int kSize = kPCOffset + kPointerSize;
150};
151
152
153class EntryFrameConstants : public AllStatic {
154 public:
155 static const int kCallerFPOffset = -3 * kPointerSize;
156};
157
158
159class ExitFrameConstants : public AllStatic {
160 public:
Ben Murdoch257744e2011-11-30 15:57:28 +0000161 // See some explanation in MacroAssembler::EnterExitFrame.
162 // This marks the top of the extra allocated stack space.
163 static const int kStackSpaceOffset = -3 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000164
Ben Murdoch257744e2011-11-30 15:57:28 +0000165 static const int kCodeOffset = -2 * kPointerSize;
166
167 static const int kSPOffset = -1 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000168
169 // The caller fields are below the frame pointer on the stack.
170 static const int kCallerFPOffset = +0 * kPointerSize;
171 // The calling JS function is between FP and PC.
172 static const int kCallerPCOffset = +1 * kPointerSize;
173
Ben Murdoch257744e2011-11-30 15:57:28 +0000174 // MIPS-specific: a pointer to the old sp to avoid unnecessary calculations.
175 static const int kCallerSPOffset = +2 * kPointerSize;
176
Andrei Popescu31002712010-02-23 13:46:05 +0000177 // FP-relative displacement of the caller's SP.
Ben Murdoch257744e2011-11-30 15:57:28 +0000178 static const int kCallerSPDisplacement = +2 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000179};
180
181
182class StandardFrameConstants : public AllStatic {
183 public:
184 static const int kExpressionsOffset = -3 * kPointerSize;
185 static const int kMarkerOffset = -2 * kPointerSize;
186 static const int kContextOffset = -1 * kPointerSize;
187 static const int kCallerFPOffset = 0 * kPointerSize;
188 static const int kCallerPCOffset = +1 * kPointerSize;
189 static const int kCallerSPOffset = +2 * kPointerSize;
190
191 // Size of the MIPS 4 32-bit argument slots.
192 // This is just an alias with a shorter name. Use it from now on.
193 static const int kRArgsSlotsSize = 4 * kPointerSize;
194 static const int kRegularArgsSlotsSize = kRArgsSlotsSize;
195
Andrei Popescu31002712010-02-23 13:46:05 +0000196 // JS argument slots size.
197 static const int kJSArgsSlotsSize = 0 * kPointerSize;
Steve Block44f0eee2011-05-26 01:26:41 +0100198 // Assembly builtins argument slots size.
199 static const int kBArgsSlotsSize = 0 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000200};
201
202
203class JavaScriptFrameConstants : public AllStatic {
204 public:
205 // FP-relative.
206 static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset;
Ben Murdoch8b112d22011-06-08 16:22:53 +0100207 static const int kLastParameterOffset = +2 * kPointerSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000208 static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset;
209
210 // Caller SP-relative.
211 static const int kParam0Offset = -2 * kPointerSize;
212 static const int kReceiverOffset = -1 * kPointerSize;
213};
214
215
216class ArgumentsAdaptorFrameConstants : public AllStatic {
217 public:
218 static const int kLengthOffset = StandardFrameConstants::kExpressionsOffset;
219};
220
221
222class InternalFrameConstants : public AllStatic {
223 public:
224 static const int kCodeOffset = StandardFrameConstants::kExpressionsOffset;
225};
226
227
228inline Object* JavaScriptFrame::function_slot_object() const {
229 const int offset = JavaScriptFrameConstants::kFunctionOffset;
230 return Memory::Object_at(fp() + offset);
231}
232
Steve Block44f0eee2011-05-26 01:26:41 +0100233
Andrei Popescu31002712010-02-23 13:46:05 +0000234} } // namespace v8::internal
235
236#endif