LLVM  3.7.0
ARMAsmBackendELF.h
Go to the documentation of this file.
1 //===-- ARMAsmBackendELF.h ARM Asm Backend ELF -----------------*- 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 #ifndef LLVM_LIB_TARGET_ARM_ELFARMASMBACKEND_H
11 #define LLVM_LIB_TARGET_ARM_ELFARMASMBACKEND_H
12 
13 using namespace llvm;
14 namespace {
15 class ARMAsmBackendELF : public ARMAsmBackend {
16 public:
17  uint8_t OSABI;
18  ARMAsmBackendELF(const Target &T, const Triple &TT, uint8_t OSABI,
19  bool IsLittle)
20  : ARMAsmBackend(T, TT, IsLittle), OSABI(OSABI) {}
21 
22  MCObjectWriter *createObjectWriter(raw_pwrite_stream &OS) const override {
23  return createARMELFObjectWriter(OS, OSABI, isLittle());
24  }
25 };
26 }
27 
28 #endif
Defines the object file and target independent interfaces used by the assembler backend to write nati...
MCObjectWriter * createARMELFObjectWriter(raw_pwrite_stream &OS, uint8_t OSABI, bool IsLittleEndian)
Construct an ELF Mach-O object writer.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Target - Wrapper for Target specific information.
An abstract base class for streams implementations that also support a pwrite operation.
Definition: raw_ostream.h:321