| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 F(ToSlowProperties, 1) \ | 56 F(ToSlowProperties, 1) \ |
| 57 \ | 57 \ |
| 58 F(IsInPrototypeChain, 2) \ | 58 F(IsInPrototypeChain, 2) \ |
| 59 F(SetHiddenPrototype, 2) \ | 59 F(SetHiddenPrototype, 2) \ |
| 60 \ | 60 \ |
| 61 F(IsConstructCall, 0) \ | 61 F(IsConstructCall, 0) \ |
| 62 \ | 62 \ |
| 63 /* Utilities */ \ | 63 /* Utilities */ \ |
| 64 F(GetCalledFunction, 0) \ | 64 F(GetCalledFunction, 0) \ |
| 65 F(GetFunctionDelegate, 1) \ | 65 F(GetFunctionDelegate, 1) \ |
| 66 F(GetConstructorDelegate, 1) \ |
| 66 F(NewArguments, 1) \ | 67 F(NewArguments, 1) \ |
| 67 F(NewArgumentsFast, 3) \ | 68 F(NewArgumentsFast, 3) \ |
| 68 F(LazyCompile, 1) \ | 69 F(LazyCompile, 1) \ |
| 69 F(SetNewFunctionAttributes, 1) \ | 70 F(SetNewFunctionAttributes, 1) \ |
| 70 \ | 71 \ |
| 71 /* Array join support */ \ | 72 /* Array join support */ \ |
| 72 F(PushIfAbsent, 2) \ | 73 F(PushIfAbsent, 2) \ |
| 73 F(ArrayConcat, 1) \ | 74 F(ArrayConcat, 1) \ |
| 74 \ | 75 \ |
| 75 /* Conversions */ \ | 76 /* Conversions */ \ |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 int position); | 393 int position); |
| 393 | 394 |
| 394 // Helper functions used stubs. | 395 // Helper functions used stubs. |
| 395 static void PerformGC(Object* result); | 396 static void PerformGC(Object* result); |
| 396 }; | 397 }; |
| 397 | 398 |
| 398 | 399 |
| 399 } } // namespace v8::internal | 400 } } // namespace v8::internal |
| 400 | 401 |
| 401 #endif // V8_RUNTIME_H_ | 402 #endif // V8_RUNTIME_H_ |
| OLD | NEW |