OLD | NEW |
(Empty) | |
| 1 //===- subzero/src/IceTypeConverter.h - Convert ICE/LLVM Types --*- C++ -*-===// |
| 2 // |
| 3 // The Subzero Code Generator |
| 4 // |
| 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. |
| 7 // |
| 8 //===----------------------------------------------------------------------===// |
| 9 // |
| 10 // This file defines how to convert LLVM types to ICE types, and ICE types |
| 11 // to LLVM types. |
| 12 // |
| 13 //===----------------------------------------------------------------------===// |
| 14 |
| 15 #ifndef SUBZERO_SRC_ICETYPECONVERTER_H |
| 16 #define SUBZERO_SRC_ICETYPECONVERTER_H |
| 17 |
| 18 #include "IceDefs.h" |
| 19 #include "IceTypes.h" |
| 20 #include "llvm/IR/DerivedTypes.h" |
| 21 |
| 22 namespace llvm { |
| 23 class LLVMContext; |
| 24 } // end of llvm namespace. |
| 25 |
| 26 namespace Ice { |
| 27 |
| 28 /// Converts LLVM types to ICE types, and ICE types to LLVM types. |
| 29 class TypeConverter { |
| 30 TypeConverter(const TypeConverter &) LLVM_DELETED_FUNCTION; |
| 31 TypeConverter &operator=(const TypeConverter &) LLVM_DELETED_FUNCTION; |
| 32 |
| 33 public: |
| 34 /// Context is the context to use to build llvm types. |
| 35 TypeConverter(llvm::LLVMContext &Context); |
| 36 |
| 37 /// Returns the LLVM type for the corresponding ICE type Ty. |
| 38 llvm::Type *convertToLLVMType(Type Ty) const { |
| 39 // Note: We use "at" here in case Ty wasn't registered. |
| 40 return LLVMTypes.at(Ty); |
| 41 } |
| 42 |
| 43 /// Converts LLVM type LLVMTy to an ICE type. Returns |
| 44 /// Ice::IceType_NUM if unable to convert. |
| 45 Type convertToIceType(llvm::Type *LLVMTy) const { |
| 46 std::map<llvm::Type *, Type>::const_iterator Pos = LLVM2IceMap.find(LLVMTy); |
| 47 if (Pos == LLVM2IceMap.end()) |
| 48 return convertToIceTypeOther(LLVMTy); |
| 49 return Pos->second; |
| 50 } |
| 51 |
| 52 /// Returns ICE model of pointer type. |
| 53 Type getIcePointerType() const { return IceType_i32; } |
| 54 |
| 55 /// Returns LLVM integer type with specified number of bits. Returns |
| 56 /// NULL if not a valid PNaCl integer type. |
| 57 llvm::Type *getLLVMIntegerType(unsigned NumBits) const; |
| 58 |
| 59 /// Returns the LLVM vector type for Size and Ty arguments. Returns |
| 60 /// NULL if not a valid PNaCl vector type. |
| 61 llvm::Type *getLLVMVectorType(unsigned Size, Type Ty) const; |
| 62 |
| 63 private: |
| 64 // The LLVM context to use to build LLVM types. |
| 65 llvm::LLVMContext &Context; |
| 66 // The list of allowable LLVM types. Indexed by ICE type. |
| 67 std::vector<llvm::Type *> LLVMTypes; |
| 68 // The inverse mapping of LLVMTypes. |
| 69 std::map<llvm::Type *, Type> LLVM2IceMap; |
| 70 |
| 71 // Add LLVM/ICE pair to internal tables. |
| 72 void AddLLVMType(Type Ty, llvm::Type *LLVMTy); |
| 73 |
| 74 // Converts types not in LLVM2IceMap. |
| 75 Type convertToIceTypeOther(llvm::Type *LLVMTy) const; |
| 76 }; |
| 77 |
| 78 } // end of Ice namespace. |
| 79 |
| 80 #endif // SUBZERO_SRC_ICETYPECONVERTER_H |
OLD | NEW |