| OLD | NEW |
| 1 //===- subzero/src/IceTypeConverter.h - Convert ICE/LLVM Types --*- C++ -*-===// | 1 //===- subzero/src/IceTypeConverter.h - Convert ICE/LLVM Types --*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file defines how to convert LLVM types to ICE types, and ICE types | 10 // This file defines how to convert LLVM types to ICE types, and ICE types |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 /// NULL if not a valid PNaCl vector type. | 61 /// NULL if not a valid PNaCl vector type. |
| 62 llvm::Type *getLLVMVectorType(unsigned Size, Type Ty) const; | 62 llvm::Type *getLLVMVectorType(unsigned Size, Type Ty) const; |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 // The list of allowable LLVM types. Indexed by ICE type. | 65 // The list of allowable LLVM types. Indexed by ICE type. |
| 66 std::vector<llvm::Type *> LLVMTypes; | 66 std::vector<llvm::Type *> LLVMTypes; |
| 67 // The inverse mapping of LLVMTypes. | 67 // The inverse mapping of LLVMTypes. |
| 68 std::map<llvm::Type *, Type> LLVM2IceMap; | 68 std::map<llvm::Type *, Type> LLVM2IceMap; |
| 69 | 69 |
| 70 // Add LLVM/ICE pair to internal tables. | 70 // Add LLVM/ICE pair to internal tables. |
| 71 void AddLLVMType(Type Ty, llvm::Type *LLVMTy); | 71 void addLLVMType(Type Ty, llvm::Type *LLVMTy); |
| 72 | 72 |
| 73 // Converts types not in LLVM2IceMap. | 73 // Converts types not in LLVM2IceMap. |
| 74 Type convertToIceTypeOther(llvm::Type *LLVMTy) const; | 74 Type convertToIceTypeOther(llvm::Type *LLVMTy) const; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // end of Ice namespace. | 77 } // end of Ice namespace. |
| 78 | 78 |
| 79 #endif // SUBZERO_SRC_ICETYPECONVERTER_H | 79 #endif // SUBZERO_SRC_ICETYPECONVERTER_H |
| OLD | NEW |