| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 F(MoveArrayContents, 2, 1) \ | 227 F(MoveArrayContents, 2, 1) \ |
| 228 F(EstimateNumberOfElements, 1, 1) \ | 228 F(EstimateNumberOfElements, 1, 1) \ |
| 229 \ | 229 \ |
| 230 /* Getters and Setters */ \ | 230 /* Getters and Setters */ \ |
| 231 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ | 231 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ |
| 232 F(LookupAccessor, 3, 1) \ | 232 F(LookupAccessor, 3, 1) \ |
| 233 \ | 233 \ |
| 234 /* Literals */ \ | 234 /* Literals */ \ |
| 235 F(MaterializeRegExpLiteral, 4, 1)\ | 235 F(MaterializeRegExpLiteral, 4, 1)\ |
| 236 F(CreateArrayLiteralBoilerplate, 3, 1) \ | 236 F(CreateArrayLiteralBoilerplate, 3, 1) \ |
| 237 F(CreateObjectLiteralBoilerplate, 3, 1) \ | |
| 238 F(CloneLiteralBoilerplate, 1, 1) \ | 237 F(CloneLiteralBoilerplate, 1, 1) \ |
| 239 F(CloneShallowLiteralBoilerplate, 1, 1) \ | 238 F(CloneShallowLiteralBoilerplate, 1, 1) \ |
| 240 F(CreateObjectLiteral, 3, 1) \ | 239 F(CreateObjectLiteral, 4, 1) \ |
| 241 F(CreateObjectLiteralShallow, 3, 1) \ | 240 F(CreateObjectLiteralShallow, 4, 1) \ |
| 242 F(CreateArrayLiteral, 3, 1) \ | 241 F(CreateArrayLiteral, 3, 1) \ |
| 243 F(CreateArrayLiteralShallow, 3, 1) \ | 242 F(CreateArrayLiteralShallow, 3, 1) \ |
| 244 \ | 243 \ |
| 245 /* Catch context extension objects */ \ | 244 /* Catch context extension objects */ \ |
| 246 F(CreateCatchExtensionObject, 2, 1) \ | 245 F(CreateCatchExtensionObject, 2, 1) \ |
| 247 \ | 246 \ |
| 248 /* Statements */ \ | 247 /* Statements */ \ |
| 249 F(NewClosure, 2, 1) \ | 248 F(NewClosure, 2, 1) \ |
| 250 F(NewObject, 1, 1) \ | 249 F(NewObject, 1, 1) \ |
| 251 F(Throw, 1, 1) \ | 250 F(Throw, 1, 1) \ |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 int position); | 432 int position); |
| 434 | 433 |
| 435 // Helper functions used stubs. | 434 // Helper functions used stubs. |
| 436 static void PerformGC(Object* result); | 435 static void PerformGC(Object* result); |
| 437 }; | 436 }; |
| 438 | 437 |
| 439 | 438 |
| 440 } } // namespace v8::internal | 439 } } // namespace v8::internal |
| 441 | 440 |
| 442 #endif // V8_RUNTIME_H_ | 441 #endif // V8_RUNTIME_H_ |
| OLD | NEW |