| OLD | NEW |
| 1 //===- subzero/src/IceIntrinsics.h - List of Ice Intrinsics -----*- C++ -*-===// | 1 //===- subzero/src/IceIntrinsics.h - List of Ice Intrinsics -----*- 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 declares the kinds of intrinsics supported by PNaCl. | 10 // This file declares the kinds of intrinsics supported by PNaCl. |
| 11 // | 11 // |
| 12 //===----------------------------------------------------------------------===// | 12 //===----------------------------------------------------------------------===// |
| 13 | 13 |
| 14 #ifndef SUBZERO_SRC_ICEINTRINSICS_H | 14 #ifndef SUBZERO_SRC_ICEINTRINSICS_H |
| 15 #define SUBZERO_SRC_ICEINTRINSICS_H | 15 #define SUBZERO_SRC_ICEINTRINSICS_H |
| 16 | 16 |
| 17 #include "IceDefs.h" | 17 #include "IceDefs.h" |
| 18 #include "IceTypes.h" |
| 18 | 19 |
| 19 namespace Ice { | 20 namespace Ice { |
| 20 | 21 |
| 21 static const size_t kMaxIntrinsicParameters = 6; | 22 static const size_t kMaxIntrinsicParameters = 6; |
| 22 | 23 |
| 23 class Intrinsics { | 24 class Intrinsics { |
| 24 public: | 25 public: |
| 25 Intrinsics(); | 26 Intrinsics(); |
| 26 ~Intrinsics(); | 27 ~Intrinsics(); |
| 27 | 28 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap; | 86 typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap; |
| 86 IntrinsicMap map; | 87 IntrinsicMap map; |
| 87 | 88 |
| 88 Intrinsics(const Intrinsics &) LLVM_DELETED_FUNCTION; | 89 Intrinsics(const Intrinsics &) LLVM_DELETED_FUNCTION; |
| 89 Intrinsics &operator=(const Intrinsics &) LLVM_DELETED_FUNCTION; | 90 Intrinsics &operator=(const Intrinsics &) LLVM_DELETED_FUNCTION; |
| 90 }; | 91 }; |
| 91 | 92 |
| 92 } // end of namespace Ice | 93 } // end of namespace Ice |
| 93 | 94 |
| 94 #endif // SUBZERO_SRC_ICEINTRINSICS_H | 95 #endif // SUBZERO_SRC_ICEINTRINSICS_H |
| OLD | NEW |