| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 /* Utilities */ \ | 57 /* Utilities */ \ |
| 58 F(GetCalledFunction, 0) \ | 58 F(GetCalledFunction, 0) \ |
| 59 F(GetFunctionDelegate, 1) \ | 59 F(GetFunctionDelegate, 1) \ |
| 60 F(NewArguments, 1) \ | 60 F(NewArguments, 1) \ |
| 61 F(NewArgumentsFast, 3) \ | 61 F(NewArgumentsFast, 3) \ |
| 62 F(LazyCompile, 1) \ | 62 F(LazyCompile, 1) \ |
| 63 F(SetNewFunctionAttributes, 1) \ | 63 F(SetNewFunctionAttributes, 1) \ |
| 64 \ | 64 \ |
| 65 /* Array join support */ \ | 65 /* Array join support */ \ |
| 66 F(PushIfAbsent, 2) \ | 66 F(PushIfAbsent, 2) \ |
| 67 F(ArrayConcat, 1) \ |
| 67 \ | 68 \ |
| 68 /* ConsStrings */ \ | 69 /* ConsStrings */ \ |
| 69 F(ConsStringFst, 1) \ | 70 F(ConsStringFst, 1) \ |
| 70 F(ConsStringSnd, 1) \ | 71 F(ConsStringSnd, 1) \ |
| 71 \ | 72 \ |
| 72 /* Conversions */ \ | 73 /* Conversions */ \ |
| 73 F(ToBool, 1) \ | 74 F(ToBool, 1) \ |
| 74 F(Typeof, 1) \ | 75 F(Typeof, 1) \ |
| 75 \ | 76 \ |
| 76 F(StringToNumber, 1) \ | 77 F(StringToNumber, 1) \ |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 360 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 360 | 361 |
| 361 // Helper functions used stubs. | 362 // Helper functions used stubs. |
| 362 static void PerformGC(Object* result); | 363 static void PerformGC(Object* result); |
| 363 }; | 364 }; |
| 364 | 365 |
| 365 | 366 |
| 366 } } // namespace v8::internal | 367 } } // namespace v8::internal |
| 367 | 368 |
| 368 #endif // V8_RUNTIME_H_ | 369 #endif // V8_RUNTIME_H_ |
| OLD | NEW |