aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC/PPCAsmBackend.cpp
blob: 8790a6979350967735e4bd20e53254b8e85e1cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//===-- PPCAsmBackend.cpp - PPC Assembler Backend -------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/Target/TargetAsmBackend.h"
#include "PPC.h"
#include "PPCFixupKinds.h"
#include "llvm/MC/MCSectionMachO.h"
#include "llvm/MC/MCObjectFormat.h"
#include "llvm/MC/MCObjectWriter.h"
#include "llvm/Target/TargetRegistry.h"
#include "llvm/Support/MachO.h"
using namespace llvm;

namespace {
  class PPCAsmBackend : public TargetAsmBackend {
  const Target &TheTarget;
  public:
    PPCAsmBackend(const Target &T) : TargetAsmBackend(), TheTarget(T) {}
    
    bool MayNeedRelaxation(const MCInst &Inst) const {
      // FIXME.
      return false;
    }
    
    void RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
      // FIXME.
      assert(0 && "RelaxInstruction() unimplemented");
    }
    
    bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
      // FIXME: Zero fill for now. That's not right, but at least will get the
      // section size right.
      for (uint64_t i = 0; i != Count; ++i)
        OW->Write8(0);
      return true;
    }      
    
    unsigned getPointerSize() const {
      StringRef Name = TheTarget.getName();
      if (Name == "ppc64") return 8;
      assert(Name == "ppc32" && "Unknown target name!");
      return 4;
    }
  };
} // end anonymous namespace


// FIXME: This should be in a separate file.
namespace {
  class DarwinPPCAsmBackend : public PPCAsmBackend {
    MCMachOObjectFormat Format;
  public:
    DarwinPPCAsmBackend(const Target &T) : PPCAsmBackend(T) {
      HasScatteredSymbols = true;
    }
    
    virtual const MCObjectFormat &getObjectFormat() const {
      return Format;
    }
    
    void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
                    uint64_t Value) const {
      assert(0 && "UNIMP");
    }
    
    MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
      bool is64 = getPointerSize() == 8;
      return createMachObjectWriter(OS, /*Is64Bit=*/is64,
                                    is64 ? MachO::CPUTypePowerPC64 : 
                                    MachO::CPUTypePowerPC64,
                                    MachO::CPUSubType_POWERPC_ALL,
                                    /*IsLittleEndian=*/false);
    }
    
    virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
      return false;
    }
  };
} // end anonymous namespace




TargetAsmBackend *llvm::createPPCAsmBackend(const Target &T,
                                            const std::string &TT) {
  switch (Triple(TT).getOS()) {
  case Triple::Darwin:
    return new DarwinPPCAsmBackend(T);
  default:
    return 0;
  }
}