| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 20 matching lines...) Expand all Loading... |
| 31 #include "lithium-allocator.h" | 31 #include "lithium-allocator.h" |
| 32 | 32 |
| 33 #if V8_TARGET_ARCH_IA32 | 33 #if V8_TARGET_ARCH_IA32 |
| 34 #include "ia32/lithium-ia32.h" | 34 #include "ia32/lithium-ia32.h" |
| 35 #elif V8_TARGET_ARCH_X64 | 35 #elif V8_TARGET_ARCH_X64 |
| 36 #include "x64/lithium-x64.h" | 36 #include "x64/lithium-x64.h" |
| 37 #elif V8_TARGET_ARCH_ARM | 37 #elif V8_TARGET_ARCH_ARM |
| 38 #include "arm/lithium-arm.h" | 38 #include "arm/lithium-arm.h" |
| 39 #elif V8_TARGET_ARCH_MIPS | 39 #elif V8_TARGET_ARCH_MIPS |
| 40 #include "mips/lithium-mips.h" | 40 #include "mips/lithium-mips.h" |
| 41 #elif V8_TARGET_ARCH_SH4 |
| 42 #include "sh4/lithium-sh4.h" |
| 41 #else | 43 #else |
| 42 #error "Unknown architecture." | 44 #error "Unknown architecture." |
| 43 #endif | 45 #endif |
| 44 | 46 |
| 45 namespace v8 { | 47 namespace v8 { |
| 46 namespace internal { | 48 namespace internal { |
| 47 | 49 |
| 48 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); } | 50 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); } |
| 49 | 51 |
| 50 | 52 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 137 |
| 136 void UseIterator::Advance() { | 138 void UseIterator::Advance() { |
| 137 input_iterator_.Done() | 139 input_iterator_.Done() |
| 138 ? env_iterator_.Advance() | 140 ? env_iterator_.Advance() |
| 139 : input_iterator_.Advance(); | 141 : input_iterator_.Advance(); |
| 140 } | 142 } |
| 141 | 143 |
| 142 } } // namespace v8::internal | 144 } } // namespace v8::internal |
| 143 | 145 |
| 144 #endif // V8_LITHIUM_ALLOCATOR_INL_H_ | 146 #endif // V8_LITHIUM_ALLOCATOR_INL_H_ |
| OLD | NEW |