2012-02-18 13:03:15 +01:00
|
|
|
//===-- ARMRegisterInfo.h - ARM Register Information Impl -------*- C++ -*-===//
|
2006-05-15 00:18:28 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-15 00:18:28 +02:00
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-10 19:45:23 +01:00
|
|
|
// This file contains the ARM implementation of the TargetRegisterInfo class.
|
2006-05-15 00:18:28 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ARMREGISTERINFO_H
|
|
|
|
#define ARMREGISTERINFO_H
|
|
|
|
|
2009-06-27 14:16:40 +02:00
|
|
|
#include "ARM.h"
|
2009-07-08 19:28:55 +02:00
|
|
|
#include "ARMBaseRegisterInfo.h"
|
2012-03-17 08:33:42 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2006-05-15 00:18:28 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2007-01-19 08:51:42 +01:00
|
|
|
class ARMSubtarget;
|
2009-07-08 20:31:39 +02:00
|
|
|
class ARMBaseInstrInfo;
|
2006-05-15 00:18:28 +02:00
|
|
|
|
2009-06-27 14:16:40 +02:00
|
|
|
struct ARMRegisterInfo : public ARMBaseRegisterInfo {
|
2011-12-20 03:50:00 +01:00
|
|
|
virtual void anchor();
|
2009-06-27 14:16:40 +02:00
|
|
|
public:
|
2009-07-08 20:31:39 +02:00
|
|
|
ARMRegisterInfo(const ARMBaseInstrInfo &tii, const ARMSubtarget &STI);
|
2006-05-15 00:18:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|