| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 F(StringToLowerCase, 1) \ | 81 F(StringToLowerCase, 1) \ |
| 82 F(StringToUpperCase, 1) \ | 82 F(StringToUpperCase, 1) \ |
| 83 F(CharFromCode, 1) \ | 83 F(CharFromCode, 1) \ |
| 84 F(URIEscape, 1) \ | 84 F(URIEscape, 1) \ |
| 85 F(URIUnescape, 1) \ | 85 F(URIUnescape, 1) \ |
| 86 \ | 86 \ |
| 87 F(NumberToString, 1) \ | 87 F(NumberToString, 1) \ |
| 88 F(NumberToInteger, 1) \ | 88 F(NumberToInteger, 1) \ |
| 89 F(NumberToJSUint32, 1) \ | 89 F(NumberToJSUint32, 1) \ |
| 90 F(NumberToJSInt32, 1) \ | 90 F(NumberToJSInt32, 1) \ |
| 91 F(NumberToSmi, 1) \ |
| 91 \ | 92 \ |
| 92 /* Arithmetic operations */ \ | 93 /* Arithmetic operations */ \ |
| 93 F(NumberAdd, 2) \ | 94 F(NumberAdd, 2) \ |
| 94 F(NumberSub, 2) \ | 95 F(NumberSub, 2) \ |
| 95 F(NumberMul, 2) \ | 96 F(NumberMul, 2) \ |
| 96 F(NumberDiv, 2) \ | 97 F(NumberDiv, 2) \ |
| 97 F(NumberMod, 2) \ | 98 F(NumberMod, 2) \ |
| 98 F(NumberUnaryMinus, 1) \ | 99 F(NumberUnaryMinus, 1) \ |
| 99 \ | 100 \ |
| 100 F(StringAdd, 2) \ | 101 F(StringAdd, 2) \ |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 363 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 363 | 364 |
| 364 // Helper functions used stubs. | 365 // Helper functions used stubs. |
| 365 static void PerformGC(Object* result); | 366 static void PerformGC(Object* result); |
| 366 }; | 367 }; |
| 367 | 368 |
| 368 | 369 |
| 369 } } // namespace v8::internal | 370 } } // namespace v8::internal |
| 370 | 371 |
| 371 #endif // V8_RUNTIME_H_ | 372 #endif // V8_RUNTIME_H_ |
| OLD | NEW |