2008-02-06 22:27:42 +00:00
|
|
|
//===-- llvm/CodeGen/PseudoSourceValue.h ------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the PseudoSourceValue class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
|
|
|
|
#define LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
|
|
|
|
|
|
|
|
#include "llvm/Value.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2008-07-25 00:02:30 +00:00
|
|
|
class MachineFrameInfo;
|
2008-08-24 18:51:20 +00:00
|
|
|
class raw_ostream;
|
2008-07-25 00:02:30 +00:00
|
|
|
|
2008-02-06 22:27:42 +00:00
|
|
|
/// PseudoSourceValue - Special value supplied for machine level alias
|
|
|
|
/// analysis. It indicates that the a memory access references the functions
|
|
|
|
/// stack frame (e.g., a spill slot), below the stack frame (e.g., argument
|
|
|
|
/// space), or constant pool.
|
|
|
|
class PseudoSourceValue : public Value {
|
2009-09-23 01:33:16 +00:00
|
|
|
private:
|
|
|
|
/// printCustom - Implement printing for PseudoSourceValue. This is called
|
|
|
|
/// from Value::print or Value's operator<<.
|
|
|
|
///
|
|
|
|
virtual void printCustom(raw_ostream &O) const;
|
|
|
|
|
2008-02-06 22:27:42 +00:00
|
|
|
public:
|
|
|
|
PseudoSourceValue();
|
|
|
|
|
2009-09-27 15:41:19 +00:00
|
|
|
/// isConstant - Test whether the memory pointed to by this
|
|
|
|
/// PseudoSourceValue has a constant value.
|
2008-07-25 00:02:30 +00:00
|
|
|
///
|
|
|
|
virtual bool isConstant(const MachineFrameInfo *) const;
|
|
|
|
|
2008-02-06 22:27:42 +00:00
|
|
|
/// classof - Methods for support type inquiry through isa, cast, and
|
|
|
|
/// dyn_cast:
|
|
|
|
///
|
|
|
|
static inline bool classof(const PseudoSourceValue *) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return V->getValueID() == PseudoSourceValueVal;
|
|
|
|
}
|
|
|
|
|
2009-10-17 07:53:04 +00:00
|
|
|
/// A pseudo source value referencing a fixed stack frame entry,
|
|
|
|
/// e.g., a spill slot.
|
|
|
|
static const PseudoSourceValue *getFixedStack(int FI);
|
2008-02-06 22:27:42 +00:00
|
|
|
|
2009-09-23 21:06:36 +00:00
|
|
|
/// A pseudo source value referencing the area below the stack frame of
|
|
|
|
/// a function, e.g., the argument space.
|
2008-02-07 18:41:25 +00:00
|
|
|
static const PseudoSourceValue *getStack();
|
2008-02-06 22:27:42 +00:00
|
|
|
|
2009-09-23 21:06:36 +00:00
|
|
|
/// A pseudo source value referencing the global offset table
|
|
|
|
/// (or something the like).
|
2008-02-07 18:41:25 +00:00
|
|
|
static const PseudoSourceValue *getGOT();
|
2008-02-06 22:27:42 +00:00
|
|
|
|
2009-09-23 21:06:36 +00:00
|
|
|
/// A pseudo source value referencing the constant pool. Since constant
|
|
|
|
/// pools are constant, this doesn't need to identify a specific constant
|
|
|
|
/// pool entry.
|
2008-02-07 18:41:25 +00:00
|
|
|
static const PseudoSourceValue *getConstantPool();
|
2008-02-06 22:27:42 +00:00
|
|
|
|
2009-09-23 21:06:36 +00:00
|
|
|
/// A pseudo source value referencing a jump table. Since jump tables are
|
|
|
|
/// constant, this doesn't need to identify a specific jump table.
|
2008-02-07 18:41:25 +00:00
|
|
|
static const PseudoSourceValue *getJumpTable();
|
2008-02-06 22:27:42 +00:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|