Do not pass in the same argument to the extracted function more than once, and

give the extracted function a more useful name than just foo_code.

llvm-svn: 13493
This commit is contained in:
Chris Lattner 2004-05-12 16:26:18 +00:00
parent 6c0c313daf
commit 66219abac7
1 changed files with 8 additions and 1 deletions

View File

@ -226,6 +226,12 @@ void CodeExtractor::findInputsOutputs(Values &inputs, Values &outputs) {
} // for: basic blocks
NumExitBlocks = ExitBlocks.size();
// Eliminate duplicates.
std::sort(inputs.begin(), inputs.end());
inputs.erase(std::unique(inputs.begin(), inputs.end()), inputs.end());
std::sort(outputs.begin(), outputs.end());
outputs.erase(std::unique(outputs.begin(), outputs.end()), outputs.end());
}
/// constructFunction - make a function based on inputs and outputs, as follows:
@ -284,7 +290,8 @@ Function *CodeExtractor::constructFunction(const Values &inputs,
// Create the new function
Function *newFunction = new Function(funcType,
GlobalValue::InternalLinkage,
oldFunction->getName() + "_code", M);
oldFunction->getName() + "_" +
header->getName(), M);
newFunction->getBasicBlockList().push_back(newRootNode);
// Create an iterator to name all of the arguments we inserted.