Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 1 | //===-- PPCMCTargetDesc.h - PowerPC Target Descriptions ---------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file provides PowerPC specific target descriptions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H |
| 15 | #define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 16 | |
Rafael Espindola | fb8ac2d | 2012-12-20 05:13:09 +0000 | [diff] [blame] | 17 | // GCC #defines PPC on Linux but we use it as our namespace name |
| 18 | #undef PPC |
| 19 | |
Hal Finkel | 6e9110a | 2015-03-28 19:42:41 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MathExtras.h" |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 21 | #include <cstdint> |
Lang Hames | 3a67075 | 2017-10-10 16:58:26 +0000 | [diff] [blame] | 22 | #include <memory> |
Rafael Espindola | 38a400d | 2011-12-22 01:57:09 +0000 | [diff] [blame] | 23 | |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 24 | namespace llvm { |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 25 | |
Evan Cheng | 5928e69 | 2011-07-25 23:24:55 +0000 | [diff] [blame] | 26 | class MCAsmBackend; |
Evan Cheng | 61d4a20 | 2011-07-25 19:53:23 +0000 | [diff] [blame] | 27 | class MCCodeEmitter; |
| 28 | class MCContext; |
| 29 | class MCInstrInfo; |
Peter Collingbourne | dcd7d6c | 2018-05-21 19:20:29 +0000 | [diff] [blame^] | 30 | class MCObjectTargetWriter; |
Jim Grosbach | c3b0427 | 2012-05-15 17:35:52 +0000 | [diff] [blame] | 31 | class MCRegisterInfo; |
Alex Bradbury | b22f751 | 2018-01-03 08:53:05 +0000 | [diff] [blame] | 32 | class MCSubtargetInfo; |
Joel Jones | 373d7d3 | 2016-07-25 17:18:28 +0000 | [diff] [blame] | 33 | class MCTargetOptions; |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 34 | class Target; |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 35 | class Triple; |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 36 | class StringRef; |
Rafael Espindola | 5560a4c | 2015-04-14 22:14:34 +0000 | [diff] [blame] | 37 | class raw_pwrite_stream; |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 38 | |
Mehdi Amini | f42454b | 2016-10-09 23:00:34 +0000 | [diff] [blame] | 39 | Target &getThePPC32Target(); |
| 40 | Target &getThePPC64Target(); |
| 41 | Target &getThePPC64LETarget(); |
Eric Christopher | 0169e42 | 2015-03-10 22:03:14 +0000 | [diff] [blame] | 42 | |
Evan Cheng | 61d4a20 | 2011-07-25 19:53:23 +0000 | [diff] [blame] | 43 | MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII, |
Jim Grosbach | c3b0427 | 2012-05-15 17:35:52 +0000 | [diff] [blame] | 44 | const MCRegisterInfo &MRI, |
Evan Cheng | 61d4a20 | 2011-07-25 19:53:23 +0000 | [diff] [blame] | 45 | MCContext &Ctx); |
| 46 | |
Alex Bradbury | b22f751 | 2018-01-03 08:53:05 +0000 | [diff] [blame] | 47 | MCAsmBackend *createPPCAsmBackend(const Target &T, const MCSubtargetInfo &STI, |
| 48 | const MCRegisterInfo &MRI, |
Joel Jones | 373d7d3 | 2016-07-25 17:18:28 +0000 | [diff] [blame] | 49 | const MCTargetOptions &Options); |
Rafael Espindola | 38a400d | 2011-12-22 01:57:09 +0000 | [diff] [blame] | 50 | |
Rafael Espindola | df7305a | 2015-04-09 17:10:57 +0000 | [diff] [blame] | 51 | /// Construct an PPC ELF object writer. |
Peter Collingbourne | dcd7d6c | 2018-05-21 19:20:29 +0000 | [diff] [blame^] | 52 | std::unique_ptr<MCObjectTargetWriter> createPPCELFObjectWriter(bool Is64Bit, |
| 53 | uint8_t OSABI); |
Rafael Espindola | df7305a | 2015-04-09 17:10:57 +0000 | [diff] [blame] | 54 | /// Construct a PPC Mach-O object writer. |
Peter Collingbourne | dcd7d6c | 2018-05-21 19:20:29 +0000 | [diff] [blame^] | 55 | std::unique_ptr<MCObjectTargetWriter> |
| 56 | createPPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype); |
Hal Finkel | 6e9110a | 2015-03-28 19:42:41 +0000 | [diff] [blame] | 57 | |
Rafael Espindola | df7305a | 2015-04-09 17:10:57 +0000 | [diff] [blame] | 58 | /// Returns true iff Val consists of one contiguous run of 1s with any number of |
| 59 | /// 0s on either side. The 1s are allowed to wrap from LSB to MSB, so |
| 60 | /// 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is not, |
| 61 | /// since all 1s are not contiguous. |
Hal Finkel | 6e9110a | 2015-03-28 19:42:41 +0000 | [diff] [blame] | 62 | static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { |
| 63 | if (!Val) |
| 64 | return false; |
| 65 | |
| 66 | if (isShiftedMask_32(Val)) { |
| 67 | // look for the first non-zero bit |
| 68 | MB = countLeadingZeros(Val); |
| 69 | // look for the first zero bit after the run of ones |
| 70 | ME = countLeadingZeros((Val - 1) ^ Val); |
| 71 | return true; |
| 72 | } else { |
| 73 | Val = ~Val; // invert mask |
| 74 | if (isShiftedMask_32(Val)) { |
| 75 | // effectively look for the first zero bit |
| 76 | ME = countLeadingZeros(Val) - 1; |
| 77 | // effectively look for the first one bit after the run of zeros |
| 78 | MB = countLeadingZeros((Val - 1) ^ Val) + 1; |
| 79 | return true; |
| 80 | } |
| 81 | } |
| 82 | // no run present |
| 83 | return false; |
| 84 | } |
| 85 | |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 86 | } // end namespace llvm |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 87 | |
Sylvestre Ledru | 37ef20d | 2013-03-17 12:40:42 +0000 | [diff] [blame] | 88 | // Generated files will use "namespace PPC". To avoid symbol clash, |
| 89 | // undefine PPC here. PPC may be predefined on some hosts. |
| 90 | #undef PPC |
| 91 | |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 92 | // Defines symbolic names for PowerPC registers. This defines a mapping from |
| 93 | // register name to register number. |
| 94 | // |
| 95 | #define GET_REGINFO_ENUM |
| 96 | #include "PPCGenRegisterInfo.inc" |
| 97 | |
| 98 | // Defines symbolic names for the PowerPC instructions. |
| 99 | // |
| 100 | #define GET_INSTRINFO_ENUM |
Craig Topper | ac59db2 | 2017-12-13 07:26:17 +0000 | [diff] [blame] | 101 | #define GET_INSTRINFO_SCHED_ENUM |
Evan Cheng | bc153d4 | 2011-07-14 20:59:42 +0000 | [diff] [blame] | 102 | #include "PPCGenInstrInfo.inc" |
| 103 | |
| 104 | #define GET_SUBTARGETINFO_ENUM |
| 105 | #include "PPCGenSubtargetInfo.inc" |
| 106 | |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 107 | #endif // LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H |