mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
CppBackend: Remove implicit ilist iterator conversions, NFC
Mostly just converted to range-based for loops. May have converted a couple of extra loops as a drive-by (not sure). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250766 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2b76674c16
commit
7a225f7f37
@ -1799,13 +1799,12 @@ void CppWriter::printFunctionBody(const Function *F) {
|
||||
<< "->arg_begin();";
|
||||
nl(Out);
|
||||
}
|
||||
for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
|
||||
AI != AE; ++AI) {
|
||||
Out << "Value* " << getCppName(AI) << " = args++;";
|
||||
for (const Argument &AI : F->args()) {
|
||||
Out << "Value* " << getCppName(&AI) << " = args++;";
|
||||
nl(Out);
|
||||
if (AI->hasName()) {
|
||||
Out << getCppName(AI) << "->setName(\"";
|
||||
printEscapedString(AI->getName());
|
||||
if (AI.hasName()) {
|
||||
Out << getCppName(&AI) << "->setName(\"";
|
||||
printEscapedString(AI.getName());
|
||||
Out << "\");";
|
||||
nl(Out);
|
||||
}
|
||||
@ -1814,29 +1813,25 @@ void CppWriter::printFunctionBody(const Function *F) {
|
||||
|
||||
// Create all the basic blocks
|
||||
nl(Out);
|
||||
for (Function::const_iterator BI = F->begin(), BE = F->end();
|
||||
BI != BE; ++BI) {
|
||||
std::string bbname(getCppName(BI));
|
||||
for (const BasicBlock &BI : *F) {
|
||||
std::string bbname(getCppName(&BI));
|
||||
Out << "BasicBlock* " << bbname <<
|
||||
" = BasicBlock::Create(mod->getContext(), \"";
|
||||
if (BI->hasName())
|
||||
printEscapedString(BI->getName());
|
||||
Out << "\"," << getCppName(BI->getParent()) << ",0);";
|
||||
if (BI.hasName())
|
||||
printEscapedString(BI.getName());
|
||||
Out << "\"," << getCppName(BI.getParent()) << ",0);";
|
||||
nl(Out);
|
||||
}
|
||||
|
||||
// Output all of its basic blocks... for the function
|
||||
for (Function::const_iterator BI = F->begin(), BE = F->end();
|
||||
BI != BE; ++BI) {
|
||||
std::string bbname(getCppName(BI));
|
||||
nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
|
||||
for (const BasicBlock &BI : *F) {
|
||||
std::string bbname(getCppName(&BI));
|
||||
nl(Out) << "// Block " << BI.getName() << " (" << bbname << ")";
|
||||
nl(Out);
|
||||
|
||||
// Output all of the instructions in the basic block...
|
||||
for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
|
||||
I != E; ++I) {
|
||||
printInstruction(I,bbname);
|
||||
}
|
||||
for (const Instruction &I : BI)
|
||||
printInstruction(&I, bbname);
|
||||
}
|
||||
|
||||
// Loop over the ForwardRefs and resolve them now that all instructions
|
||||
@ -1879,7 +1874,7 @@ void CppWriter::printInline(const std::string& fname,
|
||||
printFunctionUses(F);
|
||||
printFunctionBody(F);
|
||||
is_inline = false;
|
||||
Out << "return " << getCppName(F->begin()) << ";";
|
||||
Out << "return " << getCppName(&F->front()) << ";";
|
||||
nl(Out) << "}";
|
||||
nl(Out);
|
||||
}
|
||||
@ -1892,17 +1887,14 @@ void CppWriter::printModuleBody() {
|
||||
// Functions can call each other and global variables can reference them so
|
||||
// define all the functions first before emitting their function bodies.
|
||||
nl(Out) << "// Function Declarations"; nl(Out);
|
||||
for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
|
||||
I != E; ++I)
|
||||
printFunctionHead(I);
|
||||
for (const Function &I : *TheModule)
|
||||
printFunctionHead(&I);
|
||||
|
||||
// Process the global variables declarations. We can't initialze them until
|
||||
// after the constants are printed so just print a header for each global
|
||||
nl(Out) << "// Global Variable Declarations\n"; nl(Out);
|
||||
for (Module::const_global_iterator I = TheModule->global_begin(),
|
||||
E = TheModule->global_end(); I != E; ++I) {
|
||||
printVariableHead(I);
|
||||
}
|
||||
for (const GlobalVariable &I : TheModule->globals())
|
||||
printVariableHead(&I);
|
||||
|
||||
// Print out all the constants definitions. Constants don't recurse except
|
||||
// through GlobalValues. All GlobalValues have been declared at this point
|
||||
@ -1914,21 +1906,18 @@ void CppWriter::printModuleBody() {
|
||||
// been emitted. These definitions just couple the gvars with their constant
|
||||
// initializers.
|
||||
nl(Out) << "// Global Variable Definitions"; nl(Out);
|
||||
for (Module::const_global_iterator I = TheModule->global_begin(),
|
||||
E = TheModule->global_end(); I != E; ++I) {
|
||||
printVariableBody(I);
|
||||
}
|
||||
for (const GlobalVariable &I : TheModule->globals())
|
||||
printVariableBody(&I);
|
||||
|
||||
// Finally, we can safely put out all of the function bodies.
|
||||
nl(Out) << "// Function Definitions"; nl(Out);
|
||||
for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
|
||||
I != E; ++I) {
|
||||
if (!I->isDeclaration()) {
|
||||
nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
|
||||
for (const Function &I : *TheModule) {
|
||||
if (!I.isDeclaration()) {
|
||||
nl(Out) << "// Function: " << I.getName() << " (" << getCppName(&I)
|
||||
<< ")";
|
||||
nl(Out) << "{";
|
||||
nl(Out,1);
|
||||
printFunctionBody(I);
|
||||
printFunctionBody(&I);
|
||||
nl(Out,-1) << "}";
|
||||
nl(Out);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user