Skip to content

Commit ffba9e5

Browse files
[CodeGen] Use range-based for loops (NFC)
1 parent 5032b58 commit ffba9e5

File tree

6 files changed

+22
-36
lines changed

6 files changed

+22
-36
lines changed

llvm/lib/CodeGen/Analysis.cpp

+5-7
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,11 @@ unsigned llvm::ComputeLinearIndex(Type *Ty,
4343

4444
// Given a struct type, recursively traverse the elements.
4545
if (StructType *STy = dyn_cast<StructType>(Ty)) {
46-
for (StructType::element_iterator EB = STy->element_begin(),
47-
EI = EB,
48-
EE = STy->element_end();
49-
EI != EE; ++EI) {
50-
if (Indices && *Indices == unsigned(EI - EB))
51-
return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
52-
CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex);
46+
for (auto I : llvm::enumerate(STy->elements())) {
47+
Type *ET = I.value();
48+
if (Indices && *Indices == I.index())
49+
return ComputeLinearIndex(ET, Indices + 1, IndicesEnd, CurIndex);
50+
CurIndex = ComputeLinearIndex(ET, nullptr, nullptr, CurIndex);
5351
}
5452
assert(!Indices && "Unexpected out of bound");
5553
return CurIndex;

llvm/lib/CodeGen/LiveInterval.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -1360,12 +1360,9 @@ unsigned ConnectedVNInfoEqClasses::Classify(const LiveRange &LR) {
13601360
void ConnectedVNInfoEqClasses::Distribute(LiveInterval &LI, LiveInterval *LIV[],
13611361
MachineRegisterInfo &MRI) {
13621362
// Rewrite instructions.
1363-
for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(LI.reg()),
1364-
RE = MRI.reg_end();
1365-
RI != RE;) {
1366-
MachineOperand &MO = *RI;
1367-
MachineInstr *MI = RI->getParent();
1368-
++RI;
1363+
for (MachineOperand &MO :
1364+
llvm::make_early_inc_range(MRI.reg_operands(LI.reg()))) {
1365+
MachineInstr *MI = MO.getParent();
13691366
const VNInfo *VNI;
13701367
if (MI->isDebugValue()) {
13711368
// DBG_VALUE instructions don't have slot indexes, so get the index of

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1459,9 +1459,8 @@ SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
14591459

14601460
if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
14611461
SmallVector<SDValue, 4> Constants;
1462-
for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1463-
OI != OE; ++OI) {
1464-
SDNode *Val = getValue(*OI).getNode();
1462+
for (const Use &U : C->operands()) {
1463+
SDNode *Val = getValue(U).getNode();
14651464
// If the operand is an empty aggregate, there are no values.
14661465
if (!Val) continue;
14671466
// Add each leaf value from the operand to the Constants list

llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp

+5-8
Original file line numberDiff line numberDiff line change
@@ -2266,10 +2266,8 @@ bool TargetLowering::SimplifyDemandedBits(
22662266
if (DemandedBits.isSubsetOf(Known.Zero | Known.One)) {
22672267
// Avoid folding to a constant if any OpaqueConstant is involved.
22682268
const SDNode *N = Op.getNode();
2269-
for (SDNodeIterator I = SDNodeIterator::begin(N),
2270-
E = SDNodeIterator::end(N);
2271-
I != E; ++I) {
2272-
SDNode *Op = *I;
2269+
for (SDNode *Op :
2270+
llvm::make_range(SDNodeIterator::begin(N), SDNodeIterator::end(N))) {
22732271
if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
22742272
if (C->isOpaque())
22752273
return false;
@@ -4564,11 +4562,10 @@ TargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *RI,
45644562
if (!isLegalRC(*RI, *RC))
45654563
continue;
45664564

4567-
for (TargetRegisterClass::iterator I = RC->begin(), E = RC->end();
4568-
I != E; ++I) {
4569-
if (RegName.equals_lower(RI->getRegAsmName(*I))) {
4565+
for (const MCPhysReg &PR : *RC) {
4566+
if (RegName.equals_lower(RI->getRegAsmName(PR))) {
45704567
std::pair<unsigned, const TargetRegisterClass *> S =
4571-
std::make_pair(*I, RC);
4568+
std::make_pair(PR, RC);
45724569

45734570
// If this register class has the requested value type, return it,
45744571
// otherwise keep searching and return the first class found

llvm/lib/CodeGen/SplitKit.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -1270,11 +1270,9 @@ void SplitEditor::rewriteAssigned(bool ExtendRanges) {
12701270

12711271
SmallVector<ExtPoint,4> ExtPoints;
12721272

1273-
for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
1274-
RE = MRI.reg_end(); RI != RE;) {
1275-
MachineOperand &MO = *RI;
1273+
for (MachineOperand &MO :
1274+
llvm::make_early_inc_range(MRI.reg_operands(Edit->getReg()))) {
12761275
MachineInstr *MI = MO.getParent();
1277-
++RI;
12781276
// LiveDebugVariables should have handled all DBG_VALUE instructions.
12791277
if (MI->isDebugValue()) {
12801278
LLVM_DEBUG(dbgs() << "Zapping " << *MI);

llvm/lib/CodeGen/WinEHPrepare.cpp

+5-8
Original file line numberDiff line numberDiff line change
@@ -1023,11 +1023,10 @@ void WinEHPrepare::removeImplausibleInstructions(Function &F) {
10231023
void WinEHPrepare::cleanupPreparedFunclets(Function &F) {
10241024
// Clean-up some of the mess we made by removing useles PHI nodes, trivial
10251025
// branches, etc.
1026-
for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE;) {
1027-
BasicBlock *BB = &*FI++;
1028-
SimplifyInstructionsInBlock(BB);
1029-
ConstantFoldTerminator(BB, /*DeleteDeadConditions=*/true);
1030-
MergeBlockIntoPredecessor(BB);
1026+
for (BasicBlock &BB : llvm::make_early_inc_range(F)) {
1027+
SimplifyInstructionsInBlock(&BB);
1028+
ConstantFoldTerminator(&BB, /*DeleteDeadConditions=*/true);
1029+
MergeBlockIntoPredecessor(&BB);
10311030
}
10321031

10331032
// We might have some unreachable blocks after cleaning up some impossible
@@ -1107,9 +1106,7 @@ AllocaInst *WinEHPrepare::insertPHILoads(PHINode *PN, Function &F) {
11071106
// Otherwise, we have a PHI on a terminator EHPad, and we give up and insert
11081107
// loads of the slot before every use.
11091108
DenseMap<BasicBlock *, Value *> Loads;
1110-
for (Value::use_iterator UI = PN->use_begin(), UE = PN->use_end();
1111-
UI != UE;) {
1112-
Use &U = *UI++;
1109+
for (Use &U : llvm::make_early_inc_range(PN->uses())) {
11131110
auto *UsingInst = cast<Instruction>(U.getUser());
11141111
if (isa<PHINode>(UsingInst) && UsingInst->getParent()->isEHPad()) {
11151112
// Use is on an EH pad phi. Leave it alone; we'll insert loads and

0 commit comments

Comments
 (0)