LLVM  8.0.1
SystemZMCAsmBackend.cpp
Go to the documentation of this file.
1 //===-- SystemZMCAsmBackend.cpp - SystemZ assembler backend ---------------===//
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 
12 #include "llvm/MC/MCAsmBackend.h"
15 #include "llvm/MC/MCInst.h"
16 #include "llvm/MC/MCObjectWriter.h"
18 
19 using namespace llvm;
20 
21 // Value is a fully-resolved relocation value: Symbol + Addend [- Pivot].
22 // Return the bits that should be installed in a relocation field for
23 // fixup kind Kind.
24 static uint64_t extractBitsForFixup(MCFixupKind Kind, uint64_t Value) {
25  if (Kind < FirstTargetFixupKind)
26  return Value;
27 
28  switch (unsigned(Kind)) {
33  return (int64_t)Value / 2;
34 
36  return 0;
37  }
38 
39  llvm_unreachable("Unknown fixup kind!");
40 }
41 
42 namespace {
43 class SystemZMCAsmBackend : public MCAsmBackend {
44  uint8_t OSABI;
45 public:
46  SystemZMCAsmBackend(uint8_t osABI)
47  : MCAsmBackend(support::big), OSABI(osABI) {}
48 
49  // Override MCAsmBackend
50  unsigned getNumFixupKinds() const override {
52  }
53  const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override;
54  void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
56  uint64_t Value, bool IsResolved,
57  const MCSubtargetInfo *STI) const override;
58  bool mayNeedRelaxation(const MCInst &Inst,
59  const MCSubtargetInfo &STI) const override {
60  return false;
61  }
62  bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
63  const MCRelaxableFragment *Fragment,
64  const MCAsmLayout &Layout) const override {
65  return false;
66  }
67  void relaxInstruction(const MCInst &Inst, const MCSubtargetInfo &STI,
68  MCInst &Res) const override {
69  llvm_unreachable("SystemZ does do not have assembler relaxation");
70  }
71  bool writeNopData(raw_ostream &OS, uint64_t Count) const override;
72  std::unique_ptr<MCObjectTargetWriter>
73  createObjectTargetWriter() const override {
74  return createSystemZObjectWriter(OSABI);
75  }
76 };
77 } // end anonymous namespace
78 
79 const MCFixupKindInfo &
80 SystemZMCAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
81  const static MCFixupKindInfo Infos[SystemZ::NumTargetFixupKinds] = {
82  { "FK_390_PC12DBL", 4, 12, MCFixupKindInfo::FKF_IsPCRel },
83  { "FK_390_PC16DBL", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
84  { "FK_390_PC24DBL", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
85  { "FK_390_PC32DBL", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
86  { "FK_390_TLS_CALL", 0, 0, 0 }
87  };
88 
89  if (Kind < FirstTargetFixupKind)
90  return MCAsmBackend::getFixupKindInfo(Kind);
91 
92  assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
93  "Invalid kind!");
94  return Infos[Kind - FirstTargetFixupKind];
95 }
96 
97 void SystemZMCAsmBackend::applyFixup(const MCAssembler &Asm,
98  const MCFixup &Fixup,
99  const MCValue &Target,
100  MutableArrayRef<char> Data, uint64_t Value,
101  bool IsResolved,
102  const MCSubtargetInfo *STI) const {
103  MCFixupKind Kind = Fixup.getKind();
104  unsigned Offset = Fixup.getOffset();
105  unsigned BitSize = getFixupKindInfo(Kind).TargetSize;
106  unsigned Size = (BitSize + 7) / 8;
107 
108  assert(Offset + Size <= Data.size() && "Invalid fixup offset!");
109 
110  // Big-endian insertion of Size bytes.
111  Value = extractBitsForFixup(Kind, Value);
112  if (BitSize < 64)
113  Value &= ((uint64_t)1 << BitSize) - 1;
114  unsigned ShiftValue = (Size * 8) - 8;
115  for (unsigned I = 0; I != Size; ++I) {
116  Data[Offset + I] |= uint8_t(Value >> ShiftValue);
117  ShiftValue -= 8;
118  }
119 }
120 
121 bool SystemZMCAsmBackend::writeNopData(raw_ostream &OS, uint64_t Count) const {
122  for (uint64_t I = 0; I != Count; ++I)
123  OS << '\x7';
124  return true;
125 }
126 
128  const MCSubtargetInfo &STI,
129  const MCRegisterInfo &MRI,
130  const MCTargetOptions &Options) {
131  uint8_t OSABI =
133  return new SystemZMCAsmBackend(OSABI);
134 }
This class represents lattice values for constants.
Definition: AllocatorList.h:24
This represents an "assembler immediate".
Definition: MCValue.h:40
OSType getOS() const
getOS - Get the parsed operating system type of this triple.
Definition: Triple.h:299
virtual const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const
Get information on a fixup kind.
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition: MCFixup.h:74
const Triple & getTargetTriple() const
Is this fixup kind PCrelative? This is used by the assembler backend to evaluate fixup values in a ta...
Encapsulates the layout of an assembly file at a particular point in time.
Definition: MCAsmLayout.h:29
std::unique_ptr< MCObjectTargetWriter > createSystemZObjectWriter(uint8_t OSABI)
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
A relaxable fragment holds on to its MCInst, since it may need to be relaxed during the assembler lay...
Definition: MCFragment.h:271
unsigned const MachineRegisterInfo * MRI
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:291
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:149
MCFixupKind
Extensible enumeration to represent the type of a fixup.
Definition: MCFixup.h:23
uint32_t getOffset() const
Definition: MCFixup.h:125
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
PowerPC TLS Dynamic Call Fixup
Target - Wrapper for Target specific information.
static uint64_t extractBitsForFixup(MCFixupKind Kind, uint64_t Value)
MCAsmBackend * createSystemZMCAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
#define I(x, y, z)
Definition: MD5.cpp:58
Generic base class for all target subtargets.
uint32_t Size
Definition: Profile.cpp:47
Target independent information on a fixup kind.
const unsigned Kind
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
LLVM Value Representation.
Definition: Value.h:73
Generic interface to target specific assembler backends.
Definition: MCAsmBackend.h:42
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
MCFixupKind getKind() const
Definition: MCFixup.h:123