OLD | NEW |
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 Address re_frame); | 115 Address re_frame); |
116 private: | 116 private: |
117 // Offsets from frame_pointer() of function parameters and stored registers. | 117 // Offsets from frame_pointer() of function parameters and stored registers. |
118 static const int kFramePointer = 0; | 118 static const int kFramePointer = 0; |
119 | 119 |
120 // Above the frame pointer - Stored registers and stack passed parameters. | 120 // Above the frame pointer - Stored registers and stack passed parameters. |
121 // Register 4..11. | 121 // Register 4..11. |
122 static const int kStoredRegisters = kFramePointer; | 122 static const int kStoredRegisters = kFramePointer; |
123 // Return address (stored from link register, read into pc on return). | 123 // Return address (stored from link register, read into pc on return). |
124 static const int kReturnAddress = kStoredRegisters + 8 * kPointerSize; | 124 static const int kReturnAddress = kStoredRegisters + 8 * kPointerSize; |
| 125 static const int kSecondaryReturnAddress = kReturnAddress + kPointerSize; |
125 // Stack parameters placed by caller. | 126 // Stack parameters placed by caller. |
126 static const int kRegisterOutput = kReturnAddress + kPointerSize; | 127 static const int kRegisterOutput = kSecondaryReturnAddress + kPointerSize; |
127 static const int kStackHighEnd = kRegisterOutput + kPointerSize; | 128 static const int kStackHighEnd = kRegisterOutput + kPointerSize; |
128 static const int kDirectCall = kStackHighEnd + kPointerSize; | 129 static const int kDirectCall = kStackHighEnd + kPointerSize; |
129 | 130 |
130 // Below the frame pointer. | 131 // Below the frame pointer. |
131 // Register parameters stored by setup code. | 132 // Register parameters stored by setup code. |
132 static const int kInputEnd = kFramePointer - kPointerSize; | 133 static const int kInputEnd = kFramePointer - kPointerSize; |
133 static const int kInputStart = kInputEnd - kPointerSize; | 134 static const int kInputStart = kInputEnd - kPointerSize; |
134 static const int kStartIndex = kInputStart - kPointerSize; | 135 static const int kStartIndex = kInputStart - kPointerSize; |
135 static const int kInputString = kStartIndex - kPointerSize; | 136 static const int kInputString = kStartIndex - kPointerSize; |
136 // When adding local variables remember to push space for them in | 137 // When adding local variables remember to push space for them in |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 Label check_preempt_label_; | 243 Label check_preempt_label_; |
243 Label stack_overflow_label_; | 244 Label stack_overflow_label_; |
244 }; | 245 }; |
245 | 246 |
246 #endif // V8_INTERPRETED_REGEXP | 247 #endif // V8_INTERPRETED_REGEXP |
247 | 248 |
248 | 249 |
249 }} // namespace v8::internal | 250 }} // namespace v8::internal |
250 | 251 |
251 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_ | 252 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |