| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 F(Math_sin, 1, 1) \ | 155 F(Math_sin, 1, 1) \ |
| 156 F(Math_sqrt, 1, 1) \ | 156 F(Math_sqrt, 1, 1) \ |
| 157 F(Math_tan, 1, 1) \ | 157 F(Math_tan, 1, 1) \ |
| 158 \ | 158 \ |
| 159 /* Regular expressions */ \ | 159 /* Regular expressions */ \ |
| 160 F(RegExpCompile, 3, 1) \ | 160 F(RegExpCompile, 3, 1) \ |
| 161 F(RegExpExec, 4, 1) \ | 161 F(RegExpExec, 4, 1) \ |
| 162 F(RegExpExecMultiple, 4, 1) \ | 162 F(RegExpExecMultiple, 4, 1) \ |
| 163 F(RegExpInitializeObject, 5, 1) \ | 163 F(RegExpInitializeObject, 5, 1) \ |
| 164 F(RegExpConstructResult, 3, 1) \ | 164 F(RegExpConstructResult, 3, 1) \ |
| 165 F(RegExpCloneResult, 1, 1) \ |
| 165 \ | 166 \ |
| 166 /* Strings */ \ | 167 /* Strings */ \ |
| 167 F(StringCharCodeAt, 2, 1) \ | 168 F(StringCharCodeAt, 2, 1) \ |
| 168 F(StringIndexOf, 3, 1) \ | 169 F(StringIndexOf, 3, 1) \ |
| 169 F(StringLastIndexOf, 3, 1) \ | 170 F(StringLastIndexOf, 3, 1) \ |
| 170 F(StringLocaleCompare, 2, 1) \ | 171 F(StringLocaleCompare, 2, 1) \ |
| 171 F(SubString, 3, 1) \ | 172 F(SubString, 3, 1) \ |
| 172 F(StringReplaceRegExpWithString, 4, 1) \ | 173 F(StringReplaceRegExpWithString, 4, 1) \ |
| 173 F(StringMatch, 3, 1) \ | 174 F(StringMatch, 3, 1) \ |
| 174 F(StringTrim, 3, 1) \ | 175 F(StringTrim, 3, 1) \ |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 int position); | 453 int position); |
| 453 | 454 |
| 454 // Helper functions used stubs. | 455 // Helper functions used stubs. |
| 455 static void PerformGC(Object* result); | 456 static void PerformGC(Object* result); |
| 456 }; | 457 }; |
| 457 | 458 |
| 458 | 459 |
| 459 } } // namespace v8::internal | 460 } } // namespace v8::internal |
| 460 | 461 |
| 461 #endif // V8_RUNTIME_H_ | 462 #endif // V8_RUNTIME_H_ |
| OLD | NEW |