Reduce number of times .size() is called on a vector. Rename some variables to

match normal naming scheme.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52820 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-06-27 07:13:44 +00:00
parent bffdf66b80
commit f0e9c56540

View File

@ -306,7 +306,7 @@ public:
ArrayType *AT = ArrayType::get(EmptyTy, N); ArrayType *AT = ArrayType::get(EmptyTy, N);
std::vector<Constant *> ArrayElements; std::vector<Constant *> ArrayElements;
for (unsigned i = 0, N = Field.size(); i < N; ++i) { for (unsigned i = 0; i < N; ++i) {
if (DebugInfoDesc *Element = Field[i]) { if (DebugInfoDesc *Element = Field[i]) {
GlobalVariable *GVE = SR.Serialize(Element); GlobalVariable *GVE = SR.Serialize(Element);
Constant *CE = ConstantExpr::getBitCast(GVE, EmptyTy); Constant *CE = ConstantExpr::getBitCast(GVE, EmptyTy);
@ -711,8 +711,8 @@ bool DIVerifier::isVerified(GlobalVariable *GV) {
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
DebugScope::~DebugScope() { DebugScope::~DebugScope() {
for (unsigned i = 0, N = Scopes.size(); i < N; ++i) delete Scopes[i]; for (unsigned i = 0, e = Scopes.size(); i < e; ++i) delete Scopes[i];
for (unsigned j = 0, M = Variables.size(); j < M; ++j) delete Variables[j]; for (unsigned i = 0, e = Variables.size(); i < e; ++i) delete Variables[i];
} }
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
@ -819,7 +819,7 @@ void MachineModuleInfo::SetupCompileUnits(Module &M) {
CompileUnitDesc CUD; CompileUnitDesc CUD;
getAnchoredDescriptors(M, &CUD, CUList); getAnchoredDescriptors(M, &CUD, CUList);
for (unsigned i = 0, N = CUList.size(); i < N; i++) for (unsigned i = 0, e = CUList.size(); i < e; i++)
CompileUnits.insert((CompileUnitDesc*)CUList[i]); CompileUnits.insert((CompileUnitDesc*)CUList[i]);
} }
@ -837,7 +837,7 @@ MachineModuleInfo::getAnchoredDescriptors(Module &M, const AnchoredDesc *Desc,
std::vector<GlobalVariable*> Globals; std::vector<GlobalVariable*> Globals;
getGlobalVariablesUsing(M, Desc->getAnchorString(), Globals); getGlobalVariablesUsing(M, Desc->getAnchorString(), Globals);
for (unsigned i = 0, N = Globals.size(); i < N; ++i) { for (unsigned i = 0, e = Globals.size(); i < e; ++i) {
GlobalVariable *GV = Globals[i]; GlobalVariable *GV = Globals[i];
// FIXME - In the short term, changes are too drastic to continue. // FIXME - In the short term, changes are too drastic to continue.
@ -939,9 +939,10 @@ DebugScope *MachineModuleInfo::getOrCreateScope(DebugInfoDesc *ScopeDesc) {
/// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the /// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
/// specified MachineBasicBlock. /// specified MachineBasicBlock.
LandingPadInfo &MachineModuleInfo::getOrCreateLandingPadInfo LandingPadInfo &
(MachineBasicBlock *LandingPad) { MachineModuleInfo::getOrCreateLandingPadInfo(MachineBasicBlock *LandingPad) {
unsigned N = LandingPads.size(); unsigned N = LandingPads.size();
for (unsigned i = 0; i < N; ++i) { for (unsigned i = 0; i < N; ++i) {
LandingPadInfo &LP = LandingPads[i]; LandingPadInfo &LP = LandingPads[i];
if (LP.LandingPadBlock == LandingPad) if (LP.LandingPadBlock == LandingPad)
@ -977,7 +978,7 @@ void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad,
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
LP.Personality = Personality; LP.Personality = Personality;
for (unsigned i = 0; i < Personalities.size(); ++i) for (unsigned i = 0, e = Personalities.size(); i < e; ++i)
if (Personalities[i] == Personality) if (Personalities[i] == Personality)
return; return;
@ -998,9 +999,12 @@ void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad,
void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad, void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad,
std::vector<GlobalVariable *> &TyInfo) { std::vector<GlobalVariable *> &TyInfo) {
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
std::vector<unsigned> IdsInFilter (TyInfo.size()); unsigned TyInfoSize = TyInfo.size();
for (unsigned I = 0, E = TyInfo.size(); I != E; ++I) std::vector<unsigned> IdsInFilter(TyInfoSize);
for (unsigned I = 0; I != TyInfoSize; ++I)
IdsInFilter[I] = getTypeIDFor(TyInfo[I]); IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
LP.TypeIds.push_back(getFilterIDFor(IdsInFilter)); LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
} }
@ -1025,7 +1029,7 @@ void MachineModuleInfo::TidyLandingPads() {
continue; continue;
} }
for (unsigned j=0; j != LandingPads[i].BeginLabels.size(); ) { for (unsigned j = 0; j != LandingPads[i].BeginLabels.size(); ) {
unsigned BeginLabel = MappedLabel(LandingPad.BeginLabels[j]); unsigned BeginLabel = MappedLabel(LandingPad.BeginLabels[j]);
unsigned EndLabel = MappedLabel(LandingPad.EndLabels[j]); unsigned EndLabel = MappedLabel(LandingPad.EndLabels[j]);
@ -1059,8 +1063,9 @@ void MachineModuleInfo::TidyLandingPads() {
/// getTypeIDFor - Return the type id for the specified typeinfo. This is /// getTypeIDFor - Return the type id for the specified typeinfo. This is
/// function wide. /// function wide.
unsigned MachineModuleInfo::getTypeIDFor(GlobalVariable *TI) { unsigned MachineModuleInfo::getTypeIDFor(GlobalVariable *TI) {
for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i) for (unsigned i = 0, e = TypeInfos.size(); i != e; ++i)
if (TypeInfos[i] == TI) return i + 1; if (TypeInfos[i] == TI)
return i + 1;
TypeInfos.push_back(TI); TypeInfos.push_back(TI);
return TypeInfos.size(); return TypeInfos.size();
@ -1090,8 +1095,10 @@ try_next:;
// Add the new filter. // Add the new filter.
int FilterID = -(1 + FilterIds.size()); int FilterID = -(1 + FilterIds.size());
FilterIds.reserve(FilterIds.size() + TyIds.size() + 1); FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
for (unsigned I = 0, N = TyIds.size(); I != N; ++I) for (unsigned I = 0, N = TyIds.size(); I != N; ++I)
FilterIds.push_back(TyIds[I]); FilterIds.push_back(TyIds[I]);
FilterEnds.push_back(FilterIds.size()); FilterEnds.push_back(FilterIds.size());
FilterIds.push_back(0); // terminator FilterIds.push_back(0); // terminator
return FilterID; return FilterID;
@ -1110,16 +1117,15 @@ unsigned MachineModuleInfo::getPersonalityIndex() const {
const Function* Personality = NULL; const Function* Personality = NULL;
// Scan landing pads. If there is at least one non-NULL personality - use it. // Scan landing pads. If there is at least one non-NULL personality - use it.
for (unsigned i = 0; i != LandingPads.size(); ++i) for (unsigned i = 0, e = LandingPads.size(); i != e; ++i)
if (LandingPads[i].Personality) { if (LandingPads[i].Personality) {
Personality = LandingPads[i].Personality; Personality = LandingPads[i].Personality;
break; break;
} }
for (unsigned i = 0; i < Personalities.size(); ++i) { for (unsigned i = 0, e = Personalities.size(); i < e; ++i)
if (Personalities[i] == Personality) if (Personalities[i] == Personality)
return i; return i;
}
// This should never happen // This should never happen
assert(0 && "Personality function should be set!"); assert(0 && "Personality function should be set!");