2006-03-23 19:01:12 +01:00
|
|
|
//===-- llvm/CodeGen/MachineLocation.h --------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-03-23 19:01:12 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// The MachineLocation class is used to represent a simple location in a machine
|
|
|
|
// frame. Locations will be one of two forms; a register or an address formed
|
2006-04-07 18:34:46 +02:00
|
|
|
// from a base address plus an offset. Register indirection can be specified by
|
|
|
|
// using an offset of zero.
|
|
|
|
//
|
|
|
|
// The MachineMove class is used to represent abstract move operations in the
|
|
|
|
// prolog/epilog of a compiled function. A collection of these objects can be
|
|
|
|
// used by a debug consumer to track the location of values when unwinding stack
|
|
|
|
// frames.
|
2006-03-23 19:01:12 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_MACHINELOCATION_H
|
|
|
|
#define LLVM_CODEGEN_MACHINELOCATION_H
|
|
|
|
|
|
|
|
namespace llvm {
|
2010-03-14 09:12:40 +01:00
|
|
|
class MCSymbol;
|
|
|
|
|
2006-03-23 19:01:12 +01:00
|
|
|
class MachineLocation {
|
|
|
|
private:
|
|
|
|
bool IsRegister; // True if location is a register.
|
|
|
|
unsigned Register; // gcc/gdb register number.
|
|
|
|
int Offset; // Displacement if not register.
|
|
|
|
public:
|
2006-04-07 18:34:46 +02:00
|
|
|
enum {
|
|
|
|
// The target register number for an abstract frame pointer. The value is
|
2008-02-10 19:45:23 +01:00
|
|
|
// an arbitrary value greater than TargetRegisterInfo::FirstVirtualRegister.
|
2006-04-07 18:34:46 +02:00
|
|
|
VirtualFP = ~0U
|
|
|
|
};
|
2006-03-23 19:01:12 +01:00
|
|
|
MachineLocation()
|
2010-03-14 09:12:40 +01:00
|
|
|
: IsRegister(false), Register(0), Offset(0) {}
|
2007-03-23 19:44:11 +01:00
|
|
|
explicit MachineLocation(unsigned R)
|
2010-03-14 09:12:40 +01:00
|
|
|
: IsRegister(true), Register(R), Offset(0) {}
|
2006-03-23 19:01:12 +01:00
|
|
|
MachineLocation(unsigned R, int O)
|
2010-03-14 09:12:40 +01:00
|
|
|
: IsRegister(false), Register(R), Offset(O) {}
|
2006-03-23 19:01:12 +01:00
|
|
|
|
|
|
|
// Accessors
|
2008-10-03 17:45:36 +02:00
|
|
|
bool isReg() const { return IsRegister; }
|
|
|
|
unsigned getReg() const { return Register; }
|
2006-03-23 19:01:12 +01:00
|
|
|
int getOffset() const { return Offset; }
|
|
|
|
void setIsRegister(bool Is) { IsRegister = Is; }
|
|
|
|
void setRegister(unsigned R) { Register = R; }
|
|
|
|
void setOffset(int O) { Offset = O; }
|
|
|
|
void set(unsigned R) {
|
|
|
|
IsRegister = true;
|
|
|
|
Register = R;
|
|
|
|
Offset = 0;
|
|
|
|
}
|
|
|
|
void set(unsigned R, int O) {
|
|
|
|
IsRegister = false;
|
|
|
|
Register = R;
|
|
|
|
Offset = O;
|
|
|
|
}
|
2006-04-07 18:34:46 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
void dump();
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2010-03-14 09:12:40 +01:00
|
|
|
/// MachineMove - This class represents the save or restore of a callee saved
|
|
|
|
/// register that exception or debug info needs to know about.
|
2006-04-07 18:34:46 +02:00
|
|
|
class MachineMove {
|
|
|
|
private:
|
2010-03-14 09:12:40 +01:00
|
|
|
/// Label - Symbol for post-instruction address when result of move takes
|
|
|
|
/// effect.
|
|
|
|
MCSymbol *Label;
|
2006-04-07 18:34:46 +02:00
|
|
|
|
2010-03-14 09:12:40 +01:00
|
|
|
// Move to & from location.
|
|
|
|
MachineLocation Destination, Source;
|
2006-04-07 18:34:46 +02:00
|
|
|
public:
|
2010-03-14 09:12:40 +01:00
|
|
|
MachineMove() : Label(0) {}
|
2007-01-24 19:45:13 +01:00
|
|
|
|
2010-03-15 06:55:35 +01:00
|
|
|
MachineMove(MCSymbol *label, const MachineLocation &D,
|
|
|
|
const MachineLocation &S)
|
2010-03-14 09:12:40 +01:00
|
|
|
: Label(label), Destination(D), Source(S) {}
|
2006-04-07 18:34:46 +02:00
|
|
|
|
|
|
|
// Accessors
|
2010-03-14 09:12:40 +01:00
|
|
|
MCSymbol *getLabel() const { return Label; }
|
2006-04-07 18:34:46 +02:00
|
|
|
const MachineLocation &getDestination() const { return Destination; }
|
|
|
|
const MachineLocation &getSource() const { return Source; }
|
2006-03-23 19:01:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|