2006-09-08 06:05:02 +08:00
|
|
|
//=====-- PPCTargetAsmInfo.h - PPC asm properties -------------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 06:05:02 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the DarwinTargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PPCTARGETASMINFO_H
|
|
|
|
#define PPCTARGETASMINFO_H
|
|
|
|
|
2008-09-26 05:00:33 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2008-08-09 02:23:25 +08:00
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
2008-09-26 05:00:33 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2006-09-08 06:05:02 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2008-09-26 05:00:33 +08:00
|
|
|
template <class BaseTAI>
|
|
|
|
struct PPCTargetAsmInfo : public BaseTAI {
|
2009-08-02 12:27:24 +08:00
|
|
|
explicit PPCTargetAsmInfo(const PPCTargetMachine &TM) {
|
2008-09-26 05:00:33 +08:00
|
|
|
const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
|
|
|
|
bool isPPC64 = Subtarget->isPPC64();
|
|
|
|
|
|
|
|
BaseTAI::ZeroDirective = "\t.space\t";
|
|
|
|
BaseTAI::SetDirective = "\t.set";
|
|
|
|
BaseTAI::Data64bitsDirective = isPPC64 ? "\t.quad\t" : 0;
|
|
|
|
BaseTAI::AlignmentIsInBytes = false;
|
|
|
|
BaseTAI::LCOMMDirective = "\t.lcomm\t";
|
|
|
|
BaseTAI::InlineAsmStart = "# InlineAsm Start";
|
|
|
|
BaseTAI::InlineAsmEnd = "# InlineAsm End";
|
|
|
|
BaseTAI::AssemblerDialect = Subtarget->getAsmFlavor();
|
|
|
|
}
|
2008-09-25 15:38:08 +08:00
|
|
|
};
|
2008-09-25 06:22:54 +08:00
|
|
|
|
2008-09-26 05:00:33 +08:00
|
|
|
typedef PPCTargetAsmInfo<TargetAsmInfo> PPCGenericTargetAsmInfo;
|
|
|
|
|
|
|
|
EXTERN_TEMPLATE_INSTANTIATION(class PPCTargetAsmInfo<TargetAsmInfo>);
|
|
|
|
|
|
|
|
struct PPCDarwinTargetAsmInfo : public PPCTargetAsmInfo<DarwinTargetAsmInfo> {
|
2008-07-20 05:44:57 +08:00
|
|
|
explicit PPCDarwinTargetAsmInfo(const PPCTargetMachine &TM);
|
2006-09-08 06:05:02 +08:00
|
|
|
};
|
|
|
|
|
2009-08-02 12:27:24 +08:00
|
|
|
struct PPCLinuxTargetAsmInfo : public PPCTargetAsmInfo<TargetAsmInfo> {
|
2008-07-20 05:44:57 +08:00
|
|
|
explicit PPCLinuxTargetAsmInfo(const PPCTargetMachine &TM);
|
2006-12-22 04:26:09 +08:00
|
|
|
};
|
|
|
|
|
2006-09-08 06:05:02 +08:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|