diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-25 03:07:27 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-25 03:07:27 +0000 |
commit | 6318ffd7361677e3b4487025538997ee01304452 (patch) | |
tree | 0db78096236b3fa06c2176ac9a4b1c693fd3886b | |
parent | b482872d1ddba736b25a94bb44591b2d5c05873f (diff) |
Getting rid uses of evil std::set<>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33496 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMAsmPrinter.cpp | 1 | ||||
-rw-r--r-- | lib/Target/ARM/ARMMachineFunctionInfo.h | 48 | ||||
-rw-r--r-- | lib/Target/ARM/ARMRegisterInfo.h | 1 |
3 files changed, 33 insertions, 17 deletions
diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp index 1ca8bfd75c..3bdf3f967c 100644 --- a/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/ARMAsmPrinter.cpp @@ -37,7 +37,6 @@ #include "llvm/Support/MathExtras.h" #include <cctype> #include <iostream> -#include <set> using namespace llvm; STATISTIC(EmittedInsts, "Number of machine instrs printed"); diff --git a/lib/Target/ARM/ARMMachineFunctionInfo.h b/lib/Target/ARM/ARMMachineFunctionInfo.h index 8de6bf8558..05dc0dccde 100644 --- a/lib/Target/ARM/ARMMachineFunctionInfo.h +++ b/lib/Target/ARM/ARMMachineFunctionInfo.h @@ -60,9 +60,9 @@ class ARMFunctionInfo : public MachineFunctionInfo { /// GPRCS1Frames, GPRCS2Frames, DPRCSFrames - Keeps track of frame indices /// which belong to these spill areas. - std::set<int> GPRCS1Frames; - std::set<int> GPRCS2Frames; - std::set<int> DPRCSFrames; + std::vector<bool> GPRCS1Frames; + std::vector<bool> GPRCS2Frames; + std::vector<bool> DPRCSFrames; /// JumpTableUId - Unique id for jumptables. /// @@ -107,24 +107,42 @@ public: void setGPRCalleeSavedArea2Size(unsigned s) { GPRCS2Size = s; } void setDPRCalleeSavedAreaSize(unsigned s) { DPRCSSize = s; } - bool isGPRCalleeSavedArea1Frame(unsigned fi) const { - return GPRCS1Frames.count(fi); + bool isGPRCalleeSavedArea1Frame(int fi) const { + if (fi < 0 || fi >= (int)GPRCS1Frames.size()) + return false; + return GPRCS1Frames[fi]; } - bool isGPRCalleeSavedArea2Frame(unsigned fi) const { - return GPRCS2Frames.count(fi); + bool isGPRCalleeSavedArea2Frame(int fi) const { + if (fi < 0 || fi >= (int)GPRCS2Frames.size()) + return false; + return GPRCS2Frames[fi]; } - bool isDPRCalleeSavedAreaFrame(unsigned fi) const { - return DPRCSFrames.count(fi); + bool isDPRCalleeSavedAreaFrame(int fi) const { + if (fi < 0 || fi >= (int)DPRCSFrames.size()) + return false; + return DPRCSFrames[fi]; } - void addGPRCalleeSavedArea1Frame(unsigned fi) { - GPRCS1Frames.insert(fi); + void addGPRCalleeSavedArea1Frame(int fi) { + if (fi >= 0) { + if (fi >= (int)GPRCS1Frames.size()) + GPRCS1Frames.resize(fi+1); + GPRCS1Frames[fi] = true; + } } - void addGPRCalleeSavedArea2Frame(unsigned fi) { - GPRCS2Frames.insert(fi); + void addGPRCalleeSavedArea2Frame(int fi) { + if (fi >= 0) { + if (fi >= (int)GPRCS2Frames.size()) + GPRCS2Frames.resize(fi+1); + GPRCS2Frames[fi] = true; + } } - void addDPRCalleeSavedAreaFrame(unsigned fi) { - DPRCSFrames.insert(fi); + void addDPRCalleeSavedAreaFrame(int fi) { + if (fi >= 0) { + if (fi >= (int)DPRCSFrames.size()) + DPRCSFrames.resize(fi+1); + DPRCSFrames[fi] = true; + } } unsigned createJumpTableUId() { diff --git a/lib/Target/ARM/ARMRegisterInfo.h b/lib/Target/ARM/ARMRegisterInfo.h index 96a969856f..e46da07b00 100644 --- a/lib/Target/ARM/ARMRegisterInfo.h +++ b/lib/Target/ARM/ARMRegisterInfo.h @@ -17,7 +17,6 @@ #include "llvm/Target/MRegisterInfo.h" #include "ARMGenRegisterInfo.h.inc" -#include <set> namespace llvm { class TargetInstrInfo; |