| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
| 6 | 6 |
| 7 #include "src/arm/macro-assembler-arm.h" | 7 #include "src/arm/macro-assembler-arm.h" |
| 8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
| 9 #include "src/compiler/gap-resolver.h" | 9 #include "src/compiler/gap-resolver.h" |
| 10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 __ vstr(temp_1, src0); | 834 __ vstr(temp_1, src0); |
| 835 } else { | 835 } else { |
| 836 // No other combinations are possible. | 836 // No other combinations are possible. |
| 837 UNREACHABLE(); | 837 UNREACHABLE(); |
| 838 } | 838 } |
| 839 } | 839 } |
| 840 | 840 |
| 841 | 841 |
| 842 void CodeGenerator::AddNopForSmiCodeInlining() { | 842 void CodeGenerator::AddNopForSmiCodeInlining() { |
| 843 // On 32-bit ARM we do not insert nops for inlined Smi code. | 843 // On 32-bit ARM we do not insert nops for inlined Smi code. |
| 844 UNREACHABLE(); | |
| 845 } | 844 } |
| 846 | 845 |
| 847 #undef __ | 846 #undef __ |
| 848 } | 847 |
| 849 } | 848 } // namespace compiler |
| 850 } // namespace v8::internal::compiler | 849 } // namespace internal |
| 850 } // namespace v8 |
| OLD | NEW |