Add an "alignment" field to the MachineFunction object. It makes more sense to
[oota-llvm.git] / include / llvm / CodeGen / MachineMemOperand.h
1 //==- llvm/CodeGen/MachineMemOperand.h - MachineMemOperand class -*- 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 MachineMemOperand class, which is a
11 // description of a memory reference. It is used to help track dependencies
12 // in the backend.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_CODEGEN_MACHINEMEMOPERAND_H
17 #define LLVM_CODEGEN_MACHINEMEMOPERAND_H
18
19 namespace llvm {
20
21 class Value;
22 class FoldingSetNodeID;
23
24 //===----------------------------------------------------------------------===//
25 /// MachineMemOperand - A description of a memory reference used in the backend.
26 /// Instead of holding a StoreInst or LoadInst, this class holds the address
27 /// Value of the reference along with a byte size and offset. This allows it
28 /// to describe lowered loads and stores. Also, the special PseudoSourceValue
29 /// objects can be used to represent loads and stores to memory locations
30 /// that aren't explicit in the regular LLVM IR.
31 ///
32 class MachineMemOperand {
33   int64_t Offset;
34   uint64_t Size;
35   const Value *V;
36   unsigned int Flags;
37
38 public:
39   /// Flags values. These may be or'd together.
40   enum MemOperandFlags {
41     /// The memory access reads data.
42     MOLoad = 1,
43     /// The memory access writes data.
44     MOStore = 2,
45     /// The memory access is volatile.
46     MOVolatile = 4
47   };
48
49   /// MachineMemOperand - Construct an MachineMemOperand object with the
50   /// specified address Value, flags, offset, size, and alignment.
51   MachineMemOperand(const Value *v, unsigned int f, int64_t o, uint64_t s,
52                     unsigned int a);
53
54   /// getValue - Return the base address of the memory access.
55   /// Special values are PseudoSourceValue::FPRel, PseudoSourceValue::SPRel,
56   /// and the other PseudoSourceValue members which indicate references to
57   /// frame/stack pointer relative references and other special references.
58   const Value *getValue() const { return V; }
59
60   /// getFlags - Return the raw flags of the source value, \see MemOperandFlags.
61   unsigned int getFlags() const { return Flags & 7; }
62
63   /// getOffset - For normal values, this is a byte offset added to the base
64   /// address. For PseudoSourceValue::FPRel values, this is the FrameIndex
65   /// number.
66   int64_t getOffset() const { return Offset; }
67
68   /// getSize - Return the size in bytes of the memory reference.
69   uint64_t getSize() const { return Size; }
70
71   /// getAlignment - Return the minimum known alignment in bytes of the
72   /// memory reference.
73   unsigned int getAlignment() const { return (1u << (Flags >> 3)) >> 1; }
74
75   bool isLoad() const { return Flags & MOLoad; }
76   bool isStore() const { return Flags & MOStore; }
77   bool isVolatile() const { return Flags & MOVolatile; }
78
79   /// Profile - Gather unique data for the object.
80   ///
81   void Profile(FoldingSetNodeID &ID) const;
82 };
83
84 } // End llvm namespace
85
86 #endif