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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 \ | 208 \ |
209 /* Globals */ \ | 209 /* Globals */ \ |
210 F(CompileString, 2, 1) \ | 210 F(CompileString, 2, 1) \ |
211 F(GlobalPrint, 1, 1) \ | 211 F(GlobalPrint, 1, 1) \ |
212 \ | 212 \ |
213 /* Eval */ \ | 213 /* Eval */ \ |
214 F(GlobalReceiver, 1, 1) \ | 214 F(GlobalReceiver, 1, 1) \ |
215 F(ResolvePossiblyDirectEval, 3, 2) \ | 215 F(ResolvePossiblyDirectEval, 3, 2) \ |
216 \ | 216 \ |
217 F(SetProperty, -1 /* 3 or 4 */, 1) \ | 217 F(SetProperty, -1 /* 3 or 4 */, 1) \ |
| 218 F(DefineOrRedefineDataProperty, 4, 1) \ |
| 219 F(DefineOrRedefineAccessorProperty, 5, 1) \ |
218 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ | 220 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ |
219 \ | 221 \ |
220 /* Arrays */ \ | 222 /* Arrays */ \ |
221 F(RemoveArrayHoles, 2, 1) \ | 223 F(RemoveArrayHoles, 2, 1) \ |
222 F(GetArrayKeys, 2, 1) \ | 224 F(GetArrayKeys, 2, 1) \ |
223 F(MoveArrayContents, 2, 1) \ | 225 F(MoveArrayContents, 2, 1) \ |
224 F(EstimateNumberOfElements, 1, 1) \ | 226 F(EstimateNumberOfElements, 1, 1) \ |
225 \ | 227 \ |
226 /* Getters and Setters */ \ | 228 /* Getters and Setters */ \ |
227 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ | 229 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 int position); | 424 int position); |
423 | 425 |
424 // Helper functions used stubs. | 426 // Helper functions used stubs. |
425 static void PerformGC(Object* result); | 427 static void PerformGC(Object* result); |
426 }; | 428 }; |
427 | 429 |
428 | 430 |
429 } } // namespace v8::internal | 431 } } // namespace v8::internal |
430 | 432 |
431 #endif // V8_RUNTIME_H_ | 433 #endif // V8_RUNTIME_H_ |
OLD | NEW |