| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 F(GetArgumentsProperty, 1) \ | 50 F(GetArgumentsProperty, 1) \ |
| 51 \ | 51 \ |
| 52 F(IsInPrototypeChain, 2) \ | 52 F(IsInPrototypeChain, 2) \ |
| 53 \ | 53 \ |
| 54 F(IsConstructCall, 0) \ | 54 F(IsConstructCall, 0) \ |
| 55 \ | 55 \ |
| 56 /* Utilities */ \ | 56 /* Utilities */ \ |
| 57 F(GetCalledFunction, 0) \ | 57 F(GetCalledFunction, 0) \ |
| 58 F(GetFunctionDelegate, 1) \ | 58 F(GetFunctionDelegate, 1) \ |
| 59 F(NewArguments, 1) \ | 59 F(NewArguments, 1) \ |
| 60 F(NewArgumentsFast, 3) \ |
| 60 F(LazyCompile, 1) \ | 61 F(LazyCompile, 1) \ |
| 61 F(SetNewFunctionAttributes, 1) \ | 62 F(SetNewFunctionAttributes, 1) \ |
| 62 \ | 63 \ |
| 63 /* Array join support */ \ | 64 /* Array join support */ \ |
| 64 F(PushIfAbsent, 2) \ | 65 F(PushIfAbsent, 2) \ |
| 65 \ | 66 \ |
| 66 /* ConsStrings */ \ | 67 /* ConsStrings */ \ |
| 67 F(ConsStringFst, 1) \ | 68 F(ConsStringFst, 1) \ |
| 68 F(ConsStringSnd, 1) \ | 69 F(ConsStringSnd, 1) \ |
| 69 \ | 70 \ |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 349 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 349 | 350 |
| 350 // Helper functions used stubs. | 351 // Helper functions used stubs. |
| 351 static void PerformGC(Object* result); | 352 static void PerformGC(Object* result); |
| 352 }; | 353 }; |
| 353 | 354 |
| 354 | 355 |
| 355 } } // namespace v8::internal | 356 } } // namespace v8::internal |
| 356 | 357 |
| 357 #endif // V8_RUNTIME_H_ | 358 #endif // V8_RUNTIME_H_ |
| OLD | NEW |