LLVM  8.0.1
SaveAndRestore.h
Go to the documentation of this file.
1 //===-- SaveAndRestore.h - Utility -------------------------------*- C++ -*-=//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// This file provides utility classes that use RAII to save and restore
12 /// values.
13 ///
14 //===----------------------------------------------------------------------===//
15 
16 #ifndef LLVM_SUPPORT_SAVEANDRESTORE_H
17 #define LLVM_SUPPORT_SAVEANDRESTORE_H
18 
19 namespace llvm {
20 
21 /// A utility class that uses RAII to save and restore the value of a variable.
22 template <typename T> struct SaveAndRestore {
23  SaveAndRestore(T &X) : X(X), OldValue(X) {}
24  SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) {
25  X = NewValue;
26  }
27  ~SaveAndRestore() { X = OldValue; }
28  T get() { return OldValue; }
29 
30 private:
31  T &X;
32  T OldValue;
33 };
34 
35 } // namespace llvm
36 
37 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
SaveAndRestore(T &X, const T &NewValue)
A utility class that uses RAII to save and restore the value of a variable.