mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-05 18:37:17 +00:00
Add initial support for register and register class representation.
Obviously this is not done. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15804 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
303603f758
commit
8dab6ca9c6
37
utils/TableGen/CodeGenRegisters.h
Normal file
37
utils/TableGen/CodeGenRegisters.h
Normal file
@ -0,0 +1,37 @@
|
||||
//===- CodeGenRegisters.h - Register and RegisterClass Info -----*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file was developed by the LLVM research group and is distributed under
|
||||
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines structures to encapsulate information gleaned from the
|
||||
// target register and register class definitions.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef CODEGEN_REGISTERS_H
|
||||
#define CODEGEN_REGISTERS_H
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
class Record;
|
||||
|
||||
/// CodeGenRegister - Represents a register definition.
|
||||
struct CodeGenRegister {
|
||||
Record *TheDef;
|
||||
const std::string &getName() const;
|
||||
|
||||
CodeGenRegister(Record *R) : TheDef(R) {}
|
||||
};
|
||||
|
||||
|
||||
struct CodeGenRegisterClass {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user