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-10-06 22:01:59 +00:00
|
|
|
namespace ARM {
|
|
|
|
/// SubregIndex - The index of various subregister classes. Note that
|
|
|
|
/// these indices must be kept in sync with the class indices in the
|
|
|
|
/// ARMRegisterInfo.td file.
|
|
|
|
enum SubregIndex {
|
|
|
|
SSUBREG_0 = 1, SSUBREG_1 = 2, SSUBREG_2 = 3, SSUBREG_3 = 4,
|
2010-05-06 06:36:08 +00:00
|
|
|
DSUBREG_0 = 5, DSUBREG_1 = 6, DSUBREG_2 = 7, DSUBREG_3 = 8,
|
|
|
|
QSUBREG_0 = 9, QSUBREG_1 = 10
|
2009-10-06 22:01:59 +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
|