2009-08-22 20:48:53 +00:00
|
|
|
//===-- XCoreMCAsmInfo.cpp - XCore asm properties -------------------------===//
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "XCoreMCAsmInfo.h"
|
2012-03-27 07:54:11 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void XCoreMCAsmInfo::anchor() { }
|
|
|
|
|
2013-05-10 18:16:59 +00:00
|
|
|
XCoreMCAsmInfo::XCoreMCAsmInfo(StringRef TT) {
|
2009-06-19 21:54:26 +00:00
|
|
|
SupportsDebugInformation = true;
|
2008-11-07 10:59:00 +00:00
|
|
|
Data16bitsDirective = "\t.short\t";
|
|
|
|
Data32bitsDirective = "\t.long\t";
|
2014-04-25 05:30:21 +00:00
|
|
|
Data64bitsDirective = nullptr;
|
2008-11-07 10:59:00 +00:00
|
|
|
ZeroDirective = "\t.space\t";
|
|
|
|
CommentString = "#";
|
2013-12-02 23:39:26 +00:00
|
|
|
|
2008-11-07 10:59:00 +00:00
|
|
|
AscizDirective = ".asciiz";
|
|
|
|
|
2013-10-11 10:27:00 +00:00
|
|
|
HiddenVisibilityAttr = MCSA_Invalid;
|
|
|
|
HiddenDeclarationVisibilityAttr = MCSA_Invalid;
|
|
|
|
ProtectedVisibilityAttr = MCSA_Invalid;
|
|
|
|
|
2008-11-07 10:59:00 +00:00
|
|
|
// Debug
|
2013-11-13 10:19:31 +00:00
|
|
|
ExceptionsType = ExceptionHandling::DwarfCFI;
|
|
|
|
DwarfRegNumForCFI = true;
|
2008-11-07 10:59:00 +00:00
|
|
|
}
|
|
|
|
|