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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 /* Numbers */ \ | 189 /* Numbers */ \ |
190 F(NumberIsFinite, 1) \ | 190 F(NumberIsFinite, 1) \ |
191 \ | 191 \ |
192 /* Globals */ \ | 192 /* Globals */ \ |
193 F(CompileString, 3) \ | 193 F(CompileString, 3) \ |
194 F(CompileScript, 4) \ | 194 F(CompileScript, 4) \ |
195 F(GlobalPrint, 1) \ | 195 F(GlobalPrint, 1) \ |
196 \ | 196 \ |
197 /* Eval */ \ | 197 /* Eval */ \ |
198 F(EvalReceiver, 1) \ | 198 F(EvalReceiver, 1) \ |
| 199 F(GlobalReceiver, 1) \ |
199 \ | 200 \ |
200 F(SetProperty, -1 /* 3 or 4 */) \ | 201 F(SetProperty, -1 /* 3 or 4 */) \ |
201 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ | 202 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ |
202 \ | 203 \ |
203 /* Arrays */ \ | 204 /* Arrays */ \ |
204 F(RemoveArrayHoles, 1) \ | 205 F(RemoveArrayHoles, 1) \ |
205 F(GetArrayKeys, 2) \ | 206 F(GetArrayKeys, 2) \ |
206 F(MoveArrayContents, 2) \ | 207 F(MoveArrayContents, 2) \ |
207 F(EstimateNumberOfElements, 1) \ | 208 F(EstimateNumberOfElements, 1) \ |
208 \ | 209 \ |
209 /* Getters and Setters */ \ | 210 /* Getters and Setters */ \ |
210 F(DefineAccessor, -1 /* 4 or 5 */) \ | 211 F(DefineAccessor, -1 /* 4 or 5 */) \ |
211 F(LookupAccessor, 3) \ | 212 F(LookupAccessor, 3) \ |
212 \ | 213 \ |
213 /* Debugging */ \ | 214 /* Debugging */ \ |
214 F(AddDebugEventListener, 2) \ | 215 F(AddDebugEventListener, 2) \ |
215 F(RemoveDebugEventListener, 1) \ | 216 F(RemoveDebugEventListener, 1) \ |
216 F(Break, 0) \ | 217 F(Break, 0) \ |
217 F(DebugGetLocalPropertyDetails, 2) \ | 218 F(DebugGetPropertyDetails, 2) \ |
218 F(DebugGetProperty, 2) \ | 219 F(DebugGetProperty, 2) \ |
219 F(DebugLocalPropertyNames, 1) \ | 220 F(DebugLocalPropertyNames, 1) \ |
220 F(DebugLocalElementNames, 1) \ | 221 F(DebugLocalElementNames, 1) \ |
221 F(DebugPropertyTypeFromDetails, 1) \ | 222 F(DebugPropertyTypeFromDetails, 1) \ |
222 F(DebugPropertyAttributesFromDetails, 1) \ | 223 F(DebugPropertyAttributesFromDetails, 1) \ |
223 F(DebugPropertyIndexFromDetails, 1) \ | 224 F(DebugPropertyIndexFromDetails, 1) \ |
224 F(DebugInterceptorInfo, 1) \ | 225 F(DebugInterceptorInfo, 1) \ |
225 F(DebugNamedInterceptorPropertyNames, 1) \ | 226 F(DebugNamedInterceptorPropertyNames, 1) \ |
226 F(DebugIndexedInterceptorElementNames, 1) \ | 227 F(DebugIndexedInterceptorElementNames, 1) \ |
227 F(DebugNamedInterceptorPropertyValue, 2) \ | 228 F(DebugNamedInterceptorPropertyValue, 2) \ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
359 | 360 |
360 // Helper functions used stubs. | 361 // Helper functions used stubs. |
361 static void PerformGC(Object* result); | 362 static void PerformGC(Object* result); |
362 }; | 363 }; |
363 | 364 |
364 | 365 |
365 } } // namespace v8::internal | 366 } } // namespace v8::internal |
366 | 367 |
367 #endif // V8_RUNTIME_H_ | 368 #endif // V8_RUNTIME_H_ |
OLD | NEW |