| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 F(RemoveArrayHoles, 1) \ | 206 F(RemoveArrayHoles, 1) \ |
| 207 F(GetArrayKeys, 2) \ | 207 F(GetArrayKeys, 2) \ |
| 208 F(MoveArrayContents, 2) \ | 208 F(MoveArrayContents, 2) \ |
| 209 F(EstimateNumberOfElements, 1) \ | 209 F(EstimateNumberOfElements, 1) \ |
| 210 \ | 210 \ |
| 211 /* Getters and Setters */ \ | 211 /* Getters and Setters */ \ |
| 212 F(DefineAccessor, -1 /* 4 or 5 */) \ | 212 F(DefineAccessor, -1 /* 4 or 5 */) \ |
| 213 F(LookupAccessor, 3) \ | 213 F(LookupAccessor, 3) \ |
| 214 \ | 214 \ |
| 215 /* Debugging */ \ | 215 /* Debugging */ \ |
| 216 F(AddDebugEventListener, 2) \ | 216 F(SetDebugEventListener, 2) \ |
| 217 F(RemoveDebugEventListener, 1) \ | |
| 218 F(Break, 0) \ | 217 F(Break, 0) \ |
| 219 F(DebugGetPropertyDetails, 2) \ | 218 F(DebugGetPropertyDetails, 2) \ |
| 220 F(DebugGetProperty, 2) \ | 219 F(DebugGetProperty, 2) \ |
| 221 F(DebugLocalPropertyNames, 1) \ | 220 F(DebugLocalPropertyNames, 1) \ |
| 222 F(DebugLocalElementNames, 1) \ | 221 F(DebugLocalElementNames, 1) \ |
| 223 F(DebugPropertyTypeFromDetails, 1) \ | 222 F(DebugPropertyTypeFromDetails, 1) \ |
| 224 F(DebugPropertyAttributesFromDetails, 1) \ | 223 F(DebugPropertyAttributesFromDetails, 1) \ |
| 225 F(DebugPropertyIndexFromDetails, 1) \ | 224 F(DebugPropertyIndexFromDetails, 1) \ |
| 226 F(DebugInterceptorInfo, 1) \ | 225 F(DebugInterceptorInfo, 1) \ |
| 227 F(DebugNamedInterceptorPropertyNames, 1) \ | 226 F(DebugNamedInterceptorPropertyNames, 1) \ |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 365 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 367 | 366 |
| 368 // Helper functions used stubs. | 367 // Helper functions used stubs. |
| 369 static void PerformGC(Object* result); | 368 static void PerformGC(Object* result); |
| 370 }; | 369 }; |
| 371 | 370 |
| 372 | 371 |
| 373 } } // namespace v8::internal | 372 } } // namespace v8::internal |
| 374 | 373 |
| 375 #endif // V8_RUNTIME_H_ | 374 #endif // V8_RUNTIME_H_ |
| OLD | NEW |