| OLD | NEW |
| 1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- C++ -*-===// | 1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- 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 aspects of the compilation that persist across | 10 // This file declares aspects of the compilation that persist across |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 llvm::BumpPtrAllocator Allocator; | 98 llvm::BumpPtrAllocator Allocator; |
| 99 VerboseMask VMask; | 99 VerboseMask VMask; |
| 100 llvm::OwningPtr<class ConstantPool> ConstPool; | 100 llvm::OwningPtr<class ConstantPool> ConstPool; |
| 101 Intrinsics IntrinsicsInfo; | 101 Intrinsics IntrinsicsInfo; |
| 102 const TargetArch Arch; | 102 const TargetArch Arch; |
| 103 const OptLevel Opt; | 103 const OptLevel Opt; |
| 104 const IceString TestPrefix; | 104 const IceString TestPrefix; |
| 105 bool HasEmittedFirstMethod; | 105 bool HasEmittedFirstMethod; |
| 106 GlobalContext(const GlobalContext &) LLVM_DELETED_FUNCTION; | 106 GlobalContext(const GlobalContext &) LLVM_DELETED_FUNCTION; |
| 107 GlobalContext &operator=(const GlobalContext &) LLVM_DELETED_FUNCTION; | 107 GlobalContext &operator=(const GlobalContext &) LLVM_DELETED_FUNCTION; |
| 108 |
| 109 // Private helpers for mangleName() |
| 110 typedef llvm::SmallVector<char, 32> ManglerVector; |
| 111 void incrementSubstitutions(ManglerVector &OldName) const; |
| 108 }; | 112 }; |
| 109 | 113 |
| 110 } // end of namespace Ice | 114 } // end of namespace Ice |
| 111 | 115 |
| 112 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H | 116 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H |
| OLD | NEW |