X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FUse.cpp;h=0128adc3f776297addf313090a310c72b9ab94bb;hb=b7454fd9df0b477e3daf2fce6e1d5e1b241562df;hp=32cf954ac6588d787bacd32e71c2cc1006ed4a61;hpb=bdbe342e8602e38c7eadb4f0c2664e7e30bff768;p=oota-llvm.git diff --git a/lib/VMCore/Use.cpp b/lib/VMCore/Use.cpp index 32cf954ac65..0128adc3f77 100644 --- a/lib/VMCore/Use.cpp +++ b/lib/VMCore/Use.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Value.h" +#include namespace llvm { @@ -85,7 +86,8 @@ const Use *Use::getImpliedUser() const { // Use initTags Implementation //===----------------------------------------------------------------------===// -Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) { +Use *Use::initTags(Use * const Start, Use *Stop) { + ptrdiff_t Done = 0; while (Done < 20) { if (Start == Stop--) return Start; @@ -97,20 +99,18 @@ Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) { oneDigitTag, oneDigitTag, oneDigitTag, oneDigitTag, stopTag }; - Stop->Prev.setFromOpaqueValue(reinterpret_cast(tags[Done++])); - Stop->Val = 0; + new(Stop) Use(tags[Done++]); } ptrdiff_t Count = Done; while (Start != Stop) { --Stop; - Stop->Val = 0; if (!Count) { - Stop->Prev.setFromOpaqueValue(reinterpret_cast(stopTag)); + new(Stop) Use(stopTag); ++Done; Count = Done; } else { - Stop->Prev.setFromOpaqueValue(reinterpret_cast(Count & 1)); + new(Stop) Use(PrevPtrTag(Count & 1)); Count >>= 1; ++Done; } @@ -124,17 +124,10 @@ Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) { //===----------------------------------------------------------------------===// void Use::zap(Use *Start, const Use *Stop, bool del) { - if (del) { - while (Start != Stop) { - (--Stop)->~Use(); - } + while (Start != Stop) + (--Stop)->~Use(); + if (del) ::operator delete(Start); - return; - } - - while (Start != Stop) { - (Start++)->set(0); - } } //===----------------------------------------------------------------------===// @@ -143,11 +136,9 @@ void Use::zap(Use *Start, const Use *Stop, bool del) { User *Use::getUser() const { const Use *End = getImpliedUser(); - const PointerIntPair& ref( - static_cast(End - 1)->ref); - User *She = ref.getPointer(); - return ref.getInt() - ? She + const UserRef *ref = reinterpret_cast(End); + return ref->getInt() + ? ref->getPointer() : (User*)End; }