2012-02-18 12:03:15 +00:00
|
|
|
//===-- ARMRegisterInfo.h - ARM Register Information Impl -------*- C++ -*-===//
|
2006-05-14 22:18:28 +00:00
|
|
|
//
|
|
|
|
// 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-07-08 17:28:55 +00:00
|
|
|
#include "ARMBaseRegisterInfo.h"
|
2006-05-14 22:18:28 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2013-06-07 05:54:19 +00:00
|
|
|
|
|
|
|
class ARMSubtarget;
|
2006-05-14 22:18:28 +00:00
|
|
|
|
2009-06-27 12:16:40 +00:00
|
|
|
struct ARMRegisterInfo : public ARMBaseRegisterInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2009-06-27 12:16:40 +00:00
|
|
|
public:
|
2013-06-07 05:54:19 +00:00
|
|
|
ARMRegisterInfo(const ARMSubtarget &STI);
|
2006-05-14 22:18:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|