blob: 75aba5990d408ebe74f7f49a68ca1bd4ca9568f7 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- ExtractFunction.cpp - Extract a function from Program --------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerafade922002-11-20 22:28:10 +00009//
Chris Lattnerefdc0b52004-03-14 20:50:42 +000010// This file implements several methods that are used to extract functions,
11// loops, or portions of a module from the rest of the module.
Chris Lattnerafade922002-11-20 22:28:10 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "BugDriver.h"
Chris Lattner5a7a9e52006-03-08 23:55:38 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
Chris Lattnerafade922002-11-20 22:28:10 +000018#include "llvm/Module.h"
19#include "llvm/PassManager.h"
Brian Gaeked1a85a72003-09-10 21:11:42 +000020#include "llvm/Pass.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000021#include "llvm/Analysis/Verifier.h"
Chris Lattnerafade922002-11-20 22:28:10 +000022#include "llvm/Transforms/IPO.h"
Chris Lattner65207852003-01-23 02:48:33 +000023#include "llvm/Transforms/Scalar.h"
Chris Lattnerafade922002-11-20 22:28:10 +000024#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner5e783ab2004-05-11 21:54:13 +000025#include "llvm/Transforms/Utils/FunctionUtils.h"
Chris Lattner5da69c72003-10-23 15:42:55 +000026#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/FileUtilities.h"
Nick Lewycky6fa98b12007-11-14 06:47:06 +000030#include "llvm/System/Path.h"
31#include "llvm/System/Signals.h"
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000032#include <set>
Nick Lewycky6fa98b12007-11-14 06:47:06 +000033#include <fstream>
Chris Lattnere31a9cc2006-01-22 22:53:40 +000034#include <iostream>
Chris Lattnerc6b519d2003-11-23 04:51:05 +000035using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000036
37namespace llvm {
Chris Lattnerc6b519d2003-11-23 04:51:05 +000038 bool DisableSimplifyCFG = false;
Brian Gaeked0fde302003-11-11 22:41:34 +000039} // End llvm namespace
40
Chris Lattner6db70ef2003-04-25 22:08:12 +000041namespace {
42 cl::opt<bool>
Chris Lattner6db70ef2003-04-25 22:08:12 +000043 NoDCE ("disable-dce",
44 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattner47ae4a12003-08-05 15:51:05 +000045 cl::opt<bool, true>
46 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner6db70ef2003-04-25 22:08:12 +000047 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
48}
Chris Lattnerafade922002-11-20 22:28:10 +000049
Chris Lattner65207852003-01-23 02:48:33 +000050/// deleteInstructionFromProgram - This method clones the current Program and
51/// deletes the specified instruction from the cloned module. It then runs a
52/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
53/// depends on the value. The modified module is then returned.
54///
Chris Lattner0cc88072004-02-18 21:50:26 +000055Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Chris Lattner65207852003-01-23 02:48:33 +000056 unsigned Simplification) const {
57 Module *Result = CloneModule(Program);
58
Chris Lattner0cc88072004-02-18 21:50:26 +000059 const BasicBlock *PBB = I->getParent();
60 const Function *PF = PBB->getParent();
Chris Lattner65207852003-01-23 02:48:33 +000061
62 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
Chris Lattner0cc88072004-02-18 21:50:26 +000063 std::advance(RFI, std::distance(PF->getParent()->begin(),
64 Module::const_iterator(PF)));
Chris Lattner65207852003-01-23 02:48:33 +000065
66 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattner0cc88072004-02-18 21:50:26 +000067 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner65207852003-01-23 02:48:33 +000068
69 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattner0cc88072004-02-18 21:50:26 +000070 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
71 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner65207852003-01-23 02:48:33 +000072
73 // If this instruction produces a value, replace any users with null values
Chris Lattner0cc88072004-02-18 21:50:26 +000074 if (TheInst->getType() != Type::VoidTy)
75 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner65207852003-01-23 02:48:33 +000076
77 // Remove the instruction from the program.
Chris Lattner0cc88072004-02-18 21:50:26 +000078 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner65207852003-01-23 02:48:33 +000079
Chris Lattner5a7a9e52006-03-08 23:55:38 +000080
81 //writeProgramToFile("current.bc", Result);
82
Chris Lattner44be2572003-04-24 22:53:24 +000083 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000084 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000085 // Make sure that the appropriate target data is always used...
Chris Lattner831b1212006-06-16 18:23:49 +000086 Passes.add(new TargetData(Result));
Chris Lattner5da69c72003-10-23 15:42:55 +000087
Chris Lattnerefdc0b52004-03-14 20:50:42 +000088 /// FIXME: If this used runPasses() like the methods below, we could get rid
89 /// of the -disable-* options!
Chris Lattner6db70ef2003-04-25 22:08:12 +000090 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000091 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000092 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000093 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000094
95 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +000096 Passes.run(*Result);
97 return Result;
98}
Chris Lattnerba386d92003-02-28 16:13:20 +000099
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000100static const PassInfo *getPI(Pass *P) {
101 const PassInfo *PI = P->getPassInfo();
102 delete P;
103 return PI;
104}
105
Chris Lattnerba386d92003-02-28 16:13:20 +0000106/// performFinalCleanups - This method clones the current Program and performs
107/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner9b5b1902005-02-23 06:12:11 +0000108/// before handing it to the user.
Chris Lattnerba386d92003-02-28 16:13:20 +0000109///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000110Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000111 // Make all functions external, so GlobalDCE doesn't delete them...
112 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
113 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000114
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000115 std::vector<const PassInfo*> CleanupPasses;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000116 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
117 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000118
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000119 if (MayModifySemantics)
120 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
121 else
122 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000123
Chris Lattnera75766a2004-03-14 21:17:22 +0000124 Module *New = runPassesOn(M, CleanupPasses);
125 if (New == 0) {
Chris Lattner7546c382004-03-14 20:02:07 +0000126 std::cerr << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner9b5b1902005-02-23 06:12:11 +0000127 return M;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000128 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000129 delete M;
130 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000131}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000132
133
Chris Lattner7546c382004-03-14 20:02:07 +0000134/// ExtractLoop - Given a module, extract up to one loop from it into a new
135/// function. This returns null if there are no extractable loops in the
136/// program or if the loop extractor crashes.
137Module *BugDriver::ExtractLoop(Module *M) {
138 std::vector<const PassInfo*> LoopExtractPasses;
139 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
140
Chris Lattnera75766a2004-03-14 21:17:22 +0000141 Module *NewM = runPassesOn(M, LoopExtractPasses);
142 if (NewM == 0) {
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000143 Module *Old = swapProgramIn(M);
144 std::cout << "*** Loop extraction failed: ";
Gabor Greif8ff70c22007-07-04 21:55:50 +0000145 EmitProgressBitcode("loopextraction", true);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000146 std::cout << "*** Sorry. :( Please report a bug!\n";
147 swapProgramIn(Old);
Chris Lattner7546c382004-03-14 20:02:07 +0000148 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000149 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000150
151 // Check to see if we created any new functions. If not, no loops were
Chris Lattnera269ec72004-11-18 19:40:13 +0000152 // extracted and we should return null. Limit the number of loops we extract
153 // to avoid taking forever.
154 static unsigned NumExtracted = 32;
Chris Lattner90c18c52004-11-16 06:31:38 +0000155 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000156 delete NewM;
157 return 0;
Chris Lattner90c18c52004-11-16 06:31:38 +0000158 } else {
159 assert(M->size() < NewM->size() && "Loop extract removed functions?");
160 Module::iterator MI = NewM->begin();
161 for (unsigned i = 0, e = M->size(); i != e; ++i)
162 ++MI;
Chris Lattnera75766a2004-03-14 21:17:22 +0000163 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000164
Chris Lattnera75766a2004-03-14 21:17:22 +0000165 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000166}
167
168
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000169// DeleteFunctionBody - "Remove" the function by deleting all of its basic
170// blocks, making it external.
171//
172void llvm::DeleteFunctionBody(Function *F) {
173 // delete the body of the function...
174 F->deleteBody();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000175 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000176}
177
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000178/// GetTorInit - Given a list of entries for static ctors/dtors, return them
179/// as a constant array.
180static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
181 assert(!TorList.empty() && "Don't create empty tor list!");
182 std::vector<Constant*> ArrayElts;
183 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
184 std::vector<Constant*> Elts;
Reid Spencer71d2ec92006-12-31 06:02:26 +0000185 Elts.push_back(ConstantInt::get(Type::Int32Ty, TorList[i].second));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000186 Elts.push_back(TorList[i].first);
187 ArrayElts.push_back(ConstantStruct::get(Elts));
188 }
189 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
190 ArrayElts.size()),
191 ArrayElts);
192}
193
194/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
195/// M1 has all of the global variables. If M2 contains any functions that are
196/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
197/// prune appropriate entries out of M1s list.
198static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2){
199 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Reid Spencer5cbf9852007-01-30 20:08:39 +0000200 if (!GV || GV->isDeclaration() || GV->hasInternalLinkage() ||
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000201 !GV->use_empty()) return;
202
203 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
204 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
205 if (!InitList) return;
206
207 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
208 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
209 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
210
211 if (CS->getOperand(1)->isNullValue())
212 break; // Found a null terminator, stop here.
213
Reid Spencerb83eb642006-10-20 07:07:24 +0000214 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
215 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000216
217 Constant *FP = CS->getOperand(1);
218 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000219 if (CE->isCast())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000220 FP = CE->getOperand(0);
221 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000222 if (!F->isDeclaration())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000223 M1Tors.push_back(std::make_pair(F, Priority));
224 else {
225 // Map to M2's version of the function.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000226 F = M2->getFunction(F->getName());
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000227 M2Tors.push_back(std::make_pair(F, Priority));
228 }
229 }
230 }
231 }
232
233 GV->eraseFromParent();
234 if (!M1Tors.empty()) {
235 Constant *M1Init = GetTorInit(M1Tors);
236 new GlobalVariable(M1Init->getType(), false, GlobalValue::AppendingLinkage,
237 M1Init, GlobalName, M1);
238 }
239
240 GV = M2->getNamedGlobal(GlobalName);
241 assert(GV && "Not a clone of M1?");
242 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
243
244 GV->eraseFromParent();
245 if (!M2Tors.empty()) {
246 Constant *M2Init = GetTorInit(M2Tors);
247 new GlobalVariable(M2Init->getType(), false, GlobalValue::AppendingLinkage,
248 M2Init, GlobalName, M2);
249 }
250}
251
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000252
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000253/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
254/// module, split the functions OUT of the specified module, and place them in
255/// the new module.
256Module *llvm::SplitFunctionsOutOfModule(Module *M,
257 const std::vector<Function*> &F) {
258 // Make sure functions & globals are all external so that linkage
259 // between the two modules will work.
260 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
261 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000262 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
263 I != E; ++I)
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000264 I->setLinkage(GlobalValue::ExternalLinkage);
265
Chris Lattnerfef02422006-11-09 06:24:56 +0000266 Module *New = CloneModule(M);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000267
Chris Lattnerfef02422006-11-09 06:24:56 +0000268 // Make sure global initializers exist only in the safe module (CBE->.so)
269 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
270 I != E; ++I)
271 I->setInitializer(0); // Delete the initializer to make it external
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000272
Chris Lattnerfef02422006-11-09 06:24:56 +0000273 // Remove the Test functions from the Safe module
Chris Lattnerfb4b96e2004-04-02 16:28:32 +0000274 std::set<std::pair<std::string, const PointerType*> > TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000275 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000276 TestFunctions.insert(std::make_pair(F[i]->getName(), F[i]->getType()));
Reid Spenceref9b9a72007-02-05 20:47:22 +0000277 Function *TNOF = M->getFunction(F[i]->getName());
Chris Lattnerfef02422006-11-09 06:24:56 +0000278 assert(TNOF && "Function doesn't exist in module!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000279 assert(TNOF->getFunctionType() == F[i]->getFunctionType() && "wrong type?");
280 DEBUG(std::cerr << "Removing function " << F[i]->getName() << "\n");
Chris Lattnerfef02422006-11-09 06:24:56 +0000281 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000282 }
283
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000284
Chris Lattnerfef02422006-11-09 06:24:56 +0000285 // Remove the Safe functions from the Test module
286 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
287 if (!TestFunctions.count(std::make_pair(I->getName(), I->getType())))
288 DeleteFunctionBody(I);
289
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000290
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000291 // Make sure that there is a global ctor/dtor array in both halves of the
292 // module if they both have static ctor/dtor functions.
293 SplitStaticCtorDtor("llvm.global_ctors", M, New);
294 SplitStaticCtorDtor("llvm.global_dtors", M, New);
295
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000296 return New;
297}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000298
299//===----------------------------------------------------------------------===//
300// Basic Block Extraction Code
301//===----------------------------------------------------------------------===//
302
Chris Lattner5e783ab2004-05-11 21:54:13 +0000303/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
304/// into their own functions. The only detail is that M is actually a module
305/// cloned from the one the BBs are in, so some mapping needs to be performed.
306/// If this operation fails for some reason (ie the implementation is buggy),
307/// this function should return null, otherwise it returns a new Module.
308Module *BugDriver::ExtractMappedBlocksFromModule(const
309 std::vector<BasicBlock*> &BBs,
310 Module *M) {
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000311 char *ExtraArg = NULL;
312
313 sys::Path uniqueFilename("bugpoint-extractblocks");
314 std::string ErrMsg;
315 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
316 std::cout << "*** Basic Block extraction failed!\n";
317 std::cerr << "Error creating temporary file: " << ErrMsg << "\n";
318 M = swapProgramIn(M);
319 EmitProgressBitcode("basicblockextractfail", true);
320 swapProgramIn(M);
321 return 0;
322 }
323 sys::RemoveFileOnSignal(uniqueFilename);
324
325 std::ofstream BlocksToNotExtractFile(uniqueFilename.c_str());
326 if (!BlocksToNotExtractFile) {
327 std::cout << "*** Basic Block extraction failed!\n";
328 std::cerr << "Error writing list of blocks to not extract: " << ErrMsg
329 << "\n";
330 M = swapProgramIn(M);
331 EmitProgressBitcode("basicblockextractfail", true);
332 swapProgramIn(M);
333 return 0;
334 }
335 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
336 I != E; ++I) {
337 BasicBlock *BB = *I;
338 BlocksToNotExtractFile << BB->getParent()->getName() << " "
339 << BB->getName() << "\n";
340 }
341 BlocksToNotExtractFile.close();
342
343 const char *uniqueFN = uniqueFilename.c_str();
344 ExtraArg = (char*)malloc(23 + strlen(uniqueFN));
345 strcat(strcpy(ExtraArg, "--extract-blocks-file="), uniqueFN);
346
Chris Lattner5e783ab2004-05-11 21:54:13 +0000347 std::vector<const PassInfo*> PI;
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000348 std::vector<BasicBlock *> EmptyBBs; // This parameter is ignored.
349 PI.push_back(getPI(createBlockExtractorPass(EmptyBBs)));
350 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
351
352 if (uniqueFilename.exists())
353 uniqueFilename.eraseFromDisk(); // Free disk space
354 free(ExtraArg);
355
Chris Lattner891150f2004-08-12 02:36:50 +0000356 if (Ret == 0) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000357 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
Chris Lattner891150f2004-08-12 02:36:50 +0000358 M = swapProgramIn(M);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000359 EmitProgressBitcode("basicblockextractfail", true);
Chris Lattnerb923b2e2006-05-12 17:28:36 +0000360 swapProgramIn(M);
Chris Lattner891150f2004-08-12 02:36:50 +0000361 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000362 return Ret;
363}