| 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 17 matching lines...) Expand all Loading... |
| 28 #include "v8.h" | 28 #include "v8.h" |
| 29 | 29 |
| 30 #include "codegen-inl.h" | 30 #include "codegen-inl.h" |
| 31 #include "register-allocator-inl.h" | 31 #include "register-allocator-inl.h" |
| 32 | 32 |
| 33 namespace v8 { namespace internal { | 33 namespace v8 { namespace internal { |
| 34 | 34 |
| 35 // ------------------------------------------------------------------------- | 35 // ------------------------------------------------------------------------- |
| 36 // JumpTarget implementation. | 36 // JumpTarget implementation. |
| 37 | 37 |
| 38 #define __ masm_-> | 38 #define __ DEFINE_MASM(masm_) |
| 39 | 39 |
| 40 void JumpTarget::DoJump() { | 40 void JumpTarget::DoJump() { |
| 41 ASSERT(cgen_ != NULL); | 41 ASSERT(cgen_ != NULL); |
| 42 ASSERT(cgen_->has_valid_frame()); | 42 ASSERT(cgen_->has_valid_frame()); |
| 43 // Live non-frame registers are not allowed at unconditional jumps | 43 // Live non-frame registers are not allowed at unconditional jumps |
| 44 // because we have no way of invalidating the corresponding results | 44 // because we have no way of invalidating the corresponding results |
| 45 // which are still live in the C++ code. | 45 // which are still live in the C++ code. |
| 46 ASSERT(cgen_->HasValidEntryRegisters()); | 46 ASSERT(cgen_->HasValidEntryRegisters()); |
| 47 | 47 |
| 48 if (is_bound()) { | 48 if (is_bound()) { |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 } | 326 } |
| 327 | 327 |
| 328 is_linked_ = false; | 328 is_linked_ = false; |
| 329 is_bound_ = true; | 329 is_bound_ = true; |
| 330 } | 330 } |
| 331 | 331 |
| 332 #undef __ | 332 #undef __ |
| 333 | 333 |
| 334 | 334 |
| 335 } } // namespace v8::internal | 335 } } // namespace v8::internal |
| OLD | NEW |