2003-09-08 17:45:59 +00:00
|
|
|
//===-- iMemory.cpp - Implement Memory instructions -----------------------===//
|
2001-07-08 21:10:27 +00:00
|
|
|
//
|
|
|
|
// This file implements the various memory related classes defined in iMemory.h
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/iMemory.h"
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2002-04-29 18:46:50 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2001-07-08 21:10:27 +00:00
|
|
|
|
2002-03-21 22:37:48 +00:00
|
|
|
AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
|
2002-09-10 15:45:53 +00:00
|
|
|
const std::string &Name, Instruction *InsertBef)
|
2002-09-13 22:28:50 +00:00
|
|
|
: Instruction(PointerType::get(Ty), iTy, Name, InsertBef) {
|
2002-03-21 22:37:48 +00:00
|
|
|
|
|
|
|
// ArraySize defaults to 1.
|
|
|
|
if (!ArraySize) ArraySize = ConstantUInt::get(Type::UIntTy, 1);
|
|
|
|
|
|
|
|
Operands.reserve(1);
|
|
|
|
assert(ArraySize->getType() == Type::UIntTy &&
|
|
|
|
"Malloc/Allocation array size != UIntTy!");
|
|
|
|
|
|
|
|
Operands.push_back(Use(ArraySize, this));
|
|
|
|
}
|
|
|
|
|
2002-02-19 21:24:17 +00:00
|
|
|
bool AllocationInst::isArrayAllocation() const {
|
2002-09-11 00:22:39 +00:00
|
|
|
return getOperand(0) != ConstantUInt::get(Type::UIntTy, 1);
|
2002-02-19 21:24:17 +00:00
|
|
|
}
|
|
|
|
|
2002-04-29 18:46:50 +00:00
|
|
|
const Type *AllocationInst::getAllocatedType() const {
|
|
|
|
return getType()->getElementType();
|
|
|
|
}
|
|
|
|
|
2002-09-13 22:28:50 +00:00
|
|
|
AllocaInst::AllocaInst(const AllocaInst &AI)
|
|
|
|
: AllocationInst(AI.getType()->getElementType(), (Value*)AI.getOperand(0),
|
|
|
|
Instruction::Alloca) {
|
|
|
|
}
|
|
|
|
|
|
|
|
MallocInst::MallocInst(const MallocInst &MI)
|
|
|
|
: AllocationInst(MI.getType()->getElementType(), (Value*)MI.getOperand(0),
|
|
|
|
Instruction::Malloc) {
|
|
|
|
}
|
|
|
|
|
2002-09-10 15:45:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FreeInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
|
|
|
|
: Instruction(Type::VoidTy, Free, "", InsertBefore) {
|
|
|
|
assert(isa<PointerType>(Ptr->getType()) && "Can't free nonpointer!");
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
}
|
|
|
|
|
2002-04-29 18:46:50 +00:00
|
|
|
|
2001-07-08 23:22:50 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// LoadInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-09-10 15:45:53 +00:00
|
|
|
LoadInst::LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBef)
|
2002-08-22 22:47:47 +00:00
|
|
|
: Instruction(cast<PointerType>(Ptr->getType())->getElementType(),
|
2003-09-08 17:45:59 +00:00
|
|
|
Load, Name, InsertBef), Volatile(false) {
|
2001-11-01 05:58:42 +00:00
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
}
|
|
|
|
|
2003-09-08 17:45:59 +00:00
|
|
|
LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
|
|
|
|
Instruction *InsertBef)
|
|
|
|
: Instruction(cast<PointerType>(Ptr->getType())->getElementType(),
|
|
|
|
Load, Name, InsertBef), Volatile(isVolatile) {
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
}
|
2001-07-08 23:22:50 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// StoreInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-09-10 15:45:53 +00:00
|
|
|
StoreInst::StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore)
|
2003-09-08 17:45:59 +00:00
|
|
|
: Instruction(Type::VoidTy, Store, "", InsertBefore), Volatile(false) {
|
|
|
|
|
|
|
|
Operands.reserve(2);
|
|
|
|
Operands.push_back(Use(Val, this));
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
StoreInst::StoreInst(Value *Val, Value *Ptr, bool isVolatile,
|
|
|
|
Instruction *InsertBefore)
|
|
|
|
: Instruction(Type::VoidTy, Store, "", InsertBefore), Volatile(isVolatile) {
|
2001-11-01 05:58:42 +00:00
|
|
|
|
|
|
|
Operands.reserve(2);
|
|
|
|
Operands.push_back(Use(Val, this));
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
}
|
|
|
|
|
2001-07-08 23:22:50 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GetElementPtrInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-09-10 15:45:53 +00:00
|
|
|
// checkType - Simple wrapper function to give a better assertion failure
|
|
|
|
// message on bad indexes for a gep instruction.
|
|
|
|
//
|
|
|
|
static inline const Type *checkType(const Type *Ty) {
|
|
|
|
assert(Ty && "Invalid indices for type!");
|
|
|
|
return Ty;
|
|
|
|
}
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
|
2002-09-10 15:45:53 +00:00
|
|
|
const std::string &Name, Instruction *InBe)
|
2002-08-22 23:37:20 +00:00
|
|
|
: Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
|
2001-12-14 16:43:26 +00:00
|
|
|
Idx, true))),
|
2002-09-10 15:45:53 +00:00
|
|
|
GetElementPtr, Name, InBe) {
|
2001-07-08 21:10:27 +00:00
|
|
|
Operands.reserve(1+Idx.size());
|
|
|
|
Operands.push_back(Use(Ptr, this));
|
|
|
|
|
|
|
|
for (unsigned i = 0, E = Idx.size(); i != E; ++i)
|
|
|
|
Operands.push_back(Use(Idx[i], this));
|
|
|
|
}
|
2002-04-29 18:46:50 +00:00
|
|
|
|
2002-08-22 23:37:20 +00:00
|
|
|
// getIndexedType - Returns the type of the element that would be loaded with
|
|
|
|
// a load instruction with the specified parameters.
|
|
|
|
//
|
|
|
|
// A null type is returned if the indices are invalid for the specified
|
|
|
|
// pointer type.
|
|
|
|
//
|
|
|
|
const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
|
|
|
|
const std::vector<Value*> &Idx,
|
|
|
|
bool AllowCompositeLeaf) {
|
|
|
|
if (!isa<PointerType>(Ptr)) return 0; // Type isn't a pointer type!
|
|
|
|
|
|
|
|
// Handle the special case of the empty set index set...
|
|
|
|
if (Idx.empty()) return cast<PointerType>(Ptr)->getElementType();
|
|
|
|
|
2003-01-14 22:19:44 +00:00
|
|
|
unsigned CurIdx = 0;
|
2002-08-22 23:37:20 +00:00
|
|
|
while (const CompositeType *CT = dyn_cast<CompositeType>(Ptr)) {
|
2003-01-14 22:19:44 +00:00
|
|
|
if (Idx.size() == CurIdx) {
|
2002-08-22 23:37:20 +00:00
|
|
|
if (AllowCompositeLeaf || CT->isFirstClassType()) return Ptr;
|
|
|
|
return 0; // Can't load a whole structure or array!?!?
|
|
|
|
}
|
|
|
|
|
2003-01-14 22:19:44 +00:00
|
|
|
Value *Index = Idx[CurIdx++];
|
|
|
|
if (isa<PointerType>(CT) && CurIdx != 1)
|
|
|
|
return 0; // Can only index into pointer types at the first index!
|
2002-08-22 23:37:20 +00:00
|
|
|
if (!CT->indexValid(Index)) return 0;
|
|
|
|
Ptr = CT->getTypeAtIndex(Index);
|
|
|
|
}
|
2003-01-14 22:19:44 +00:00
|
|
|
return CurIdx == Idx.size() ? Ptr : 0;
|
2002-08-22 23:37:20 +00:00
|
|
|
}
|