opnsense-src/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp

125 lines
3.5 KiB
C++
Raw Normal View History

2009-06-02 13:52:33 -04: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.
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/PseudoSourceValue.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/LLVMContext.h"
2009-10-14 13:57:32 -04:00
#include "llvm/Support/ErrorHandling.h"
2009-06-02 13:52:33 -04:00
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/Mutex.h"
#include "llvm/Support/raw_ostream.h"
2009-06-02 13:52:33 -04:00
#include <map>
using namespace llvm;
2010-03-06 04:22:29 -05:00
namespace {
struct PSVGlobalsTy {
// PseudoSourceValues are immutable so don't need locking.
const PseudoSourceValue PSVs[4];
sys::Mutex Lock; // Guards FSValues, but not the values inside it.
std::map<int, const PseudoSourceValue *> FSValues;
PSVGlobalsTy() : PSVs() {}
~PSVGlobalsTy() {
for (std::map<int, const PseudoSourceValue *>::iterator
I = FSValues.begin(), E = FSValues.end(); I != E; ++I) {
delete I->second;
}
}
};
static ManagedStatic<PSVGlobalsTy> PSVGlobals;
} // anonymous namespace
2009-06-02 13:52:33 -04:00
const PseudoSourceValue *PseudoSourceValue::getStack()
2010-03-06 04:22:29 -05:00
{ return &PSVGlobals->PSVs[0]; }
2009-06-02 13:52:33 -04:00
const PseudoSourceValue *PseudoSourceValue::getGOT()
2010-03-06 04:22:29 -05:00
{ return &PSVGlobals->PSVs[1]; }
2009-06-02 13:52:33 -04:00
const PseudoSourceValue *PseudoSourceValue::getJumpTable()
2010-03-06 04:22:29 -05:00
{ return &PSVGlobals->PSVs[2]; }
2009-06-02 13:52:33 -04:00
const PseudoSourceValue *PseudoSourceValue::getConstantPool()
2010-03-06 04:22:29 -05:00
{ return &PSVGlobals->PSVs[3]; }
2009-06-02 13:52:33 -04:00
static const char *const PSVNames[] = {
"Stack",
"GOT",
"JumpTable",
"ConstantPool"
};
PseudoSourceValue::PseudoSourceValue(bool isFixed) : isFixed(isFixed) {}
PseudoSourceValue::~PseudoSourceValue() {}
2009-06-02 13:52:33 -04:00
2009-10-14 13:57:32 -04:00
void PseudoSourceValue::printCustom(raw_ostream &O) const {
2010-03-06 04:22:29 -05:00
O << PSVNames[this - PSVGlobals->PSVs];
2009-06-02 13:52:33 -04:00
}
const PseudoSourceValue *PseudoSourceValue::getFixedStack(int FI) {
2010-03-06 04:22:29 -05:00
PSVGlobalsTy &PG = *PSVGlobals;
sys::ScopedLock locked(PG.Lock);
const PseudoSourceValue *&V = PG.FSValues[FI];
2009-06-02 13:52:33 -04:00
if (!V)
V = new FixedStackPseudoSourceValue(FI);
return V;
}
bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
if (this == getStack())
return false;
if (this == getGOT() ||
this == getConstantPool() ||
this == getJumpTable())
return true;
2009-10-14 13:57:32 -04:00
llvm_unreachable("Unknown PseudoSourceValue!");
2009-06-02 13:52:33 -04:00
}
2009-10-23 10:19:52 -04:00
bool PseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
if (this == getStack() ||
this == getGOT() ||
this == getConstantPool() ||
this == getJumpTable())
return false;
llvm_unreachable("Unknown PseudoSourceValue!");
}
2009-11-04 09:58:56 -05:00
bool PseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
if (this == getGOT() ||
this == getConstantPool() ||
this == getJumpTable())
return false;
return true;
}
2009-06-02 13:52:33 -04:00
bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{
return MFI && MFI->isImmutableObjectIndex(FI);
}
2009-10-23 10:19:52 -04:00
bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const {
if (!MFI)
return true;
return MFI->isAliasedObjectIndex(FI);
2009-10-23 10:19:52 -04:00
}
2009-11-04 09:58:56 -05: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-18 09:58:34 -05:00
void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const {
OS << "FixedStack" << FI;
}