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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 F(Math_log, 1) \ | 130 F(Math_log, 1) \ |
131 F(Math_pow, 2) \ | 131 F(Math_pow, 2) \ |
132 F(Math_random, 0) \ | 132 F(Math_random, 0) \ |
133 F(Math_round, 1) \ | 133 F(Math_round, 1) \ |
134 F(Math_sin, 1) \ | 134 F(Math_sin, 1) \ |
135 F(Math_sqrt, 1) \ | 135 F(Math_sqrt, 1) \ |
136 F(Math_tan, 1) \ | 136 F(Math_tan, 1) \ |
137 \ | 137 \ |
138 /* Regular expressions */ \ | 138 /* Regular expressions */ \ |
139 F(RegExpCompile, 3) \ | 139 F(RegExpCompile, 3) \ |
140 F(RegExpExec, 4) \ | 140 F(RegExpExec, 3) \ |
141 F(RegExpExecGlobal, 3) \ | 141 F(RegExpExecGlobal, 2) \ |
142 \ | 142 \ |
143 /* Strings */ \ | 143 /* Strings */ \ |
144 F(StringCharCodeAt, 2) \ | 144 F(StringCharCodeAt, 2) \ |
145 F(StringIndexOf, 3) \ | 145 F(StringIndexOf, 3) \ |
146 F(StringLastIndexOf, 3) \ | 146 F(StringLastIndexOf, 3) \ |
147 F(StringLocaleCompare, 2) \ | 147 F(StringLocaleCompare, 2) \ |
148 F(StringSlice, 3) \ | 148 F(StringSlice, 3) \ |
149 \ | 149 \ |
150 /* Numbers */ \ | 150 /* Numbers */ \ |
151 F(NumberToRadixString, 2) \ | 151 F(NumberToRadixString, 2) \ |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 367 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
368 | 368 |
369 // Helper functions used stubs. | 369 // Helper functions used stubs. |
370 static void PerformGC(Object* result); | 370 static void PerformGC(Object* result); |
371 }; | 371 }; |
372 | 372 |
373 | 373 |
374 } } // namespace v8::internal | 374 } } // namespace v8::internal |
375 | 375 |
376 #endif // V8_RUNTIME_H_ | 376 #endif // V8_RUNTIME_H_ |
OLD | NEW |