OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 F(StringParseInt, 2, 1) \ | 107 F(StringParseInt, 2, 1) \ |
108 F(StringParseFloat, 1, 1) \ | 108 F(StringParseFloat, 1, 1) \ |
109 F(StringToLowerCase, 1, 1) \ | 109 F(StringToLowerCase, 1, 1) \ |
110 F(StringToUpperCase, 1, 1) \ | 110 F(StringToUpperCase, 1, 1) \ |
111 F(StringSplit, 3, 1) \ | 111 F(StringSplit, 3, 1) \ |
112 F(CharFromCode, 1, 1) \ | 112 F(CharFromCode, 1, 1) \ |
113 F(URIEscape, 1, 1) \ | 113 F(URIEscape, 1, 1) \ |
114 F(URIUnescape, 1, 1) \ | 114 F(URIUnescape, 1, 1) \ |
115 F(QuoteJSONString, 1, 1) \ | 115 F(QuoteJSONString, 1, 1) \ |
116 F(QuoteJSONStringComma, 1, 1) \ | 116 F(QuoteJSONStringComma, 1, 1) \ |
| 117 F(QuoteJSONStringArray, 1, 1) \ |
117 \ | 118 \ |
118 F(NumberToString, 1, 1) \ | 119 F(NumberToString, 1, 1) \ |
119 F(NumberToStringSkipCache, 1, 1) \ | 120 F(NumberToStringSkipCache, 1, 1) \ |
120 F(NumberToInteger, 1, 1) \ | 121 F(NumberToInteger, 1, 1) \ |
121 F(NumberToIntegerMapMinusZero, 1, 1) \ | 122 F(NumberToIntegerMapMinusZero, 1, 1) \ |
122 F(NumberToJSUint32, 1, 1) \ | 123 F(NumberToJSUint32, 1, 1) \ |
123 F(NumberToJSInt32, 1, 1) \ | 124 F(NumberToJSInt32, 1, 1) \ |
124 F(NumberToSmi, 1, 1) \ | 125 F(NumberToSmi, 1, 1) \ |
125 F(AllocateHeapNumber, 0, 1) \ | 126 F(AllocateHeapNumber, 0, 1) \ |
126 \ | 127 \ |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 Handle<Script> script, | 644 Handle<Script> script, |
644 int position); | 645 int position); |
645 | 646 |
646 // Helper functions used stubs. | 647 // Helper functions used stubs. |
647 static void PerformGC(Object* result); | 648 static void PerformGC(Object* result); |
648 }; | 649 }; |
649 | 650 |
650 } } // namespace v8::internal | 651 } } // namespace v8::internal |
651 | 652 |
652 #endif // V8_RUNTIME_H_ | 653 #endif // V8_RUNTIME_H_ |
OLD | NEW |