| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 F(StringToNumber, 1, 1) \ | 113 F(StringToNumber, 1, 1) \ |
| 114 F(StringFromCharCodeArray, 1, 1) \ | 114 F(StringFromCharCodeArray, 1, 1) \ |
| 115 F(StringParseInt, 2, 1) \ | 115 F(StringParseInt, 2, 1) \ |
| 116 F(StringParseFloat, 1, 1) \ | 116 F(StringParseFloat, 1, 1) \ |
| 117 F(StringToLowerCase, 1, 1) \ | 117 F(StringToLowerCase, 1, 1) \ |
| 118 F(StringToUpperCase, 1, 1) \ | 118 F(StringToUpperCase, 1, 1) \ |
| 119 F(StringSplit, 3, 1) \ | 119 F(StringSplit, 3, 1) \ |
| 120 F(CharFromCode, 1, 1) \ | 120 F(CharFromCode, 1, 1) \ |
| 121 F(URIEscape, 1, 1) \ | 121 F(URIEscape, 1, 1) \ |
| 122 F(URIUnescape, 1, 1) \ | 122 F(URIUnescape, 1, 1) \ |
| 123 F(BasicJSONStringify, 1, 1) \ |
| 123 F(QuoteJSONString, 1, 1) \ | 124 F(QuoteJSONString, 1, 1) \ |
| 124 F(QuoteJSONStringComma, 1, 1) \ | 125 F(QuoteJSONStringComma, 1, 1) \ |
| 125 F(QuoteJSONStringArray, 1, 1) \ | 126 F(QuoteJSONStringArray, 1, 1) \ |
| 126 \ | 127 \ |
| 127 F(NumberToString, 1, 1) \ | 128 F(NumberToString, 1, 1) \ |
| 128 F(NumberToStringSkipCache, 1, 1) \ | 129 F(NumberToStringSkipCache, 1, 1) \ |
| 129 F(NumberToInteger, 1, 1) \ | 130 F(NumberToInteger, 1, 1) \ |
| 130 F(NumberToIntegerMapMinusZero, 1, 1) \ | 131 F(NumberToIntegerMapMinusZero, 1, 1) \ |
| 131 F(NumberToJSUint32, 1, 1) \ | 132 F(NumberToJSUint32, 1, 1) \ |
| 132 F(NumberToJSInt32, 1, 1) \ | 133 F(NumberToJSInt32, 1, 1) \ |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 //--------------------------------------------------------------------------- | 704 //--------------------------------------------------------------------------- |
| 704 // Constants used by interface to runtime functions. | 705 // Constants used by interface to runtime functions. |
| 705 | 706 |
| 706 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 707 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 707 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 708 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 708 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 709 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 709 | 710 |
| 710 } } // namespace v8::internal | 711 } } // namespace v8::internal |
| 711 | 712 |
| 712 #endif // V8_RUNTIME_H_ | 713 #endif // V8_RUNTIME_H_ |
| OLD | NEW |