blob: d67fbb2ce609716487826d98fd973f5c4d117c49 [file] [log] [blame]
Misha Brukman4afac182003-10-10 17:45:12 +00001//===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43: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 Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00009//
Chris Lattnerbd199fb2002-12-24 00:01:05 +000010// This file defines the common interface used by the various execution engine
11// subclasses.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner3785fad2003-08-05 17:00:32 +000015#define DEBUG_TYPE "jit"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000016#include "llvm/Constants.h"
Misha Brukman19684162003-10-16 21:18:05 +000017#include "llvm/DerivedTypes.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000018#include "llvm/Module.h"
Misha Brukman19684162003-10-16 21:18:05 +000019#include "llvm/ModuleProvider.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000020#include "llvm/ADT/Statistic.h"
Misha Brukman19684162003-10-16 21:18:05 +000021#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000022#include "llvm/ExecutionEngine/GenericValue.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000024#include "llvm/Support/MutexGuard.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000025#include "llvm/System/DynamicLibrary.h"
26#include "llvm/Target/TargetData.h"
Jeff Cohen2b7d7b52007-03-12 17:57:00 +000027#include <math.h>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000028using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000029
Chris Lattner36343732006-12-19 22:43:32 +000030STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
31STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattnerbd199fb2002-12-24 00:01:05 +000032
Chris Lattner2fe4bb02006-03-22 06:07:50 +000033ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
34ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
35
Chris Lattnerfe854032006-08-16 01:24:12 +000036ExecutionEngine::ExecutionEngine(ModuleProvider *P) {
Chris Lattner3d6e33d2006-11-09 19:31:15 +000037 LazyCompilationDisabled = false;
Chris Lattnerfe854032006-08-16 01:24:12 +000038 Modules.push_back(P);
Misha Brukman19684162003-10-16 21:18:05 +000039 assert(P && "ModuleProvider is null?");
40}
41
Chris Lattnerfe854032006-08-16 01:24:12 +000042ExecutionEngine::ExecutionEngine(Module *M) {
Chris Lattner3d6e33d2006-11-09 19:31:15 +000043 LazyCompilationDisabled = false;
Misha Brukman05701572003-10-17 18:31:59 +000044 assert(M && "Module is null?");
Chris Lattnerfe854032006-08-16 01:24:12 +000045 Modules.push_back(new ExistingModuleProvider(M));
Misha Brukman19684162003-10-16 21:18:05 +000046}
47
Brian Gaeke8e539482003-09-04 22:57:27 +000048ExecutionEngine::~ExecutionEngine() {
Reid Spencerd4c0e622007-03-03 18:19:18 +000049 clearAllGlobalMappings();
Chris Lattnerfe854032006-08-16 01:24:12 +000050 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
51 delete Modules[i];
Brian Gaeke8e539482003-09-04 22:57:27 +000052}
53
Chris Lattnerfe854032006-08-16 01:24:12 +000054/// FindFunctionNamed - Search all of the active modules to find the one that
55/// defines FnName. This is very slow operation and shouldn't be used for
56/// general code.
57Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
58 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Reid Spencer688b0492007-02-05 21:19:13 +000059 if (Function *F = Modules[i]->getModule()->getFunction(FnName))
Chris Lattnerfe854032006-08-16 01:24:12 +000060 return F;
61 }
62 return 0;
63}
64
65
Chris Lattnere7fd5532006-05-08 22:00:52 +000066/// addGlobalMapping - Tell the execution engine that the specified global is
67/// at the specified location. This is used internally as functions are JIT'd
68/// and as global variables are laid out in memory. It can and should also be
69/// used by clients of the EE that want to have an LLVM global overlay
70/// existing data in memory.
71void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
72 MutexGuard locked(lock);
73
74 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
75 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
76 CurVal = Addr;
77
78 // If we are using the reverse mapping, add it too
79 if (!state.getGlobalAddressReverseMap(locked).empty()) {
80 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
81 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
82 V = GV;
83 }
84}
85
86/// clearAllGlobalMappings - Clear all global mappings and start over again
87/// use in dynamic compilation scenarios when you want to move globals
88void ExecutionEngine::clearAllGlobalMappings() {
89 MutexGuard locked(lock);
90
91 state.getGlobalAddressMap(locked).clear();
92 state.getGlobalAddressReverseMap(locked).clear();
93}
94
95/// updateGlobalMapping - Replace an existing mapping for GV with a new
96/// address. This updates both maps as required. If "Addr" is null, the
97/// entry for the global is removed from the mappings.
98void ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
99 MutexGuard locked(lock);
100
101 // Deleting from the mapping?
102 if (Addr == 0) {
103 state.getGlobalAddressMap(locked).erase(GV);
104 if (!state.getGlobalAddressReverseMap(locked).empty())
105 state.getGlobalAddressReverseMap(locked).erase(Addr);
106 return;
107 }
108
109 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
110 if (CurVal && !state.getGlobalAddressReverseMap(locked).empty())
111 state.getGlobalAddressReverseMap(locked).erase(CurVal);
112 CurVal = Addr;
113
114 // If we are using the reverse mapping, add it too
115 if (!state.getGlobalAddressReverseMap(locked).empty()) {
116 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
117 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
118 V = GV;
119 }
120}
121
122/// getPointerToGlobalIfAvailable - This returns the address of the specified
123/// global value if it is has already been codegen'd, otherwise it returns null.
124///
125void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
126 MutexGuard locked(lock);
127
128 std::map<const GlobalValue*, void*>::iterator I =
129 state.getGlobalAddressMap(locked).find(GV);
130 return I != state.getGlobalAddressMap(locked).end() ? I->second : 0;
131}
132
Chris Lattner55d86482003-12-31 20:21:04 +0000133/// getGlobalValueAtAddress - Return the LLVM global value object that starts
134/// at the specified address.
135///
136const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +0000137 MutexGuard locked(lock);
138
Chris Lattner55d86482003-12-31 20:21:04 +0000139 // If we haven't computed the reverse mapping yet, do so first.
Reid Spenceree448632005-07-12 15:51:55 +0000140 if (state.getGlobalAddressReverseMap(locked).empty()) {
Chris Lattnere7fd5532006-05-08 22:00:52 +0000141 for (std::map<const GlobalValue*, void *>::iterator
142 I = state.getGlobalAddressMap(locked).begin(),
143 E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
144 state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second,
145 I->first));
Chris Lattner55d86482003-12-31 20:21:04 +0000146 }
147
148 std::map<void *, const GlobalValue*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000149 state.getGlobalAddressReverseMap(locked).find(Addr);
150 return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +0000151}
Chris Lattner87f03102003-12-26 06:50:30 +0000152
153// CreateArgv - Turn a vector of strings into a nice argv style array of
154// pointers to null terminated strings.
155//
156static void *CreateArgv(ExecutionEngine *EE,
157 const std::vector<std::string> &InputArgv) {
Owen Andersona69571c2006-05-03 01:29:57 +0000158 unsigned PtrSize = EE->getTargetData()->getPointerSize();
Chris Lattner87f03102003-12-26 06:50:30 +0000159 char *Result = new char[(InputArgv.size()+1)*PtrSize];
160
Bill Wendling480f0932006-11-27 23:54:50 +0000161 DOUT << "ARGV = " << (void*)Result << "\n";
Reid Spencere49661b2006-12-31 05:51:36 +0000162 const Type *SBytePtr = PointerType::get(Type::Int8Ty);
Chris Lattner87f03102003-12-26 06:50:30 +0000163
164 for (unsigned i = 0; i != InputArgv.size(); ++i) {
165 unsigned Size = InputArgv[i].size()+1;
166 char *Dest = new char[Size];
Bill Wendling480f0932006-11-27 23:54:50 +0000167 DOUT << "ARGV[" << i << "] = " << (void*)Dest << "\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +0000168
Chris Lattner87f03102003-12-26 06:50:30 +0000169 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
170 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000171
Chris Lattner87f03102003-12-26 06:50:30 +0000172 // Endian safe: Result[i] = (PointerTy)Dest;
173 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
174 SBytePtr);
175 }
176
177 // Null terminate it
178 EE->StoreValueToMemory(PTOGV(0),
179 (GenericValue*)(Result+InputArgv.size()*PtrSize),
180 SBytePtr);
181 return Result;
182}
183
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000184
185/// runStaticConstructorsDestructors - This method is used to execute all of
Chris Lattnerfe854032006-08-16 01:24:12 +0000186/// the static constructors or destructors for a program, depending on the
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000187/// value of isDtors.
188void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
189 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000190
Chris Lattnerfe854032006-08-16 01:24:12 +0000191 // Execute global ctors/dtors for each module in the program.
192 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
193 GlobalVariable *GV = Modules[m]->getModule()->getNamedGlobal(Name);
194
195 // If this global has internal linkage, or if it has a use, then it must be
196 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
197 // this is the case, don't execute any of the global ctors, __main will do
198 // it.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000199 if (!GV || GV->isDeclaration() || GV->hasInternalLinkage()) continue;
Chris Lattnerfe854032006-08-16 01:24:12 +0000200
201 // Should be an array of '{ int, void ()* }' structs. The first value is
202 // the init priority, which we ignore.
203 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
204 if (!InitList) continue;
205 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
206 if (ConstantStruct *CS =
207 dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
208 if (CS->getNumOperands() != 2) break; // Not array of 2-element structs.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000209
Chris Lattnerfe854032006-08-16 01:24:12 +0000210 Constant *FP = CS->getOperand(1);
211 if (FP->isNullValue())
212 break; // Found a null terminator, exit.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000213
Chris Lattnerfe854032006-08-16 01:24:12 +0000214 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000215 if (CE->isCast())
Chris Lattnerfe854032006-08-16 01:24:12 +0000216 FP = CE->getOperand(0);
217 if (Function *F = dyn_cast<Function>(FP)) {
218 // Execute the ctor/dtor function!
219 runFunction(F, std::vector<GenericValue>());
220 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000221 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000222 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000223}
224
Chris Lattner87f03102003-12-26 06:50:30 +0000225/// runFunctionAsMain - This is a helper function which wraps runFunction to
226/// handle the common task of starting up main with the specified argc, argv,
227/// and envp parameters.
228int ExecutionEngine::runFunctionAsMain(Function *Fn,
229 const std::vector<std::string> &argv,
230 const char * const * envp) {
231 std::vector<GenericValue> GVArgs;
232 GenericValue GVArgc;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000233 GVArgc.IntVal = APInt(32, argv.size());
Chris Lattnerf24d0992004-08-16 01:05:35 +0000234 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
235 if (NumArgs) {
236 GVArgs.push_back(GVArgc); // Arg #0 = argc.
237 if (NumArgs > 1) {
238 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
239 assert(((char **)GVTOP(GVArgs[1]))[0] &&
240 "argv[0] was null after CreateArgv");
241 if (NumArgs > 2) {
242 std::vector<std::string> EnvVars;
243 for (unsigned i = 0; envp[i]; ++i)
244 EnvVars.push_back(envp[i]);
245 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
246 }
247 }
248 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000249 return runFunction(Fn, GVArgs).IntVal.getZExtValue();
Chris Lattner87f03102003-12-26 06:50:30 +0000250}
251
Misha Brukman19684162003-10-16 21:18:05 +0000252/// If possible, create a JIT, unless the caller specifically requests an
253/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000254/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000255///
Misha Brukmanedf128a2005-04-21 22:36:52 +0000256ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Reid Spencerd4c0e622007-03-03 18:19:18 +0000257 bool ForceInterpreter,
258 std::string *ErrorStr) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000259 ExecutionEngine *EE = 0;
260
Chris Lattner73011782003-12-28 09:44:37 +0000261 // Unless the interpreter was explicitly selected, try making a JIT.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000262 if (!ForceInterpreter && JITCtor)
Reid Spencerd4c0e622007-03-03 18:19:18 +0000263 EE = JITCtor(MP, ErrorStr);
Brian Gaeke82d82772003-09-03 20:34:19 +0000264
265 // If we can't make a JIT, make an interpreter instead.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000266 if (EE == 0 && InterpCtor)
Reid Spencerd4c0e622007-03-03 18:19:18 +0000267 EE = InterpCtor(MP, ErrorStr);
Chris Lattner73011782003-12-28 09:44:37 +0000268
Chris Lattner726c1ef2006-03-23 05:22:51 +0000269 if (EE) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000270 // Make sure we can resolve symbols in the program as well. The zero arg
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000271 // to the function tells DynamicLibrary to load the program, not a library.
Chris Lattner6f3ada52006-05-14 19:01:55 +0000272 try {
273 sys::DynamicLibrary::LoadLibraryPermanently(0);
274 } catch (...) {
275 }
Chris Lattner726c1ef2006-03-23 05:22:51 +0000276 }
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000277
Brian Gaeke82d82772003-09-03 20:34:19 +0000278 return EE;
279}
280
Misha Brukman4afac182003-10-10 17:45:12 +0000281/// getPointerToGlobal - This returns the address of the specified global
282/// value. This may involve code generation if it's a function.
283///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000284void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000285 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000286 return getPointerToFunction(F);
287
Reid Spenceree448632005-07-12 15:51:55 +0000288 MutexGuard locked(lock);
Jeff Cohen68835dd2006-02-07 05:11:57 +0000289 void *p = state.getGlobalAddressMap(locked)[GV];
290 if (p)
291 return p;
292
293 // Global variable might have been added since interpreter started.
294 if (GlobalVariable *GVar =
295 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
296 EmitGlobalVariable(GVar);
297 else
Chris Lattner64f150f2007-02-14 06:20:04 +0000298 assert(0 && "Global hasn't had an address allocated yet!");
Reid Spenceree448632005-07-12 15:51:55 +0000299 return state.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000300}
301
Reid Spencer3da59db2006-11-27 01:05:10 +0000302/// This function converts a Constant* into a GenericValue. The interesting
303/// part is if C is a ConstantExpr.
304/// @brief Get a GenericValue for a Constnat*
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000305GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000306 // If its undefined, return the garbage.
Reid Spencerbce30f12007-03-06 22:23:15 +0000307 if (isa<UndefValue>(C))
308 return GenericValue();
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000309
Reid Spencer3da59db2006-11-27 01:05:10 +0000310 // If the value is a ConstantExpr
311 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencerbce30f12007-03-06 22:23:15 +0000312 Constant *Op0 = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000313 switch (CE->getOpcode()) {
314 case Instruction::GetElementPtr: {
Reid Spencer3da59db2006-11-27 01:05:10 +0000315 // Compute the index
Reid Spencerbce30f12007-03-06 22:23:15 +0000316 GenericValue Result = getConstantValue(Op0);
Chris Lattner829621c2007-02-10 20:35:22 +0000317 SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000318 uint64_t Offset =
Reid Spencerbce30f12007-03-06 22:23:15 +0000319 TD->getIndexedOffset(Op0->getType(), &Indices[0], Indices.size());
Misha Brukmanedf128a2005-04-21 22:36:52 +0000320
Reid Spencer8fb0f192007-03-06 03:04:04 +0000321 char* tmp = (char*) Result.PointerVal;
322 Result = PTOGV(tmp + Offset);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000323 return Result;
324 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000325 case Instruction::Trunc: {
326 GenericValue GV = getConstantValue(Op0);
327 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
328 GV.IntVal = GV.IntVal.trunc(BitWidth);
329 return GV;
330 }
331 case Instruction::ZExt: {
332 GenericValue GV = getConstantValue(Op0);
333 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
334 GV.IntVal = GV.IntVal.zext(BitWidth);
335 return GV;
336 }
337 case Instruction::SExt: {
338 GenericValue GV = getConstantValue(Op0);
339 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
340 GV.IntVal = GV.IntVal.sext(BitWidth);
341 return GV;
342 }
343 case Instruction::FPTrunc: {
344 GenericValue GV = getConstantValue(Op0);
345 GV.FloatVal = float(GV.DoubleVal);
346 return GV;
347 }
348 case Instruction::FPExt:{
349 GenericValue GV = getConstantValue(Op0);
350 GV.DoubleVal = double(GV.FloatVal);
351 return GV;
352 }
353 case Instruction::UIToFP: {
354 GenericValue GV = getConstantValue(Op0);
355 if (CE->getType() == Type::FloatTy)
356 GV.FloatVal = float(GV.IntVal.roundToDouble());
357 else
358 GV.DoubleVal = GV.IntVal.roundToDouble();
359 return GV;
360 }
361 case Instruction::SIToFP: {
362 GenericValue GV = getConstantValue(Op0);
363 if (CE->getType() == Type::FloatTy)
364 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
365 else
366 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
367 return GV;
368 }
369 case Instruction::FPToUI: // double->APInt conversion handles sign
370 case Instruction::FPToSI: {
371 GenericValue GV = getConstantValue(Op0);
372 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
373 if (Op0->getType() == Type::FloatTy)
374 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
375 else
376 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
377 return GV;
378 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000379 case Instruction::PtrToInt: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000380 GenericValue GV = getConstantValue(Op0);
381 uint32_t PtrWidth = TD->getPointerSizeInBits();
382 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
383 return GV;
384 }
385 case Instruction::IntToPtr: {
386 GenericValue GV = getConstantValue(Op0);
387 uint32_t PtrWidth = TD->getPointerSizeInBits();
388 if (PtrWidth != GV.IntVal.getBitWidth())
389 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
390 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
391 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000392 return GV;
393 }
394 case Instruction::BitCast: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000395 GenericValue GV = getConstantValue(Op0);
396 const Type* DestTy = CE->getType();
397 switch (Op0->getType()->getTypeID()) {
398 default: assert(0 && "Invalid bitcast operand");
399 case Type::IntegerTyID:
400 assert(DestTy->isFloatingPoint() && "invalid bitcast");
401 if (DestTy == Type::FloatTy)
402 GV.FloatVal = GV.IntVal.bitsToFloat();
403 else if (DestTy == Type::DoubleTy)
404 GV.DoubleVal = GV.IntVal.bitsToDouble();
405 break;
406 case Type::FloatTyID:
407 assert(DestTy == Type::Int32Ty && "Invalid bitcast");
408 GV.IntVal.floatToBits(GV.FloatVal);
409 break;
410 case Type::DoubleTyID:
411 assert(DestTy == Type::Int64Ty && "Invalid bitcast");
412 GV.IntVal.doubleToBits(GV.DoubleVal);
413 break;
414 case Type::PointerTyID:
415 assert(isa<PointerType>(DestTy) && "Invalid bitcast");
416 break; // getConstantValue(Op0) above already converted it
417 }
418 return GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000419 }
Chris Lattner9a231222003-05-14 17:51:49 +0000420 case Instruction::Add:
Reid Spencerbce30f12007-03-06 22:23:15 +0000421 case Instruction::Sub:
422 case Instruction::Mul:
423 case Instruction::UDiv:
424 case Instruction::SDiv:
425 case Instruction::URem:
426 case Instruction::SRem:
427 case Instruction::And:
428 case Instruction::Or:
429 case Instruction::Xor: {
430 GenericValue LHS = getConstantValue(Op0);
431 GenericValue RHS = getConstantValue(CE->getOperand(1));
432 GenericValue GV;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000433 switch (CE->getOperand(0)->getType()->getTypeID()) {
434 default: assert(0 && "Bad add type!"); abort();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000435 case Type::IntegerTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000436 switch (CE->getOpcode()) {
437 default: assert(0 && "Invalid integer opcode");
438 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
439 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
440 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
441 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
442 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
443 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
444 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
445 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
446 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
447 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
448 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000449 break;
450 case Type::FloatTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000451 switch (CE->getOpcode()) {
452 default: assert(0 && "Invalid float opcode"); abort();
453 case Instruction::Add:
454 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
455 case Instruction::Sub:
456 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
457 case Instruction::Mul:
458 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
459 case Instruction::FDiv:
460 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
461 case Instruction::FRem:
462 GV.FloatVal = ::fmodf(LHS.FloatVal,RHS.FloatVal); break;
463 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000464 break;
465 case Type::DoubleTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000466 switch (CE->getOpcode()) {
467 default: assert(0 && "Invalid double opcode"); abort();
468 case Instruction::Add:
469 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
470 case Instruction::Sub:
471 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
472 case Instruction::Mul:
473 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
474 case Instruction::FDiv:
475 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
476 case Instruction::FRem:
477 GV.DoubleVal = ::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
478 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000479 break;
480 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000481 return GV;
482 }
Chris Lattner9a231222003-05-14 17:51:49 +0000483 default:
484 break;
485 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000486 cerr << "ConstantExpr not handled: " << *CE << "\n";
Chris Lattner9a231222003-05-14 17:51:49 +0000487 abort();
488 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000489
Reid Spencerbce30f12007-03-06 22:23:15 +0000490 GenericValue Result;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000491 switch (C->getType()->getTypeID()) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000492 case Type::FloatTyID:
493 Result.FloatVal = (float)cast<ConstantFP>(C)->getValue();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000494 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000495 case Type::DoubleTyID:
496 Result.DoubleVal = (double)cast<ConstantFP>(C)->getValue();
497 break;
498 case Type::IntegerTyID:
499 Result.IntVal = cast<ConstantInt>(C)->getValue();
500 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000501 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000502 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000503 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000504 else if (const Function *F = dyn_cast<Function>(C))
505 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
506 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
507 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
508 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000509 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000510 break;
511 default:
Reid Spencerbce30f12007-03-06 22:23:15 +0000512 cerr << "ERROR: Constant unimplemented for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000513 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000514 }
515 return Result;
516}
517
Nate Begeman37efe672006-04-22 18:53:45 +0000518/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. Ptr
519/// is the address of the memory at which to store Val, cast to GenericValue *.
520/// It is not a pointer to a GenericValue containing the address at which to
521/// store Val.
Misha Brukman4afac182003-10-10 17:45:12 +0000522///
Reid Spencer415c1f72007-03-06 05:03:16 +0000523void ExecutionEngine::StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000524 const Type *Ty) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000525 switch (Ty->getTypeID()) {
526 case Type::IntegerTyID: {
527 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
528 GenericValue TmpVal = Val;
529 if (BitWidth <= 8)
530 *((uint8_t*)Ptr) = uint8_t(Val.IntVal.getZExtValue());
531 else if (BitWidth <= 16) {
532 *((uint16_t*)Ptr) = uint16_t(Val.IntVal.getZExtValue());
533 } else if (BitWidth <= 32) {
534 *((uint32_t*)Ptr) = uint32_t(Val.IntVal.getZExtValue());
535 } else if (BitWidth <= 64) {
Reid Spencer415c1f72007-03-06 05:03:16 +0000536 *((uint64_t*)Ptr) = uint64_t(Val.IntVal.getZExtValue());
Reid Spencer8fb0f192007-03-06 03:04:04 +0000537 } else {
538 uint64_t *Dest = (uint64_t*)Ptr;
539 const uint64_t *Src = Val.IntVal.getRawData();
540 for (uint32_t i = 0; i < Val.IntVal.getNumWords(); ++i)
541 Dest[i] = Src[i];
Reid Spencera54b7cb2007-01-12 07:05:14 +0000542 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000543 break;
544 }
545 case Type::FloatTyID:
546 *((float*)Ptr) = Val.FloatVal;
547 break;
548 case Type::DoubleTyID:
549 *((double*)Ptr) = Val.DoubleVal;
550 break;
551 case Type::PointerTyID:
552 *((PointerTy*)Ptr) = Val.PointerVal;
553 break;
554 default:
555 cerr << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000556 }
557}
558
Misha Brukman4afac182003-10-10 17:45:12 +0000559/// FIXME: document
560///
Reid Spencerf0f09a92007-03-03 08:36:29 +0000561void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
562 GenericValue *Ptr,
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000563 const Type *Ty) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000564 switch (Ty->getTypeID()) {
565 case Type::IntegerTyID: {
566 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
567 if (BitWidth <= 8)
568 Result.IntVal = APInt(BitWidth, *((uint8_t*)Ptr));
569 else if (BitWidth <= 16) {
570 Result.IntVal = APInt(BitWidth, *((uint16_t*)Ptr));
571 } else if (BitWidth <= 32) {
572 Result.IntVal = APInt(BitWidth, *((uint32_t*)Ptr));
573 } else if (BitWidth <= 64) {
574 Result.IntVal = APInt(BitWidth, *((uint64_t*)Ptr));
575 } else
Zhou Sheng849c5b42007-05-24 15:03:18 +0000576 Result.IntVal = APInt(BitWidth, (BitWidth+63)/64, (uint64_t*)Ptr);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000577 break;
578 }
579 case Type::FloatTyID:
580 Result.FloatVal = *((float*)Ptr);
581 break;
582 case Type::DoubleTyID:
583 Result.DoubleVal = *((double*)Ptr);
584 break;
585 case Type::PointerTyID:
586 Result.PointerVal = *((PointerTy*)Ptr);
587 break;
588 default:
589 cerr << "Cannot load value of type " << *Ty << "!\n";
590 abort();
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000591 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000592}
593
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000594// InitializeMemory - Recursive function to apply a Constant value into the
595// specified memory location...
596//
597void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000598 if (isa<UndefValue>(Init)) {
599 return;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000600 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000601 unsigned ElementSize =
Owen Andersona69571c2006-05-03 01:29:57 +0000602 getTargetData()->getTypeSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000603 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
604 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
605 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000606 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000607 GenericValue Val = getConstantValue(Init);
608 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
609 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000610 } else if (isa<ConstantAggregateZero>(Init)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000611 memset(Addr, 0, (size_t)getTargetData()->getTypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000612 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000613 }
614
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000615 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000616 case Type::ArrayTyID: {
617 const ConstantArray *CPA = cast<ConstantArray>(Init);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000618 unsigned ElementSize =
Owen Andersona69571c2006-05-03 01:29:57 +0000619 getTargetData()->getTypeSize(CPA->getType()->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000620 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
621 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000622 return;
623 }
624
625 case Type::StructTyID: {
626 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
627 const StructLayout *SL =
Owen Andersona69571c2006-05-03 01:29:57 +0000628 getTargetData()->getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000629 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattnerb1919e22007-02-10 19:55:17 +0000630 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000631 return;
632 }
633
634 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000635 cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000636 assert(0 && "Unknown constant type to initialize memory with!");
637 }
638}
639
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000640/// EmitGlobals - Emit all of the global variables to memory, storing their
641/// addresses into GlobalAddress. This must make sure to copy the contents of
642/// their initializers into the memory.
643///
644void ExecutionEngine::emitGlobals() {
Owen Andersona69571c2006-05-03 01:29:57 +0000645 const TargetData *TD = getTargetData();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000646
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000647 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +0000648 // to hold them. If there is more than one module, do a prepass over globals
649 // to figure out how the different modules should link together.
650 //
651 std::map<std::pair<std::string, const Type*>,
652 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000653
Chris Lattnerfe854032006-08-16 01:24:12 +0000654 if (Modules.size() != 1) {
655 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
656 Module &M = *Modules[m]->getModule();
657 for (Module::const_global_iterator I = M.global_begin(),
658 E = M.global_end(); I != E; ++I) {
659 const GlobalValue *GV = I;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000660 if (GV->hasInternalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +0000661 GV->hasAppendingLinkage() || !GV->hasName())
662 continue;// Ignore external globals and globals with internal linkage.
663
664 const GlobalValue *&GVEntry =
665 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
666
667 // If this is the first time we've seen this global, it is the canonical
668 // version.
669 if (!GVEntry) {
670 GVEntry = GV;
671 continue;
672 }
673
674 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000675 if (GVEntry->hasExternalLinkage() ||
676 GVEntry->hasDLLImportLinkage() ||
677 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000678 continue;
679
680 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
681 // symbol.
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000682 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000683 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000684 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000685 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000686 }
687
688 std::vector<const GlobalValue*> NonCanonicalGlobals;
689 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
690 Module &M = *Modules[m]->getModule();
691 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
692 I != E; ++I) {
693 // In the multi-module case, see what this global maps to.
694 if (!LinkedGlobalsMap.empty()) {
695 if (const GlobalValue *GVEntry =
696 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
697 // If something else is the canonical global, ignore this one.
698 if (GVEntry != &*I) {
699 NonCanonicalGlobals.push_back(I);
700 continue;
701 }
702 }
703 }
704
Reid Spencer5cbf9852007-01-30 20:08:39 +0000705 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000706 // Get the type of the global.
707 const Type *Ty = I->getType()->getElementType();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000708
Chris Lattnerfe854032006-08-16 01:24:12 +0000709 // Allocate some memory for it!
710 unsigned Size = TD->getTypeSize(Ty);
711 addGlobalMapping(I, new char[Size]);
712 } else {
713 // External variable reference. Try to use the dynamic loader to
714 // get a pointer to it.
715 if (void *SymAddr =
716 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName().c_str()))
717 addGlobalMapping(I, SymAddr);
718 else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000719 cerr << "Could not resolve external global address: "
720 << I->getName() << "\n";
Chris Lattnerfe854032006-08-16 01:24:12 +0000721 abort();
722 }
723 }
724 }
725
726 // If there are multiple modules, map the non-canonical globals to their
727 // canonical location.
728 if (!NonCanonicalGlobals.empty()) {
729 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
730 const GlobalValue *GV = NonCanonicalGlobals[i];
731 const GlobalValue *CGV =
732 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
733 void *Ptr = getPointerToGlobalIfAvailable(CGV);
734 assert(Ptr && "Canonical global wasn't codegen'd!");
735 addGlobalMapping(GV, getPointerToGlobalIfAvailable(CGV));
736 }
737 }
738
Reid Spencera54b7cb2007-01-12 07:05:14 +0000739 // Now that all of the globals are set up in memory, loop through them all
740 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +0000741 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
742 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000743 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000744 if (!LinkedGlobalsMap.empty()) {
745 if (const GlobalValue *GVEntry =
746 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
747 if (GVEntry != &*I) // Not the canonical variable.
748 continue;
749 }
750 EmitGlobalVariable(I);
751 }
752 }
753 }
Chris Lattner24b0a182003-12-20 02:45:37 +0000754}
755
756// EmitGlobalVariable - This method emits the specified global variable to the
757// address specified in GlobalAddresses, or allocates new memory if it's not
758// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000759void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000760 void *GA = getPointerToGlobalIfAvailable(GV);
Bill Wendling480f0932006-11-27 23:54:50 +0000761 DOUT << "Global '" << GV->getName() << "' -> " << GA << "\n";
Chris Lattner23c47242004-02-08 19:33:23 +0000762
Chris Lattnerc07ed132003-12-20 03:36:47 +0000763 const Type *ElTy = GV->getType()->getElementType();
Owen Andersona69571c2006-05-03 01:29:57 +0000764 size_t GVSize = (size_t)getTargetData()->getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000765 if (GA == 0) {
766 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000767 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000768 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000769 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000770
Chris Lattner24b0a182003-12-20 02:45:37 +0000771 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000772 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000773 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000774}