| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 /* Getters and Setters */ \ | 216 /* Getters and Setters */ \ |
| 217 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ | 217 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ |
| 218 F(LookupAccessor, 3, 1) \ | 218 F(LookupAccessor, 3, 1) \ |
| 219 \ | 219 \ |
| 220 /* Literals */ \ | 220 /* Literals */ \ |
| 221 F(MaterializeRegExpLiteral, 4, 1)\ | 221 F(MaterializeRegExpLiteral, 4, 1)\ |
| 222 F(CreateArrayLiteralBoilerplate, 3, 1) \ | 222 F(CreateArrayLiteralBoilerplate, 3, 1) \ |
| 223 F(CreateObjectLiteralBoilerplate, 3, 1) \ | 223 F(CreateObjectLiteralBoilerplate, 3, 1) \ |
| 224 F(CloneLiteralBoilerplate, 1, 1) \ | 224 F(CloneLiteralBoilerplate, 1, 1) \ |
| 225 F(CloneShallowLiteralBoilerplate, 1, 1) \ | 225 F(CloneShallowLiteralBoilerplate, 1, 1) \ |
| 226 F(CreateObjectLiteral, 3, 1) \ |
| 227 F(CreateObjectLiteralShallow, 3, 1) \ |
| 228 F(CreateArrayLiteral, 3, 1) \ |
| 229 F(CreateArrayLiteralShallow, 3, 1) \ |
| 226 \ | 230 \ |
| 227 /* Catch context extension objects */ \ | 231 /* Catch context extension objects */ \ |
| 228 F(CreateCatchExtensionObject, 2, 1) \ | 232 F(CreateCatchExtensionObject, 2, 1) \ |
| 229 \ | 233 \ |
| 230 /* Statements */ \ | 234 /* Statements */ \ |
| 231 F(NewClosure, 2, 1) \ | 235 F(NewClosure, 2, 1) \ |
| 232 F(NewObject, 1, 1) \ | 236 F(NewObject, 1, 1) \ |
| 233 F(Throw, 1, 1) \ | 237 F(Throw, 1, 1) \ |
| 234 F(ReThrow, 1, 1) \ | 238 F(ReThrow, 1, 1) \ |
| 235 F(ThrowReferenceError, 1, 1) \ | 239 F(ThrowReferenceError, 1, 1) \ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 int position); | 420 int position); |
| 417 | 421 |
| 418 // Helper functions used stubs. | 422 // Helper functions used stubs. |
| 419 static void PerformGC(Object* result); | 423 static void PerformGC(Object* result); |
| 420 }; | 424 }; |
| 421 | 425 |
| 422 | 426 |
| 423 } } // namespace v8::internal | 427 } } // namespace v8::internal |
| 424 | 428 |
| 425 #endif // V8_RUNTIME_H_ | 429 #endif // V8_RUNTIME_H_ |
| OLD | NEW |