blob: 36012e61c02a5591e7310bbfde85fd75a62c6979 [file] [log] [blame]
Jim Laskey8e8de8f2006-09-07 22:05:02 +00001//===-- IA64TargetAsmInfo.cpp - IA64 asm properties -------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey8e8de8f2006-09-07 22:05:02 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the declarations of the IA64TargetAsmInfo properties.
11//
12//===----------------------------------------------------------------------===//
13
14#include "IA64TargetAsmInfo.h"
15
16using namespace llvm;
17
18IA64TargetAsmInfo::IA64TargetAsmInfo(const IA64TargetMachine &TM) {
19 CommentString = "//";
20 Data8bitsDirective = "\tdata1\t"; // FIXME: check that we are
21 Data16bitsDirective = "\tdata2.ua\t"; // disabling auto-alignment
22 Data32bitsDirective = "\tdata4.ua\t"; // properly
23 Data64bitsDirective = "\tdata8.ua\t";
24 ZeroDirective = "\t.skip\t";
25 AsciiDirective = "\tstring\t";
26
27 GlobalVarAddrPrefix="";
28 GlobalVarAddrSuffix="";
29 FunctionAddrPrefix="@fptr(";
30 FunctionAddrSuffix=")";
31
32 // FIXME: would be nice to have rodata (no 'w') when appropriate?
33 ConstantPoolSection = "\n\t.section .data, \"aw\", \"progbits\"\n";
34}