OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 "v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
8 | 8 |
9 #include "constants-arm.h" | 9 #include "src/arm/constants-arm.h" |
10 | 10 |
11 | 11 |
12 namespace v8 { | 12 namespace v8 { |
13 namespace internal { | 13 namespace internal { |
14 | 14 |
15 double Instruction::DoubleImmedVmov() const { | 15 double Instruction::DoubleImmedVmov() const { |
16 // Reconstruct a double from the immediate encoded in the vmov instruction. | 16 // Reconstruct a double from the immediate encoded in the vmov instruction. |
17 // | 17 // |
18 // instruction: [xxxxxxxx,xxxxabcd,xxxxxxxx,xxxxefgh] | 18 // instruction: [xxxxxxxx,xxxxabcd,xxxxxxxx,xxxxefgh] |
19 // double: [aBbbbbbb,bbcdefgh,00000000,00000000, | 19 // double: [aBbbbbbb,bbcdefgh,00000000,00000000, |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 } | 122 } |
123 | 123 |
124 // No register with the requested name found. | 124 // No register with the requested name found. |
125 return kNoRegister; | 125 return kNoRegister; |
126 } | 126 } |
127 | 127 |
128 | 128 |
129 } } // namespace v8::internal | 129 } } // namespace v8::internal |
130 | 130 |
131 #endif // V8_TARGET_ARCH_ARM | 131 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |