blob: 9030d065bd60fae39ef6d8e7f030c11575a57e0a [file] [log] [blame]
Jim Laskey8e8de8f2006-09-07 22:05:02 +00001//=====-- ARMTargetAsmInfo.h - ARM 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 declaration of the ARMTargetAsmInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ARMTARGETASMINFO_H
15#define ARMTARGETASMINFO_H
16
17#include "llvm/Target/TargetAsmInfo.h"
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +000018#include "llvm/Target/ELFTargetAsmInfo.h"
19#include "llvm/Target/DarwinTargetAsmInfo.h"
20
Dale Johannesen67cf5612007-05-02 01:02:40 +000021#include "ARMSubtarget.h"
Jim Laskey8e8de8f2006-09-07 22:05:02 +000022
23namespace llvm {
24
25 // Forward declaration.
26 class ARMTargetMachine;
27
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +000028 struct ARMTargetAsmInfo : public virtual TargetAsmInfo {
Dan Gohman677ccc62007-09-25 20:27:06 +000029 explicit ARMTargetAsmInfo(const ARMTargetMachine &TM);
Dale Johannesen24fb52d2007-04-23 20:04:35 +000030
Dale Johannesen67cf5612007-05-02 01:02:40 +000031 const ARMSubtarget *Subtarget;
Dale Johannesen86501992007-04-29 19:17:45 +000032
33 virtual unsigned getInlineAsmLength(const char *Str) const;
Dale Johannesen67cf5612007-05-02 01:02:40 +000034 unsigned countArguments(const char *p) const;
35 unsigned countString(const char *p) const;
Jim Laskey8e8de8f2006-09-07 22:05:02 +000036 };
37
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +000038 struct ARMDarwinTargetAsmInfo : public virtual ARMTargetAsmInfo,
39 public virtual DarwinTargetAsmInfo {
40 explicit ARMDarwinTargetAsmInfo(const ARMTargetMachine &TM);
41 };
42
43 struct ARMELFTargetAsmInfo : public virtual ARMTargetAsmInfo,
44 public virtual ELFTargetAsmInfo {
45 explicit ARMELFTargetAsmInfo(const ARMTargetMachine &TM);
46 };
Jim Laskey8e8de8f2006-09-07 22:05:02 +000047
48} // namespace llvm
49
50#endif