2008-02-06 23:27:42 +01:00
|
|
|
//===-- llvm/CodeGen/PseudoSourceValue.cpp ----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the PseudoSourceValue class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-07-25 02:02:30 +02:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2008-02-06 23:27:42 +01:00
|
|
|
#include "llvm/CodeGen/PseudoSourceValue.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
2009-10-27 18:02:08 +01:00
|
|
|
#include "llvm/LLVMContext.h"
|
2009-07-11 22:10:48 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2008-02-06 23:27:42 +01:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2008-08-24 20:51:20 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-07-12 00:44:52 +02:00
|
|
|
#include <map>
|
2008-08-24 22:37:32 +02:00
|
|
|
using namespace llvm;
|
2008-02-06 23:27:42 +01:00
|
|
|
|
2008-08-24 22:37:32 +02:00
|
|
|
static ManagedStatic<PseudoSourceValue[4]> PSVs;
|
2008-02-06 23:27:42 +01:00
|
|
|
|
2008-08-24 22:37:32 +02:00
|
|
|
const PseudoSourceValue *PseudoSourceValue::getStack()
|
|
|
|
{ return &(*PSVs)[0]; }
|
|
|
|
const PseudoSourceValue *PseudoSourceValue::getGOT()
|
|
|
|
{ return &(*PSVs)[1]; }
|
|
|
|
const PseudoSourceValue *PseudoSourceValue::getJumpTable()
|
|
|
|
{ return &(*PSVs)[2]; }
|
|
|
|
const PseudoSourceValue *PseudoSourceValue::getConstantPool()
|
|
|
|
{ return &(*PSVs)[3]; }
|
2008-02-06 23:27:42 +01:00
|
|
|
|
2008-08-24 22:37:32 +02:00
|
|
|
static const char *const PSVNames[] = {
|
|
|
|
"Stack",
|
|
|
|
"GOT",
|
|
|
|
"JumpTable",
|
|
|
|
"ConstantPool"
|
|
|
|
};
|
2008-02-06 23:27:42 +01:00
|
|
|
|
2009-08-13 23:58:54 +02:00
|
|
|
// FIXME: THIS IS A HACK!!!!
|
|
|
|
// Eventually these should be uniqued on LLVMContext rather than in a managed
|
|
|
|
// static. For now, we can safely use the global context for the time being to
|
|
|
|
// squeak by.
|
2009-11-12 21:25:07 +01:00
|
|
|
PseudoSourceValue::PseudoSourceValue(enum ValueTy Subclass) :
|
2009-10-06 17:40:36 +02:00
|
|
|
Value(Type::getInt8PtrTy(getGlobalContext()),
|
2009-11-12 21:25:07 +01:00
|
|
|
Subclass) {}
|
2008-02-06 23:27:42 +01:00
|
|
|
|
2009-09-23 03:33:16 +02:00
|
|
|
void PseudoSourceValue::printCustom(raw_ostream &O) const {
|
|
|
|
O << PSVNames[this - *PSVs];
|
2008-08-24 22:37:32 +02:00
|
|
|
}
|
2008-07-12 00:44:52 +02:00
|
|
|
|
2008-08-24 22:37:32 +02:00
|
|
|
static ManagedStatic<std::map<int, const PseudoSourceValue *> > FSValues;
|
2008-07-12 00:44:52 +02:00
|
|
|
|
2009-10-17 09:53:04 +02:00
|
|
|
const PseudoSourceValue *PseudoSourceValue::getFixedStack(int FI) {
|
2008-08-24 22:37:32 +02:00
|
|
|
const PseudoSourceValue *&V = (*FSValues)[FI];
|
|
|
|
if (!V)
|
2009-10-17 09:53:04 +02:00
|
|
|
V = new FixedStackPseudoSourceValue(FI);
|
2008-08-24 22:37:32 +02:00
|
|
|
return V;
|
|
|
|
}
|
2008-07-25 02:02:30 +02:00
|
|
|
|
2008-08-24 22:37:32 +02:00
|
|
|
bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
|
|
|
|
if (this == getStack())
|
2008-07-25 02:02:30 +02:00
|
|
|
return false;
|
2008-08-24 22:37:32 +02:00
|
|
|
if (this == getGOT() ||
|
|
|
|
this == getConstantPool() ||
|
|
|
|
this == getJumpTable())
|
|
|
|
return true;
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable("Unknown PseudoSourceValue!");
|
2008-08-24 22:37:32 +02:00
|
|
|
return false;
|
|
|
|
}
|
2008-07-25 02:02:30 +02:00
|
|
|
|
2009-10-18 21:58:47 +02:00
|
|
|
bool PseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
|
2009-10-18 20:16:27 +02:00
|
|
|
if (this == getStack() ||
|
|
|
|
this == getGOT() ||
|
|
|
|
this == getConstantPool() ||
|
|
|
|
this == getJumpTable())
|
|
|
|
return false;
|
|
|
|
llvm_unreachable("Unknown PseudoSourceValue!");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-02 00:50:04 +01:00
|
|
|
bool PseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
|
|
|
|
if (this == getGOT() ||
|
|
|
|
this == getConstantPool() ||
|
|
|
|
this == getJumpTable())
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-17 09:53:04 +02:00
|
|
|
bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{
|
2008-08-24 22:37:32 +02:00
|
|
|
return MFI && MFI->isImmutableObjectIndex(FI);
|
2008-02-06 23:27:42 +01:00
|
|
|
}
|
2009-10-18 20:16:27 +02:00
|
|
|
|
2009-10-18 21:58:47 +02:00
|
|
|
bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
|
2009-10-18 20:16:27 +02:00
|
|
|
// Negative frame indices are used for special things that don't
|
|
|
|
// appear in LLVM IR. Non-negative indices may be used for things
|
|
|
|
// like static allocas.
|
2009-10-18 21:58:47 +02:00
|
|
|
if (!MFI)
|
|
|
|
return FI >= 0;
|
|
|
|
// Spill slots should not alias others.
|
|
|
|
return !MFI->isFixedObjectIndex(FI) && !MFI->isSpillSlotObjectIndex(FI);
|
2009-10-18 20:16:27 +02:00
|
|
|
}
|
2009-11-02 00:50:04 +01:00
|
|
|
|
|
|
|
bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
|
|
|
|
if (!MFI)
|
|
|
|
return true;
|
|
|
|
// Spill slots will not alias any LLVM IR value.
|
|
|
|
return !MFI->isSpillSlotObjectIndex(FI);
|
|
|
|
}
|
2009-11-12 22:49:55 +01:00
|
|
|
|
|
|
|
void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const {
|
|
|
|
OS << "FixedStack" << FI;
|
|
|
|
}
|