Re-apply the memory operand changes, with a fix for the static
[oota-llvm.git] / include / llvm / CodeGen / PseudoSourceValue.h
1 //===-- llvm/CodeGen/PseudoSourceValue.h ------------------------*- 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 // This file contains the declaration of the PseudoSourceValue class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
15 #define LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
16
17 #include "llvm/Value.h"
18
19 namespace llvm {
20   /// PseudoSourceValue - Special value supplied for machine level alias
21   /// analysis. It indicates that the a memory access references the functions
22   /// stack frame (e.g., a spill slot), below the stack frame (e.g., argument
23   /// space), or constant pool.
24   class PseudoSourceValue : public Value {
25   public:
26     PseudoSourceValue();
27
28     virtual void print(std::ostream &OS) const;
29
30     /// classof - Methods for support type inquiry through isa, cast, and
31     /// dyn_cast:
32     ///
33     static inline bool classof(const PseudoSourceValue *) { return true; }
34     static inline bool classof(const Value *V) {
35       return V->getValueID() == PseudoSourceValueVal;
36     }
37
38     /// A pseudo source value referencing to the stack frame of a function,
39     /// e.g., a spill slot.
40     static const PseudoSourceValue &getFixedStack();
41
42     /// A source value referencing the area below the stack frame of a function,
43     /// e.g., the argument space.
44     static const PseudoSourceValue &getStack();
45
46     /// A source value referencing the global offset table (or something the
47     /// like).
48     static const PseudoSourceValue &getGOT();
49
50     /// A SV referencing the constant pool
51     static const PseudoSourceValue &getConstantPool();
52
53     /// A SV referencing the jump table
54     static const PseudoSourceValue &getJumpTable();
55   };
56 } // End llvm namespace
57
58 #endif