blob: a17d1a8b1c25c7a33d0aec1e3858df43e3c30644 [file] [log] [blame]
Chris Lattner621c44d2009-08-22 20:48:53 +00001//===-- PIC16MCAsmInfo.cpp - PIC16 asm properties -------------------------===//
Sanjiv Gupta09bb4202008-05-13 09:02:57 +00002//
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//
Chris Lattner621c44d2009-08-22 20:48:53 +000010// This file contains the declarations of the PIC16MCAsmInfo properties.
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner621c44d2009-08-22 20:48:53 +000014#include "PIC16MCAsmInfo.h"
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000015
Chris Lattner055f6862009-08-02 04:41:14 +000016// FIXME: Layering violation to get enums and static function, should be moved
17// to separate headers.
18#include "PIC16.h"
19#include "PIC16ISelLowering.h"
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000020using namespace llvm;
21
Chris Lattner621c44d2009-08-22 20:48:53 +000022PIC16MCAsmInfo::PIC16MCAsmInfo(const Target &T, const StringRef &TT) {
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000023 CommentString = ";";
Sanjiv Guptaca549b72009-05-10 05:23:47 +000024 GlobalPrefix = PAN::getTagName(PAN::PREFIX_SYMBOL);
25 GlobalDirective = "\tglobal\t";
26 ExternDirective = "\textern\t";
27
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000028 Data8bitsDirective = " db ";
Sanjiv Guptadc2943d2009-01-30 04:25:10 +000029 Data16bitsDirective = " dw ";
30 Data32bitsDirective = " dl ";
Sanjiv Gupta9197df22009-07-06 18:09:11 +000031 Data64bitsDirective = NULL;
Sanjiv Gupta085ae4f2008-11-19 11:00:54 +000032 ZeroDirective = NULL;
Sanjiv Gupta4affaea2009-01-13 19:18:47 +000033 AsciiDirective = " dt ";
34 AscizDirective = NULL;
Chris Lattnerd8310522009-07-27 05:32:16 +000035
Chris Lattnerc4c40a92009-07-28 03:13:23 +000036 RomData8bitsDirective = " dw ";
37 RomData16bitsDirective = " rom_di ";
38 RomData32bitsDirective = " rom_dl ";
39
40
Sanjiv Gupta14eba042009-05-28 18:24:11 +000041 // Set it to false because we weed to generate c file name and not bc file
42 // name.
43 HasSingleParameterDotFile = false;
Sanjiv Gupta09bb4202008-05-13 09:02:57 +000044}
Sanjiv Guptadc2943d2009-01-30 04:25:10 +000045
Chris Lattner621c44d2009-08-22 20:48:53 +000046const char *PIC16MCAsmInfo::getDataASDirective(unsigned Size,
47 unsigned AS) const {
Chris Lattnerc4c40a92009-07-28 03:13:23 +000048 if (AS != PIC16ISD::ROM_SPACE)
49 return 0;
50
Chris Lattnerc8859c52009-07-20 17:12:46 +000051 switch (Size) {
52 case 8: return RomData8bitsDirective;
53 case 16: return RomData16bitsDirective;
54 case 32: return RomData32bitsDirective;
55 default: return NULL;
56 }
Sanjiv Gupta46fc9fe2009-02-02 16:53:06 +000057}
Sanjiv Guptadc2943d2009-01-30 04:25:10 +000058