2002-03-29 19:03:54 +00:00
|
|
|
|
2002-11-19 20:59:41 +00:00
|
|
|
|
|
|
|
|
2002-03-29 19:03:54 +00:00
|
|
|
// FIXME: document
|
|
|
|
|
2002-11-19 20:59:41 +00:00
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
2002-03-29 19:03:54 +00:00
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include <map>
|
|
|
|
|
2002-04-27 07:27:19 +00:00
|
|
|
// FIXME: This should be merged with FunctionInlining
|
2002-03-29 19:03:54 +00:00
|
|
|
|
|
|
|
// RemapInstruction - Convert the instruction operands from referencing the
|
|
|
|
// current values into those specified by ValueMap.
|
|
|
|
//
|
|
|
|
static inline void RemapInstruction(Instruction *I,
|
|
|
|
std::map<const Value *, Value*> &ValueMap) {
|
|
|
|
for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
|
|
|
|
const Value *Op = I->getOperand(op);
|
|
|
|
Value *V = ValueMap[Op];
|
|
|
|
if (!V && (isa<GlobalValue>(Op) || isa<Constant>(Op)))
|
|
|
|
continue; // Globals and constants don't get relocated
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (!V) {
|
2002-06-25 21:18:19 +00:00
|
|
|
std::cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
|
|
|
|
std::cerr << "\nInst = " << I;
|
2002-03-29 19:03:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
assert(V && "Referenced value not in value map!");
|
|
|
|
I->setOperand(op, V);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone OldFunc into NewFunc, transforming the old arguments into references to
|
|
|
|
// ArgMap values.
|
|
|
|
//
|
|
|
|
void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
|
|
|
|
const std::vector<Value*> &ArgMap) {
|
2002-06-25 16:12:52 +00:00
|
|
|
assert(OldFunc->aempty() || !NewFunc->aempty() &&
|
2002-03-29 19:03:54 +00:00
|
|
|
"Synthesization of arguments is not implemented yet!");
|
2002-06-25 16:12:52 +00:00
|
|
|
assert(OldFunc->asize() == ArgMap.size() &&
|
2002-03-29 19:03:54 +00:00
|
|
|
"Improper number of argument values to map specified!");
|
|
|
|
|
|
|
|
// Keep a mapping between the original function's values and the new
|
|
|
|
// duplicated code's values. This includes all of: Function arguments,
|
|
|
|
// instruction values, constant pool entries, and basic blocks.
|
|
|
|
//
|
|
|
|
std::map<const Value *, Value*> ValueMap;
|
|
|
|
|
|
|
|
// Add all of the function arguments to the mapping...
|
2002-06-25 16:12:52 +00:00
|
|
|
unsigned i = 0;
|
|
|
|
for (Function::const_aiterator I = OldFunc->abegin(), E = OldFunc->aend();
|
|
|
|
I != E; ++I, ++i)
|
|
|
|
ValueMap[I] = ArgMap[i];
|
2002-03-29 19:03:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Loop over all of the basic blocks in the function, cloning them as
|
|
|
|
// appropriate.
|
|
|
|
//
|
|
|
|
for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
|
|
|
|
BI != BE; ++BI) {
|
2002-06-25 16:12:52 +00:00
|
|
|
const BasicBlock &BB = *BI;
|
|
|
|
assert(BB.getTerminator() && "BasicBlock doesn't have terminator!?!?");
|
2002-03-29 19:03:54 +00:00
|
|
|
|
|
|
|
// Create a new basic block to copy instructions into!
|
2002-06-25 16:12:52 +00:00
|
|
|
BasicBlock *CBB = new BasicBlock(BB.getName(), NewFunc);
|
|
|
|
ValueMap[&BB] = CBB; // Add basic block mapping.
|
2002-03-29 19:03:54 +00:00
|
|
|
|
|
|
|
// Loop over all instructions copying them over...
|
2002-06-25 16:12:52 +00:00
|
|
|
for (BasicBlock::const_iterator II = BB.begin(), IE = BB.end();
|
2002-03-29 19:03:54 +00:00
|
|
|
II != IE; ++II) {
|
2002-06-25 16:12:52 +00:00
|
|
|
Instruction *NewInst = II->clone();
|
|
|
|
NewInst->setName(II->getName()); // Name is not cloned...
|
2002-03-29 19:03:54 +00:00
|
|
|
CBB->getInstList().push_back(NewInst);
|
2002-06-25 16:12:52 +00:00
|
|
|
ValueMap[II] = NewInst; // Add instruction map to value.
|
2002-03-29 19:03:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over all of the instructions in the function, fixing up operand
|
|
|
|
// references as we go. This uses ValueMap to do all the hard work.
|
|
|
|
//
|
2002-06-25 16:12:52 +00:00
|
|
|
for (Function::const_iterator BB = OldFunc->begin(), BE = OldFunc->end();
|
|
|
|
BB != BE; ++BB) {
|
2002-03-29 19:03:54 +00:00
|
|
|
BasicBlock *NBB = cast<BasicBlock>(ValueMap[BB]);
|
|
|
|
|
|
|
|
// Loop over all instructions, fixing each one as we find it...
|
2002-06-25 16:12:52 +00:00
|
|
|
for (BasicBlock::iterator II = NBB->begin(); II != NBB->end(); ++II)
|
|
|
|
RemapInstruction(II, ValueMap);
|
2002-03-29 19:03:54 +00:00
|
|
|
}
|
|
|
|
}
|