| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 F(GetProperty, 2) \ | 42 F(GetProperty, 2) \ |
| 43 F(KeyedGetProperty, 2) \ | 43 F(KeyedGetProperty, 2) \ |
| 44 F(DeleteProperty, 2) \ | 44 F(DeleteProperty, 2) \ |
| 45 F(HasLocalProperty, 2) \ | 45 F(HasLocalProperty, 2) \ |
| 46 F(HasProperty, 2) \ | 46 F(HasProperty, 2) \ |
| 47 F(HasElement, 2) \ | 47 F(HasElement, 2) \ |
| 48 F(IsPropertyEnumerable, 2) \ | 48 F(IsPropertyEnumerable, 2) \ |
| 49 F(GetPropertyNames, 1) \ | 49 F(GetPropertyNames, 1) \ |
| 50 F(GetPropertyNamesFast, 1) \ | 50 F(GetPropertyNamesFast, 1) \ |
| 51 F(GetArgumentsProperty, 1) \ | 51 F(GetArgumentsProperty, 1) \ |
| 52 F(ToFastProperties, 1) \ |
| 53 F(ToSlowProperties, 1) \ |
| 52 \ | 54 \ |
| 53 F(IsInPrototypeChain, 2) \ | 55 F(IsInPrototypeChain, 2) \ |
| 54 \ | 56 \ |
| 55 F(IsConstructCall, 0) \ | 57 F(IsConstructCall, 0) \ |
| 56 \ | 58 \ |
| 57 /* Utilities */ \ | 59 /* Utilities */ \ |
| 58 F(GetCalledFunction, 0) \ | 60 F(GetCalledFunction, 0) \ |
| 59 F(GetFunctionDelegate, 1) \ | 61 F(GetFunctionDelegate, 1) \ |
| 60 F(NewArguments, 1) \ | 62 F(NewArguments, 1) \ |
| 61 F(NewArgumentsFast, 3) \ | 63 F(NewArgumentsFast, 3) \ |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 367 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 366 | 368 |
| 367 // Helper functions used stubs. | 369 // Helper functions used stubs. |
| 368 static void PerformGC(Object* result); | 370 static void PerformGC(Object* result); |
| 369 }; | 371 }; |
| 370 | 372 |
| 371 | 373 |
| 372 } } // namespace v8::internal | 374 } } // namespace v8::internal |
| 373 | 375 |
| 374 #endif // V8_RUNTIME_H_ | 376 #endif // V8_RUNTIME_H_ |
| OLD | NEW |