2009-08-22 21:03:30 +00:00
|
|
|
//===-- MCAsmInfoCOFF.cpp - COFF asm properties -----------------*- C++ -*-===//
|
2009-07-27 16:45:59 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines target asm properties related what form asm statements
|
|
|
|
// should take in general on COFF-based targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
2009-07-27 16:45:59 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2010-01-20 06:34:14 +00:00
|
|
|
MCAsmInfoCOFF::MCAsmInfoCOFF() {
|
2009-07-27 16:45:59 +00:00
|
|
|
GlobalPrefix = "_";
|
2010-01-26 20:21:43 +00:00
|
|
|
COMMDirectiveAlignmentIsInBytes = false;
|
2010-01-23 07:47:02 +00:00
|
|
|
HasLCOMMDirective = true;
|
2009-07-27 16:45:59 +00:00
|
|
|
HasDotTypeDotSizeDirective = false;
|
|
|
|
HasSingleParameterDotFile = false;
|
|
|
|
PrivateGlobalPrefix = "L"; // Prefix for private global symbols
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
2010-01-26 23:51:52 +00:00
|
|
|
LinkOnceDirective = "\t.linkonce discard\n";
|
2010-01-23 06:53:23 +00:00
|
|
|
|
|
|
|
// Doesn't support visibility:
|
|
|
|
HiddenVisibilityAttr = ProtectedVisibilityAttr = MCSA_Invalid;
|
2009-07-27 16:45:59 +00:00
|
|
|
|
|
|
|
// Set up DWARF directives
|
|
|
|
HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
|
|
|
|
AbsoluteDebugSectionOffsets = true;
|
|
|
|
AbsoluteEHSectionOffsets = false;
|
|
|
|
SupportsDebugInformation = true;
|
|
|
|
DwarfSectionOffsetDirective = "\t.secrel32\t";
|
2010-03-12 21:03:47 +00:00
|
|
|
HasMicrosoftFastStdCallMangling = true;
|
2009-07-27 16:45:59 +00:00
|
|
|
}
|