Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 1 | // Copyright 2011 the V8 project authors. All rights reserved. |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 2 | // 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 Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 33 | namespace v8 { |
| 34 | namespace internal { |
| 35 | |
| 36 | // Register lists. |
| 37 | // Note that the bit values must match those used in actual instruction |
| 38 | // encoding. |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 39 | const int kNumRegs = 32; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 40 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 41 | const RegList kJSCallerSaved = |
Ben Murdoch | 589d697 | 2011-11-30 16:04:58 +0000 | [diff] [blame] | 42 | 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 Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 56 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 57 | const int kNumJSCallerSaved = 14; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 58 | |
| 59 | |
| 60 | // Return the code of the n-th caller-saved register available to JavaScript |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 61 | // e.g. JSCallerSavedReg(0) returns a0.code() == 4. |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 62 | int JSCallerSavedCode(int n); |
| 63 | |
| 64 | |
| 65 | // Callee-saved registers preserved when switching from C to JavaScript. |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 66 | const RegList kCalleeSaved = |
Ben Murdoch | 589d697 | 2011-11-30 16:04:58 +0000 | [diff] [blame] | 67 | 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 Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 76 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 77 | const int kNumCalleeSaved = 9; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 78 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 79 | const RegList kCalleeSavedFPU = |
Ben Murdoch | 589d697 | 2011-11-30 16:04:58 +0000 | [diff] [blame] | 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 Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 86 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 87 | const int kNumCalleeSavedFPU = 6; |
| 88 | |
| 89 | const RegList kCallerSavedFPU = |
| 90 | 1 << 0 | // f0 |
| 91 | 1 << 2 | // f2 |
| 92 | 1 << 4 | // f4 |
| 93 | 1 << 6 | // f6 |
| 94 | 1 << 8 | // f8 |
| 95 | 1 << 10 | // f10 |
| 96 | 1 << 12 | // f12 |
| 97 | 1 << 14 | // f14 |
| 98 | 1 << 16 | // f16 |
| 99 | 1 << 18; // f18 |
| 100 | |
| 101 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 102 | // Number of registers for which space is reserved in safepoints. Must be a |
| 103 | // multiple of 8. |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 104 | const int kNumSafepointRegisters = 24; |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 105 | |
| 106 | // Define the list of registers actually saved at safepoints. |
| 107 | // Note that the number of saved registers may be smaller than the reserved |
| 108 | // space, i.e. kNumSafepointSavedRegisters <= kNumSafepointRegisters. |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 109 | const RegList kSafepointSavedRegisters = kJSCallerSaved | kCalleeSaved; |
| 110 | const int kNumSafepointSavedRegisters = |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 111 | kNumJSCallerSaved + kNumCalleeSaved; |
| 112 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 113 | typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved]; |
| 114 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 115 | const int kUndefIndex = -1; |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 116 | // Map with indexes on stack that corresponds to codes of saved registers. |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 117 | const int kSafepointRegisterStackIndexMap[kNumRegs] = { |
Ben Murdoch | 589d697 | 2011-11-30 16:04:58 +0000 | [diff] [blame] | 118 | kUndefIndex, // zero_reg |
| 119 | kUndefIndex, // at |
| 120 | 0, // v0 |
| 121 | 1, // v1 |
| 122 | 2, // a0 |
| 123 | 3, // a1 |
| 124 | 4, // a2 |
| 125 | 5, // a3 |
| 126 | 6, // t0 |
| 127 | 7, // t1 |
| 128 | 8, // t2 |
| 129 | 9, // t3 |
| 130 | 10, // t4 |
| 131 | 11, // t5 |
| 132 | 12, // t6 |
| 133 | 13, // t7 |
| 134 | 14, // s0 |
| 135 | 15, // s1 |
| 136 | 16, // s2 |
| 137 | 17, // s3 |
| 138 | 18, // s4 |
| 139 | 19, // s5 |
| 140 | 20, // s6 |
| 141 | 21, // s7 |
| 142 | kUndefIndex, // t8 |
| 143 | kUndefIndex, // t9 |
| 144 | kUndefIndex, // k0 |
| 145 | kUndefIndex, // k1 |
| 146 | kUndefIndex, // gp |
| 147 | kUndefIndex, // sp |
| 148 | 22, // fp |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 149 | kUndefIndex |
| 150 | }; |
| 151 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 152 | |
| 153 | // ---------------------------------------------------- |
| 154 | |
| 155 | class StackHandlerConstants : public AllStatic { |
| 156 | public: |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 157 | static const int kNextOffset = 0 * kPointerSize; |
| 158 | static const int kCodeOffset = 1 * kPointerSize; |
| 159 | static const int kStateOffset = 2 * kPointerSize; |
| 160 | static const int kContextOffset = 3 * kPointerSize; |
| 161 | static const int kFPOffset = 4 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 162 | |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 163 | static const int kSize = kFPOffset + kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | |
| 167 | class EntryFrameConstants : public AllStatic { |
| 168 | public: |
| 169 | static const int kCallerFPOffset = -3 * kPointerSize; |
| 170 | }; |
| 171 | |
| 172 | |
| 173 | class ExitFrameConstants : public AllStatic { |
| 174 | public: |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 175 | // See some explanation in MacroAssembler::EnterExitFrame. |
| 176 | // This marks the top of the extra allocated stack space. |
| 177 | static const int kStackSpaceOffset = -3 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 178 | |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 179 | static const int kCodeOffset = -2 * kPointerSize; |
| 180 | |
| 181 | static const int kSPOffset = -1 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 182 | |
| 183 | // The caller fields are below the frame pointer on the stack. |
| 184 | static const int kCallerFPOffset = +0 * kPointerSize; |
| 185 | // The calling JS function is between FP and PC. |
| 186 | static const int kCallerPCOffset = +1 * kPointerSize; |
| 187 | |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 188 | // MIPS-specific: a pointer to the old sp to avoid unnecessary calculations. |
| 189 | static const int kCallerSPOffset = +2 * kPointerSize; |
| 190 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 191 | // FP-relative displacement of the caller's SP. |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 192 | static const int kCallerSPDisplacement = +2 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | |
| 196 | class StandardFrameConstants : public AllStatic { |
| 197 | public: |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 198 | // Fixed part of the frame consists of return address, caller fp, |
| 199 | // context and function. |
| 200 | static const int kFixedFrameSize = 4 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 201 | static const int kExpressionsOffset = -3 * kPointerSize; |
| 202 | static const int kMarkerOffset = -2 * kPointerSize; |
| 203 | static const int kContextOffset = -1 * kPointerSize; |
| 204 | static const int kCallerFPOffset = 0 * kPointerSize; |
| 205 | static const int kCallerPCOffset = +1 * kPointerSize; |
| 206 | static const int kCallerSPOffset = +2 * kPointerSize; |
| 207 | |
| 208 | // Size of the MIPS 4 32-bit argument slots. |
| 209 | // This is just an alias with a shorter name. Use it from now on. |
| 210 | static const int kRArgsSlotsSize = 4 * kPointerSize; |
| 211 | static const int kRegularArgsSlotsSize = kRArgsSlotsSize; |
| 212 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 213 | // JS argument slots size. |
| 214 | static const int kJSArgsSlotsSize = 0 * kPointerSize; |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 215 | // Assembly builtins argument slots size. |
| 216 | static const int kBArgsSlotsSize = 0 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | |
| 220 | class JavaScriptFrameConstants : public AllStatic { |
| 221 | public: |
| 222 | // FP-relative. |
| 223 | static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset; |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 224 | static const int kLastParameterOffset = +2 * kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 225 | static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset; |
| 226 | |
| 227 | // Caller SP-relative. |
| 228 | static const int kParam0Offset = -2 * kPointerSize; |
| 229 | static const int kReceiverOffset = -1 * kPointerSize; |
| 230 | }; |
| 231 | |
| 232 | |
| 233 | class ArgumentsAdaptorFrameConstants : public AllStatic { |
| 234 | public: |
| 235 | static const int kLengthOffset = StandardFrameConstants::kExpressionsOffset; |
Ben Murdoch | 3ef787d | 2012-04-12 10:51:47 +0100 | [diff] [blame^] | 236 | static const int kFrameSize = |
| 237 | StandardFrameConstants::kFixedFrameSize + kPointerSize; |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | |
| 241 | class InternalFrameConstants : public AllStatic { |
| 242 | public: |
| 243 | static const int kCodeOffset = StandardFrameConstants::kExpressionsOffset; |
| 244 | }; |
| 245 | |
| 246 | |
| 247 | inline Object* JavaScriptFrame::function_slot_object() const { |
| 248 | const int offset = JavaScriptFrameConstants::kFunctionOffset; |
| 249 | return Memory::Object_at(fp() + offset); |
| 250 | } |
| 251 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 252 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 253 | } } // namespace v8::internal |
| 254 | |
| 255 | #endif |