mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Remove useless Tag enumeration.
llvm-svn: 123623
This commit is contained in:
parent
7401b2a1db
commit
599c83ed66
@ -25,9 +25,7 @@
|
||||
#ifndef LLVM_USE_H
|
||||
#define LLVM_USE_H
|
||||
|
||||
#include "llvm/Support/Casting.h"
|
||||
#include "llvm/ADT/PointerIntPair.h"
|
||||
#include <cstddef>
|
||||
#include <iterator>
|
||||
|
||||
namespace llvm {
|
||||
@ -36,9 +34,6 @@ class Value;
|
||||
class User;
|
||||
class Use;
|
||||
|
||||
/// Tag - generic tag type for (at least 32 bit) pointers
|
||||
enum Tag { noTag, tagOne, tagTwo, tagThree };
|
||||
|
||||
// Use** is only 4-byte aligned.
|
||||
template<>
|
||||
class PointerLikeTypeTraits<Use**> {
|
||||
@ -71,10 +66,10 @@ private:
|
||||
if (Val) removeFromList();
|
||||
}
|
||||
|
||||
enum PrevPtrTag { zeroDigitTag = noTag
|
||||
, oneDigitTag = tagOne
|
||||
, stopTag = tagTwo
|
||||
, fullStopTag = tagThree };
|
||||
enum PrevPtrTag { zeroDigitTag
|
||||
, oneDigitTag
|
||||
, stopTag
|
||||
, fullStopTag };
|
||||
|
||||
/// Constructor
|
||||
Use(PrevPtrTag tag) : Val(0) {
|
||||
@ -215,7 +210,7 @@ public:
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
struct AugmentedUse : public Use {
|
||||
PointerIntPair<User*, 1, Tag> ref;
|
||||
PointerIntPair<User*, 1, unsigned> ref;
|
||||
AugmentedUse(); // not implemented
|
||||
};
|
||||
|
||||
|
@ -135,8 +135,8 @@ void Use::zap(Use *Start, const Use *Stop, bool del) {
|
||||
|
||||
User *Use::getUser() const {
|
||||
const Use *End = getImpliedUser();
|
||||
const PointerIntPair<User*, 1, Tag>& ref(
|
||||
static_cast<const AugmentedUse*>(End - 1)->ref);
|
||||
const PointerIntPair<User*, 1, unsigned>&
|
||||
ref(static_cast<const AugmentedUse*>(End - 1)->ref);
|
||||
User *She = ref.getPointer();
|
||||
return ref.getInt()
|
||||
? She
|
||||
|
@ -44,9 +44,10 @@ Use *User::allocHungoffUses(unsigned N) const {
|
||||
+ sizeof(AugmentedUse)
|
||||
- sizeof(Use)));
|
||||
Use *End = Begin + N;
|
||||
PointerIntPair<User*, 1, Tag>& ref(static_cast<AugmentedUse&>(End[-1]).ref);
|
||||
PointerIntPair<User*, 1, unsigned>&
|
||||
ref(static_cast<AugmentedUse&>(End[-1]).ref);
|
||||
ref.setPointer(const_cast<User*>(this));
|
||||
ref.setInt(tagOne);
|
||||
ref.setInt(1);
|
||||
return Use::initTags(Begin, End);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user