mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-10-02 21:17:17 +00:00
Add a new DenseSet abstraction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42474 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
61
include/llvm/ADT/DenseSet.h
Normal file
61
include/llvm/ADT/DenseSet.h
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
//===- llvm/ADT/DenseSet.h - Dense probed hash table ------------*- C++ -*-===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file was developed by Chris Lattner and is distributed under
|
||||||
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// This file defines the DenseSet class.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#ifndef LLVM_ADT_DENSESET_H
|
||||||
|
#define LLVM_ADT_DENSESET_H
|
||||||
|
|
||||||
|
#include "llvm/ADT/DenseMap.h"
|
||||||
|
|
||||||
|
namespace llvm {
|
||||||
|
|
||||||
|
/// DenseSet - This implements a dense probed hash-table based set.
|
||||||
|
///
|
||||||
|
/// FIXME: This is currently implemented directly in terms of DenseMap, this
|
||||||
|
/// should be optimized later if there is a need.
|
||||||
|
template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
|
||||||
|
class DenseSet {
|
||||||
|
DenseMap<ValueT, char, ValueInfoT> TheMap;
|
||||||
|
public:
|
||||||
|
DenseSet(const DenseSet &Other) : TheMap(Other.TheMap) {}
|
||||||
|
explicit DenseSet(unsigned NumInitBuckets = 64) : TheMap(NumInitBuckets) {}
|
||||||
|
|
||||||
|
bool empty() const { return TheMap.empty(); }
|
||||||
|
unsigned size() const { return TheMap.size(); }
|
||||||
|
|
||||||
|
// TODO add iterators.
|
||||||
|
|
||||||
|
void clear() {
|
||||||
|
TheMap.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool count(const ValueT &V) {
|
||||||
|
return TheMap.count(V);
|
||||||
|
}
|
||||||
|
|
||||||
|
void insert(const ValueT &V) {
|
||||||
|
TheMap[V] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void erase(const ValueT &V) {
|
||||||
|
TheMap.erase(V);
|
||||||
|
}
|
||||||
|
|
||||||
|
DenseSet &operator=(const DenseSet &RHS) {
|
||||||
|
TheMap = RHS.TheMap;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // end namespace llvm
|
||||||
|
|
||||||
|
#endif
|
@@ -65,7 +65,7 @@
|
|||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
#include "llvm/ADT/Statistic.h"
|
#include "llvm/ADT/Statistic.h"
|
||||||
#include "llvm/ADT/SparseBitVector.h"
|
#include "llvm/ADT/SparseBitVector.h"
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseSet.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <list>
|
#include <list>
|
||||||
@@ -1773,7 +1773,7 @@ void Andersens::HUValNum(unsigned NodeIndex) {
|
|||||||
/// replaced by their the pointer equivalence class representative.
|
/// replaced by their the pointer equivalence class representative.
|
||||||
void Andersens::RewriteConstraints() {
|
void Andersens::RewriteConstraints() {
|
||||||
std::vector<Constraint> NewConstraints;
|
std::vector<Constraint> NewConstraints;
|
||||||
DenseMap<Constraint, bool, ConstraintKeyInfo> Seen;
|
DenseSet<Constraint, ConstraintKeyInfo> Seen;
|
||||||
|
|
||||||
PEClass2Node.clear();
|
PEClass2Node.clear();
|
||||||
PENLEClass2Node.clear();
|
PENLEClass2Node.clear();
|
||||||
@@ -1811,10 +1811,10 @@ void Andersens::RewriteConstraints() {
|
|||||||
C.Src = FindEquivalentNode(RHSNode, RHSLabel);
|
C.Src = FindEquivalentNode(RHSNode, RHSLabel);
|
||||||
C.Dest = FindEquivalentNode(FindNode(LHSNode), LHSLabel);
|
C.Dest = FindEquivalentNode(FindNode(LHSNode), LHSLabel);
|
||||||
if (C.Src == C.Dest && C.Type == Constraint::Copy
|
if (C.Src == C.Dest && C.Type == Constraint::Copy
|
||||||
|| Seen[C] == true)
|
|| Seen.count(C))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
Seen[C] = true;
|
Seen.insert(C);
|
||||||
NewConstraints.push_back(C);
|
NewConstraints.push_back(C);
|
||||||
}
|
}
|
||||||
Constraints.swap(NewConstraints);
|
Constraints.swap(NewConstraints);
|
||||||
|
Reference in New Issue
Block a user