Chromium Code Reviews| Index: src/assembler.h |
| =================================================================== |
| --- src/assembler.h (revision 4222) |
| +++ src/assembler.h (working copy) |
| @@ -443,6 +443,9 @@ |
| static ExternalReference scheduled_exception_address(); |
| + static ExternalReference compile_array_pop_call(); |
| + static ExternalReference compile_array_push_call(); |
| + |
| Address address() const {return reinterpret_cast<Address>(address_);} |
| #ifdef ENABLE_DEBUGGER_SUPPORT |
| @@ -504,6 +507,7 @@ |
| // ----------------------------------------------------------------------------- |
| // Utility functions |
|
Kasper Lund
2010/03/23 14:27:52
Intentional edit?
|
| + |
| static inline bool is_intn(int x, int n) { |
| return -(1 << (n-1)) <= x && x < (1 << (n-1)); |
| } |