| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 \ | 73 \ |
| 74 F(IsExtensible, 1, 1) \ | 74 F(IsExtensible, 1, 1) \ |
| 75 F(PreventExtensions, 1, 1)\ | 75 F(PreventExtensions, 1, 1)\ |
| 76 \ | 76 \ |
| 77 /* Utilities */ \ | 77 /* Utilities */ \ |
| 78 F(GetFunctionDelegate, 1, 1) \ | 78 F(GetFunctionDelegate, 1, 1) \ |
| 79 F(GetConstructorDelegate, 1, 1) \ | 79 F(GetConstructorDelegate, 1, 1) \ |
| 80 F(NewArgumentsFast, 3, 1) \ | 80 F(NewArgumentsFast, 3, 1) \ |
| 81 F(LazyCompile, 1, 1) \ | 81 F(LazyCompile, 1, 1) \ |
| 82 F(SetNewFunctionAttributes, 1, 1) \ | 82 F(SetNewFunctionAttributes, 1, 1) \ |
| 83 F(AllocateInNewSpace, 1, 1) \ |
| 83 \ | 84 \ |
| 84 /* Array join support */ \ | 85 /* Array join support */ \ |
| 85 F(PushIfAbsent, 2, 1) \ | 86 F(PushIfAbsent, 2, 1) \ |
| 86 F(ArrayConcat, 1, 1) \ | 87 F(ArrayConcat, 1, 1) \ |
| 87 \ | 88 \ |
| 88 /* Conversions */ \ | 89 /* Conversions */ \ |
| 89 F(ToBool, 1, 1) \ | 90 F(ToBool, 1, 1) \ |
| 90 F(Typeof, 1, 1) \ | 91 F(Typeof, 1, 1) \ |
| 91 \ | 92 \ |
| 92 F(StringToNumber, 1, 1) \ | 93 F(StringToNumber, 1, 1) \ |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 int position); | 452 int position); |
| 452 | 453 |
| 453 // Helper functions used stubs. | 454 // Helper functions used stubs. |
| 454 static void PerformGC(Object* result); | 455 static void PerformGC(Object* result); |
| 455 }; | 456 }; |
| 456 | 457 |
| 457 | 458 |
| 458 } } // namespace v8::internal | 459 } } // namespace v8::internal |
| 459 | 460 |
| 460 #endif // V8_RUNTIME_H_ | 461 #endif // V8_RUNTIME_H_ |
| OLD | NEW |