2008-05-15 10:04:30 +00:00
|
|
|
//===-- Use.cpp - Implement the Use class ---------------------------------===//
|
2008-05-10 08:32:32 +00:00
|
|
|
//
|
|
|
|
// 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 algorithm for finding the User of a Use.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/User.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2008-05-13 22:51:52 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Use swap Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void Use::swap(Use &RHS) {
|
2008-09-19 15:13:20 +00:00
|
|
|
Value *V1(Val);
|
|
|
|
Value *V2(RHS.Val);
|
2008-05-13 22:51:52 +00:00
|
|
|
if (V1 != V2) {
|
|
|
|
if (V1) {
|
|
|
|
removeFromList();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (V2) {
|
|
|
|
RHS.removeFromList();
|
2008-09-19 15:13:20 +00:00
|
|
|
Val = V2;
|
2008-05-13 22:51:52 +00:00
|
|
|
V2->addUse(*this);
|
|
|
|
} else {
|
2008-09-19 15:13:20 +00:00
|
|
|
Val = 0;
|
2008-05-13 22:51:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (V1) {
|
2008-09-19 15:13:20 +00:00
|
|
|
RHS.Val = V1;
|
2008-05-13 22:51:52 +00:00
|
|
|
V1->addUse(RHS);
|
|
|
|
} else {
|
2008-09-19 15:13:20 +00:00
|
|
|
RHS.Val = 0;
|
2008-05-13 22:51:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-10 08:32:32 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Use getImpliedUser Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
const Use *Use::getImpliedUser() const {
|
|
|
|
const Use *Current = this;
|
|
|
|
|
|
|
|
while (true) {
|
2009-01-05 16:05:32 +00:00
|
|
|
unsigned Tag = (Current++)->Prev.getInt();
|
2008-05-10 08:32:32 +00:00
|
|
|
switch (Tag) {
|
|
|
|
case zeroDigitTag:
|
|
|
|
case oneDigitTag:
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case stopTag: {
|
|
|
|
++Current;
|
|
|
|
ptrdiff_t Offset = 1;
|
|
|
|
while (true) {
|
2009-01-05 16:05:32 +00:00
|
|
|
unsigned Tag = Current->Prev.getInt();
|
2008-05-10 08:32:32 +00:00
|
|
|
switch (Tag) {
|
|
|
|
case zeroDigitTag:
|
|
|
|
case oneDigitTag:
|
|
|
|
++Current;
|
|
|
|
Offset = (Offset << 1) + Tag;
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
return Current + Offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case fullStopTag:
|
|
|
|
return Current;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Use initTags Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) {
|
2010-07-19 14:48:15 +00:00
|
|
|
while (Done < 20) {
|
2010-07-16 20:35:19 +00:00
|
|
|
if (Start == Stop--)
|
|
|
|
return Start;
|
2010-07-19 14:48:15 +00:00
|
|
|
static const PrevPtrTag tags[20] = { fullStopTag, oneDigitTag, stopTag,
|
|
|
|
oneDigitTag, oneDigitTag, stopTag,
|
|
|
|
zeroDigitTag, oneDigitTag, oneDigitTag,
|
|
|
|
stopTag, zeroDigitTag, oneDigitTag,
|
|
|
|
zeroDigitTag, oneDigitTag, stopTag,
|
|
|
|
oneDigitTag, oneDigitTag, oneDigitTag,
|
|
|
|
oneDigitTag, stopTag
|
|
|
|
};
|
2010-07-16 20:35:19 +00:00
|
|
|
Stop->Prev.setFromOpaqueValue(reinterpret_cast<Use**>(tags[Done++]));
|
|
|
|
Stop->Val = 0;
|
|
|
|
}
|
|
|
|
|
2008-05-10 08:32:32 +00:00
|
|
|
ptrdiff_t Count = Done;
|
|
|
|
while (Start != Stop) {
|
|
|
|
--Stop;
|
2008-09-19 15:13:20 +00:00
|
|
|
Stop->Val = 0;
|
2008-05-10 08:32:32 +00:00
|
|
|
if (!Count) {
|
2010-07-17 20:52:46 +00:00
|
|
|
Stop->Prev.setFromOpaqueValue(reinterpret_cast<Use**>(stopTag));
|
2008-05-10 08:32:32 +00:00
|
|
|
++Done;
|
|
|
|
Count = Done;
|
|
|
|
} else {
|
2009-01-05 16:05:32 +00:00
|
|
|
Stop->Prev.setFromOpaqueValue(reinterpret_cast<Use**>(Count & 1));
|
2008-05-10 08:32:32 +00:00
|
|
|
Count >>= 1;
|
|
|
|
++Done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Start;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Use zap Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void Use::zap(Use *Start, const Use *Stop, bool del) {
|
|
|
|
if (del) {
|
|
|
|
while (Start != Stop) {
|
|
|
|
(--Stop)->~Use();
|
|
|
|
}
|
|
|
|
::operator delete(Start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (Start != Stop) {
|
|
|
|
(Start++)->set(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AugmentedUse layout struct
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-09-06 08:55:57 +00:00
|
|
|
struct AugmentedUse : public Use {
|
2009-01-05 16:05:32 +00:00
|
|
|
PointerIntPair<User*, 1, Tag> ref;
|
2008-05-10 08:32:32 +00:00
|
|
|
AugmentedUse(); // not implemented
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Use getUser Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
User *Use::getUser() const {
|
|
|
|
const Use *End = getImpliedUser();
|
2009-01-05 17:19:25 +00:00
|
|
|
const PointerIntPair<User*, 1, Tag>& ref(
|
|
|
|
static_cast<const AugmentedUse*>(End - 1)->ref);
|
2009-01-05 16:05:32 +00:00
|
|
|
User *She = ref.getPointer();
|
|
|
|
return ref.getInt()
|
2009-01-05 16:28:14 +00:00
|
|
|
? She
|
|
|
|
: (User*)End;
|
2008-05-10 08:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// User allocHungoffUses Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
Use *User::allocHungoffUses(unsigned N) const {
|
2008-05-15 10:04:30 +00:00
|
|
|
Use *Begin = static_cast<Use*>(::operator new(sizeof(Use) * N
|
|
|
|
+ sizeof(AugmentedUse)
|
|
|
|
- sizeof(Use)));
|
2008-05-10 08:32:32 +00:00
|
|
|
Use *End = Begin + N;
|
2009-01-05 16:28:14 +00:00
|
|
|
PointerIntPair<User*, 1, Tag>& ref(static_cast<AugmentedUse&>(End[-1]).ref);
|
2009-01-05 16:05:32 +00:00
|
|
|
ref.setPointer(const_cast<User*>(this));
|
|
|
|
ref.setInt(tagOne);
|
2008-05-10 08:32:32 +00:00
|
|
|
return Use::initTags(Begin, End);
|
|
|
|
}
|
|
|
|
|
2009-03-12 18:34:49 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// User operator new Implementations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void *User::operator new(size_t s, unsigned Us) {
|
|
|
|
void *Storage = ::operator new(s + sizeof(Use) * Us);
|
|
|
|
Use *Start = static_cast<Use*>(Storage);
|
|
|
|
Use *End = Start + Us;
|
|
|
|
User *Obj = reinterpret_cast<User*>(End);
|
|
|
|
Obj->OperandList = Start;
|
|
|
|
Obj->NumOperands = Us;
|
|
|
|
Use::initTags(Start, End);
|
|
|
|
return Obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Prefixed allocation - just before the first Use, allocate a NULL pointer.
|
|
|
|
/// The destructor can detect its presence and readjust the OperandList
|
|
|
|
/// for deletition.
|
|
|
|
///
|
|
|
|
void *User::operator new(size_t s, unsigned Us, bool Prefix) {
|
|
|
|
// currently prefixed allocation only admissible for
|
|
|
|
// unconditional branch instructions
|
|
|
|
if (!Prefix)
|
|
|
|
return operator new(s, Us);
|
|
|
|
|
|
|
|
assert(Us == 1 && "Other than one Use allocated?");
|
|
|
|
typedef PointerIntPair<void*, 2, Use::PrevPtrTag> TaggedPrefix;
|
|
|
|
void *Raw = ::operator new(s + sizeof(TaggedPrefix) + sizeof(Use) * Us);
|
|
|
|
TaggedPrefix *Pre = static_cast<TaggedPrefix*>(Raw);
|
|
|
|
Pre->setFromOpaqueValue(0);
|
|
|
|
void *Storage = Pre + 1; // skip over prefix
|
|
|
|
Use *Start = static_cast<Use*>(Storage);
|
|
|
|
Use *End = Start + Us;
|
|
|
|
User *Obj = reinterpret_cast<User*>(End);
|
|
|
|
Obj->OperandList = Start;
|
|
|
|
Obj->NumOperands = Us;
|
|
|
|
Use::initTags(Start, End);
|
|
|
|
return Obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// User operator delete Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void User::operator delete(void *Usr) {
|
|
|
|
User *Start = static_cast<User*>(Usr);
|
|
|
|
Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
|
|
|
|
//
|
|
|
|
// look for a variadic User
|
|
|
|
if (Storage == Start->OperandList) {
|
|
|
|
::operator delete(Storage);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// check for the flag whether the destructor has detected a prefixed
|
|
|
|
// allocation, in which case we remove the flag and delete starting
|
|
|
|
// at OperandList
|
|
|
|
if (reinterpret_cast<intptr_t>(Start->OperandList) & 1) {
|
|
|
|
::operator delete(reinterpret_cast<char*>(Start->OperandList) - 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// in all other cases just delete the nullary User (covers hung-off
|
|
|
|
// uses also
|
|
|
|
::operator delete(Usr);
|
|
|
|
}
|
|
|
|
|
2008-05-10 08:32:32 +00:00
|
|
|
} // End llvm namespace
|