| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "Builtins::" #name }, | 534 "Builtins::" #name }, |
| 535 #define DEF_ENTRY_A(name, kind, state) DEF_ENTRY_C(name) | 535 #define DEF_ENTRY_A(name, kind, state) DEF_ENTRY_C(name) |
| 536 | 536 |
| 537 BUILTIN_LIST_C(DEF_ENTRY_C) | 537 BUILTIN_LIST_C(DEF_ENTRY_C) |
| 538 BUILTIN_LIST_A(DEF_ENTRY_A) | 538 BUILTIN_LIST_A(DEF_ENTRY_A) |
| 539 BUILTIN_LIST_DEBUG_A(DEF_ENTRY_A) | 539 BUILTIN_LIST_DEBUG_A(DEF_ENTRY_A) |
| 540 #undef DEF_ENTRY_C | 540 #undef DEF_ENTRY_C |
| 541 #undef DEF_ENTRY_A | 541 #undef DEF_ENTRY_A |
| 542 | 542 |
| 543 // Runtime functions | 543 // Runtime functions |
| 544 #define RUNTIME_ENTRY(name, nargs) \ | 544 #define RUNTIME_ENTRY(name, nargs, ressize) \ |
| 545 { RUNTIME_FUNCTION, \ | 545 { RUNTIME_FUNCTION, \ |
| 546 Runtime::k##name, \ | 546 Runtime::k##name, \ |
| 547 "Runtime::" #name }, | 547 "Runtime::" #name }, |
| 548 | 548 |
| 549 RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY) | 549 RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY) |
| 550 #undef RUNTIME_ENTRY | 550 #undef RUNTIME_ENTRY |
| 551 | 551 |
| 552 // IC utilities | 552 // IC utilities |
| 553 #define IC_ENTRY(name) \ | 553 #define IC_ENTRY(name) \ |
| 554 { IC_UTILITY, \ | 554 { IC_UTILITY, \ |
| (...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1694 ASSERT(index < large_objects_.length()); | 1694 ASSERT(index < large_objects_.length()); |
| 1695 } | 1695 } |
| 1696 return large_objects_[index]; // s.page_offset() is ignored. | 1696 return large_objects_[index]; // s.page_offset() is ignored. |
| 1697 } | 1697 } |
| 1698 UNREACHABLE(); | 1698 UNREACHABLE(); |
| 1699 return NULL; | 1699 return NULL; |
| 1700 } | 1700 } |
| 1701 | 1701 |
| 1702 | 1702 |
| 1703 } } // namespace v8::internal | 1703 } } // namespace v8::internal |
| OLD | NEW |