| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 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 23 matching lines...) Expand all Loading... |
| 34 namespace v8 { namespace internal { | 34 namespace v8 { namespace internal { |
| 35 | 35 |
| 36 #define __ masm_-> | 36 #define __ masm_-> |
| 37 | 37 |
| 38 // ------------------------------------------------------------------------- | 38 // ------------------------------------------------------------------------- |
| 39 // VirtualFrame implementation. | 39 // VirtualFrame implementation. |
| 40 | 40 |
| 41 VirtualFrame::SpilledScope::SpilledScope(CodeGenerator* cgen) | 41 VirtualFrame::SpilledScope::SpilledScope(CodeGenerator* cgen) |
| 42 : cgen_(cgen), | 42 : cgen_(cgen), |
| 43 previous_state_(cgen->in_spilled_code()) { | 43 previous_state_(cgen->in_spilled_code()) { |
| 44 ASSERT(cgen->frame() != NULL); | 44 ASSERT(cgen->has_valid_frame()); |
| 45 cgen->frame()->SpillAll(); | 45 cgen->frame()->SpillAll(); |
| 46 cgen->set_in_spilled_code(true); | 46 cgen->set_in_spilled_code(true); |
| 47 } | 47 } |
| 48 | 48 |
| 49 | 49 |
| 50 VirtualFrame::SpilledScope::~SpilledScope() { | 50 VirtualFrame::SpilledScope::~SpilledScope() { |
| 51 cgen_->set_in_spilled_code(previous_state_); | 51 cgen_->set_in_spilled_code(previous_state_); |
| 52 } | 52 } |
| 53 | 53 |
| 54 | 54 |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 return false; | 961 return false; |
| 962 } | 962 } |
| 963 } | 963 } |
| 964 return true; | 964 return true; |
| 965 } | 965 } |
| 966 #endif | 966 #endif |
| 967 | 967 |
| 968 #undef __ | 968 #undef __ |
| 969 | 969 |
| 970 } } // namespace v8::internal | 970 } } // namespace v8::internal |
| OLD | NEW |