Skip to content

Commit

Permalink
[lldb][NFC] Use range-based for loops in IRInterpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
Teemperor committed Jan 13, 2020
1 parent b6ffa2f commit af4adb0
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions lldb/source/Expression/IRInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,10 +490,8 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));

bool saw_function_with_body = false;

for (Module::iterator fi = module.begin(), fe = module.end(); fi != fe;
++fi) {
if (fi->begin() != fi->end()) {
for (Function &f : module) {
if (f.begin() != f.end()) {
if (saw_function_with_body) {
LLDB_LOGF(log, "More than one function in the module has a body");
error.SetErrorToGenericError();
Expand All @@ -504,13 +502,11 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
}
}

for (Function::iterator bbi = function.begin(), bbe = function.end();
bbi != bbe; ++bbi) {
for (BasicBlock::iterator ii = bbi->begin(), ie = bbi->end(); ii != ie;
++ii) {
switch (ii->getOpcode()) {
for (BasicBlock &bb : function) {
for (Instruction &ii : bb) {
switch (ii.getOpcode()) {
default: {
LLDB_LOGF(log, "Unsupported instruction: %s", PrintValue(&*ii).c_str());
LLDB_LOGF(log, "Unsupported instruction: %s", PrintValue(&ii).c_str());
error.SetErrorToGenericError();
error.SetErrorString(unsupported_opcode_error);
return false;
Expand All @@ -522,7 +518,7 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
case Instruction::PHI:
break;
case Instruction::Call: {
CallInst *call_inst = dyn_cast<CallInst>(ii);
CallInst *call_inst = dyn_cast<CallInst>(&ii);

if (!call_inst) {
error.SetErrorToGenericError();
Expand All @@ -532,7 +528,7 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,

if (!CanIgnoreCall(call_inst) && !support_function_calls) {
LLDB_LOGF(log, "Unsupported instruction: %s",
PrintValue(&*ii).c_str());
PrintValue(&ii).c_str());
error.SetErrorToGenericError();
error.SetErrorString(unsupported_opcode_error);
return false;
Expand All @@ -541,7 +537,7 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
case Instruction::GetElementPtr:
break;
case Instruction::ICmp: {
ICmpInst *icmp_inst = dyn_cast<ICmpInst>(ii);
ICmpInst *icmp_inst = dyn_cast<ICmpInst>(&ii);

if (!icmp_inst) {
error.SetErrorToGenericError();
Expand All @@ -552,7 +548,7 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
switch (icmp_inst->getPredicate()) {
default: {
LLDB_LOGF(log, "Unsupported ICmp predicate: %s",
PrintValue(&*ii).c_str());
PrintValue(&ii).c_str());

error.SetErrorToGenericError();
error.SetErrorString(unsupported_opcode_error);
Expand Down Expand Up @@ -594,8 +590,8 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
break;
}

for (int oi = 0, oe = ii->getNumOperands(); oi != oe; ++oi) {
Value *operand = ii->getOperand(oi);
for (unsigned oi = 0, oe = ii.getNumOperands(); oi != oe; ++oi) {
Value *operand = ii.getOperand(oi);
Type *operand_type = operand->getType();

switch (operand_type->getTypeID()) {
Expand Down

0 comments on commit af4adb0

Please sign in to comment.