diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-23 00:59:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-23 00:59:48 +0000 |
commit | 08a4d5a343e886816b31a78d9b7e70240d9c67be (patch) | |
tree | 36fd81c02c1491b10a69f942a1978637bff8bd3b /lib/CodeGen/VirtRegMap.cpp | |
parent | 89502f086901acf6210b711f01726863f8445469 (diff) |
Switch this to use SmallSet to avoid mallocs in the common case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | lib/CodeGen/VirtRegMap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index 1d1f6f75cb..8fb26a95ce 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -29,8 +29,8 @@ #include "llvm/Support/Compiler.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/ADT/SmallSet.h" #include <algorithm> -#include <set> using namespace llvm; STATISTIC(NumSpills, "Number of register spills"); @@ -471,7 +471,7 @@ namespace { unsigned GetRegForReload(unsigned PhysReg, MachineInstr *MI, AvailableSpills &Spills, std::map<int, MachineInstr*> &MaybeDeadStores, - std::set<unsigned> &Rejected) { + SmallSet<unsigned, 8> &Rejected) { if (Reuses.empty()) return PhysReg; // This is most often empty. for (unsigned ro = 0, e = Reuses.size(); ro != e; ++ro) { @@ -553,7 +553,7 @@ namespace { unsigned GetRegForReload(unsigned PhysReg, MachineInstr *MI, AvailableSpills &Spills, std::map<int, MachineInstr*> &MaybeDeadStores) { - std::set<unsigned> Rejected; + SmallSet<unsigned, 8> Rejected; return GetRegForReload(PhysReg, MI, Spills, MaybeDeadStores, Rejected); } }; |