opnsense-src/utils/TableGen/TGValueTypes.cpp

124 lines
3.4 KiB
C++
Raw Normal View History

2009-06-02 13:52:33 -04:00
//===- ValueTypes.cpp - Tablegen extended ValueType implementation --------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
2009-10-14 13:57:32 -04:00
// The EVT type is used by tablegen as well as in LLVM. In order to handle
// extended types, the EVT type uses support functions that call into
2009-06-02 13:52:33 -04:00
// LLVM's type system code. These aren't accessible in tablegen, so this
// file provides simple replacements.
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/ValueTypes.h"
#include "llvm/Support/Casting.h"
2009-06-02 13:52:33 -04:00
#include <map>
using namespace llvm;
namespace llvm {
class Type {
protected:
enum TypeKind {
TK_ExtendedIntegerType,
TK_ExtendedVectorType
};
private:
TypeKind Kind;
2009-06-02 13:52:33 -04:00
public:
TypeKind getKind() const {
return Kind;
}
Type(TypeKind K) : Kind(K) {}
2009-06-02 13:52:33 -04:00
virtual unsigned getSizeInBits() const = 0;
virtual ~Type() {}
};
}
class ExtendedIntegerType : public Type {
unsigned BitWidth;
public:
explicit ExtendedIntegerType(unsigned bits)
: Type(TK_ExtendedIntegerType), BitWidth(bits) {}
static bool classof(const Type *T) {
return T->getKind() == TK_ExtendedIntegerType;
}
2009-06-02 13:52:33 -04:00
unsigned getSizeInBits() const {
return getBitWidth();
}
unsigned getBitWidth() const {
return BitWidth;
}
};
class ExtendedVectorType : public Type {
2009-10-14 13:57:32 -04:00
EVT ElementType;
2009-06-02 13:52:33 -04:00
unsigned NumElements;
public:
2009-10-14 13:57:32 -04:00
ExtendedVectorType(EVT elty, unsigned num)
: Type(TK_ExtendedVectorType), ElementType(elty), NumElements(num) {}
static bool classof(const Type *T) {
return T->getKind() == TK_ExtendedVectorType;
}
2009-06-02 13:52:33 -04:00
unsigned getSizeInBits() const {
return getNumElements() * getElementType().getSizeInBits();
}
2009-10-14 13:57:32 -04:00
EVT getElementType() const {
2009-06-02 13:52:33 -04:00
return ElementType;
}
unsigned getNumElements() const {
return NumElements;
}
};
static std::map<unsigned, const Type *>
ExtendedIntegerTypeMap;
static std::map<std::pair<uintptr_t, uintptr_t>, const Type *>
ExtendedVectorTypeMap;
2009-10-14 13:57:32 -04:00
bool EVT::isExtendedFloatingPoint() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
// Extended floating-point types are not supported yet.
return false;
}
2009-10-14 13:57:32 -04:00
bool EVT::isExtendedInteger() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
return isa<ExtendedIntegerType>(LLVMTy);
2009-06-02 13:52:33 -04:00
}
2009-10-14 13:57:32 -04:00
bool EVT::isExtendedVector() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
return isa<ExtendedVectorType>(LLVMTy);
2009-06-02 13:52:33 -04:00
}
2009-10-14 13:57:32 -04:00
bool EVT::isExtended64BitVector() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
return isExtendedVector() && getSizeInBits() == 64;
}
2009-10-14 13:57:32 -04:00
bool EVT::isExtended128BitVector() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
return isExtendedVector() && getSizeInBits() == 128;
}
2009-10-14 13:57:32 -04:00
EVT EVT::getExtendedVectorElementType() const {
2009-06-02 13:52:33 -04:00
assert(isExtendedVector() && "Type is not an extended vector!");
return static_cast<const ExtendedVectorType *>(LLVMTy)->getElementType();
}
2009-10-14 13:57:32 -04:00
unsigned EVT::getExtendedVectorNumElements() const {
2009-06-02 13:52:33 -04:00
assert(isExtendedVector() && "Type is not an extended vector!");
return static_cast<const ExtendedVectorType *>(LLVMTy)->getNumElements();
}
2009-10-14 13:57:32 -04:00
unsigned EVT::getExtendedSizeInBits() const {
2009-06-02 13:52:33 -04:00
assert(isExtended() && "Type is not extended!");
return LLVMTy->getSizeInBits();
}