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