mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
0b8c9a80f2
into their new header subdirectory: include/llvm/IR. This matches the directory structure of lib, and begins to correct a long standing point of file layout clutter in LLVM. There are still more header files to move here, but I wanted to handle them in separate commits to make tracking what files make sense at each layer easier. The only really questionable files here are the target intrinsic tablegen files. But that's a battle I'd rather not fight today. I've updated both CMake and Makefile build systems (I think, and my tests think, but I may have missed something). I've also re-sorted the includes throughout the project. I'll be committing updates to Clang, DragonEgg, and Polly momentarily. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171366 91177308-0d34-0410-b5e6-96231b3b80d8
146 lines
4.0 KiB
C++
146 lines
4.0 KiB
C++
//===-- Use.cpp - Implement the Use class ---------------------------------===//
|
|
//
|
|
// 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/IR/Value.h"
|
|
#include <new>
|
|
|
|
namespace llvm {
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Use swap Implementation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void Use::swap(Use &RHS) {
|
|
Value *V1(Val);
|
|
Value *V2(RHS.Val);
|
|
if (V1 != V2) {
|
|
if (V1) {
|
|
removeFromList();
|
|
}
|
|
|
|
if (V2) {
|
|
RHS.removeFromList();
|
|
Val = V2;
|
|
V2->addUse(*this);
|
|
} else {
|
|
Val = 0;
|
|
}
|
|
|
|
if (V1) {
|
|
RHS.Val = V1;
|
|
V1->addUse(RHS);
|
|
} else {
|
|
RHS.Val = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Use getImpliedUser Implementation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
const Use *Use::getImpliedUser() const {
|
|
const Use *Current = this;
|
|
|
|
while (true) {
|
|
unsigned Tag = (Current++)->Prev.getInt();
|
|
switch (Tag) {
|
|
case zeroDigitTag:
|
|
case oneDigitTag:
|
|
continue;
|
|
|
|
case stopTag: {
|
|
++Current;
|
|
ptrdiff_t Offset = 1;
|
|
while (true) {
|
|
unsigned Tag = Current->Prev.getInt();
|
|
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 = 0;
|
|
while (Done < 20) {
|
|
if (Start == Stop--)
|
|
return Start;
|
|
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
|
|
};
|
|
new(Stop) Use(tags[Done++]);
|
|
}
|
|
|
|
ptrdiff_t Count = Done;
|
|
while (Start != Stop) {
|
|
--Stop;
|
|
if (!Count) {
|
|
new(Stop) Use(stopTag);
|
|
++Done;
|
|
Count = Done;
|
|
} else {
|
|
new(Stop) Use(PrevPtrTag(Count & 1));
|
|
Count >>= 1;
|
|
++Done;
|
|
}
|
|
}
|
|
|
|
return Start;
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Use zap Implementation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void Use::zap(Use *Start, const Use *Stop, bool del) {
|
|
while (Start != Stop)
|
|
(--Stop)->~Use();
|
|
if (del)
|
|
::operator delete(Start);
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Use getUser Implementation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
User *Use::getUser() const {
|
|
const Use *End = getImpliedUser();
|
|
const UserRef *ref = reinterpret_cast<const UserRef*>(End);
|
|
return ref->getInt()
|
|
? ref->getPointer()
|
|
: (User*)End;
|
|
}
|
|
|
|
} // End llvm namespace
|