| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/base/cpu.h" | 5 #include "src/base/cpu.h" |
| 6 | 6 |
| 7 #if V8_LIBC_MSVCRT | 7 #if V8_LIBC_MSVCRT |
| 8 #include <intrin.h> // __cpuid() | 8 #include <intrin.h> // __cpuid() |
| 9 #endif | 9 #endif |
| 10 #if V8_OS_LINUX | 10 #if V8_OS_LINUX |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 break; | 684 break; |
| 685 case POWER_5: | 685 case POWER_5: |
| 686 part_ = PPC_POWER5; | 686 part_ = PPC_POWER5; |
| 687 break; | 687 break; |
| 688 } | 688 } |
| 689 #endif // V8_OS_AIX | 689 #endif // V8_OS_AIX |
| 690 #endif // !USE_SIMULATOR | 690 #endif // !USE_SIMULATOR |
| 691 #endif // V8_HOST_ARCH_PPC | 691 #endif // V8_HOST_ARCH_PPC |
| 692 } | 692 } |
| 693 | 693 |
| 694 } } // namespace v8::base | 694 } // namespace base |
| 695 } // namespace v8 |
| OLD | NEW |