blob: ec37ad7fd64a818c26c41af43475185b54189578 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- Execution.cpp - Implement code to simulate the program ------------===//
2//
3// This file contains the actual instruction interpreter.
4//
5//===----------------------------------------------------------------------===//
6
7#include "Interpreter.h"
8#include "ExecutionAnnotations.h"
Chris Lattnerfe11a972002-12-23 23:59:41 +00009#include "llvm/GlobalVariable.h"
10#include "llvm/Function.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000011#include "llvm/iPHINode.h"
Chris Lattner92101ac2001-08-23 17:05:04 +000012#include "llvm/iOther.h"
13#include "llvm/iTerminators.h"
Chris Lattner86660982001-08-27 05:16:50 +000014#include "llvm/iMemory.h"
Chris Lattnere2cbbce2002-04-29 18:56:45 +000015#include "llvm/DerivedTypes.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000016#include "llvm/Constants.h"
Chris Lattner92101ac2001-08-23 17:05:04 +000017#include "llvm/Assembly/Writer.h"
Chris Lattnerf23eb852001-12-14 16:49:29 +000018#include "Support/CommandLine.h"
Chris Lattnerbbdabce2002-12-08 05:51:08 +000019#include "Support/Statistic.h"
Chris Lattnerbb76f022001-10-30 20:27:31 +000020#include <math.h> // For fmod
Chris Lattner5af0c482001-11-07 04:23:00 +000021#include <signal.h>
22#include <setjmp.h>
Chris Lattner2e42d3a2001-10-15 05:51:48 +000023
Chris Lattnerfe11a972002-12-23 23:59:41 +000024Interpreter *TheEE = 0;
25
Chris Lattnerbbdabce2002-12-08 05:51:08 +000026namespace {
27 Statistic<> NumDynamicInsts("lli", "Number of dynamic instructions executed");
Chris Lattner138b0cd2002-12-08 06:01:34 +000028
29 cl::opt<bool>
Chris Lattnerfe11a972002-12-23 23:59:41 +000030 QuietMode("quiet", cl::desc("Do not emit any non-program output"),
31 cl::init(true));
Chris Lattner138b0cd2002-12-08 06:01:34 +000032
33 cl::alias
34 QuietModeA("q", cl::desc("Alias for -quiet"), cl::aliasopt(QuietMode));
35
36 cl::opt<bool>
37 ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks"));
38
39 cl::opt<bool>
40 AbortOnExceptions("abort-on-exception",
41 cl::desc("Halt execution on a machine exception"));
Chris Lattnerbbdabce2002-12-08 05:51:08 +000042}
43
Chris Lattner2e42d3a2001-10-15 05:51:48 +000044// Create a TargetData structure to handle memory addressing and size/alignment
45// computations
46//
Chris Lattnerea38c0e2001-11-07 19:46:27 +000047CachedWriter CW; // Object to accelerate printing of LLVM
Chris Lattner5af0c482001-11-07 04:23:00 +000048
Chris Lattnere2409062001-11-12 16:19:45 +000049#ifdef PROFILE_STRUCTURE_FIELDS
Chris Lattner5ff62e92002-07-22 02:10:13 +000050static cl::opt<bool>
51ProfileStructureFields("profilestructfields",
52 cl::desc("Profile Structure Field Accesses"));
Chris Lattnere2409062001-11-12 16:19:45 +000053#include <map>
Chris Lattner02868352003-04-22 21:22:33 +000054static std::map<const StructType *, std::vector<unsigned> > FieldAccessCounts;
Chris Lattnere2409062001-11-12 16:19:45 +000055#endif
56
Chris Lattner5af0c482001-11-07 04:23:00 +000057sigjmp_buf SignalRecoverBuffer;
Chris Lattner461f02f2001-11-07 05:31:27 +000058static bool InInstruction = false;
Chris Lattner5af0c482001-11-07 04:23:00 +000059
60extern "C" {
61static void SigHandler(int Signal) {
Chris Lattner461f02f2001-11-07 05:31:27 +000062 if (InInstruction)
63 siglongjmp(SignalRecoverBuffer, Signal);
Chris Lattner5af0c482001-11-07 04:23:00 +000064}
65}
66
67static void initializeSignalHandlers() {
68 struct sigaction Action;
69 Action.sa_handler = SigHandler;
70 Action.sa_flags = SA_SIGINFO;
71 sigemptyset(&Action.sa_mask);
72 sigaction(SIGSEGV, &Action, 0);
73 sigaction(SIGBUS, &Action, 0);
Chris Lattner461f02f2001-11-07 05:31:27 +000074 sigaction(SIGINT, &Action, 0);
Chris Lattnerea38c0e2001-11-07 19:46:27 +000075 sigaction(SIGFPE, &Action, 0);
Chris Lattner5af0c482001-11-07 04:23:00 +000076}
77
Chris Lattner2e42d3a2001-10-15 05:51:48 +000078
79//===----------------------------------------------------------------------===//
Chris Lattner39bb5b42001-10-15 13:25:40 +000080// Value Manipulation code
81//===----------------------------------------------------------------------===//
82
83static unsigned getOperandSlot(Value *V) {
84 SlotNumber *SN = (SlotNumber*)V->getAnnotation(SlotNumberAID);
85 assert(SN && "Operand does not have a slot number annotation!");
86 return SN->SlotNum;
87}
88
Chris Lattnera34c5682002-08-27 22:33:45 +000089// Operations used by constant expr implementations...
90static GenericValue executeCastOperation(Value *Src, const Type *DestTy,
91 ExecutionContext &SF);
Chris Lattnera34c5682002-08-27 22:33:45 +000092static GenericValue executeAddInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +000093 const Type *Ty);
Chris Lattnera34c5682002-08-27 22:33:45 +000094
Chris Lattnerfddc7552002-10-15 20:34:05 +000095
Chris Lattner39bb5b42001-10-15 13:25:40 +000096static GenericValue getOperandValue(Value *V, ExecutionContext &SF) {
Chris Lattnera34c5682002-08-27 22:33:45 +000097 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
98 switch (CE->getOpcode()) {
99 case Instruction::Cast:
100 return executeCastOperation(CE->getOperand(0), CE->getType(), SF);
101 case Instruction::GetElementPtr:
Chris Lattnerfe11a972002-12-23 23:59:41 +0000102 return TheEE->executeGEPOperation(CE->getOperand(0), CE->op_begin()+1,
103 CE->op_end(), SF);
Chris Lattnera34c5682002-08-27 22:33:45 +0000104 case Instruction::Add:
105 return executeAddInst(getOperandValue(CE->getOperand(0), SF),
106 getOperandValue(CE->getOperand(1), SF),
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000107 CE->getType());
Chris Lattnera34c5682002-08-27 22:33:45 +0000108 default:
Chris Lattner02868352003-04-22 21:22:33 +0000109 std::cerr << "Unhandled ConstantExpr: " << CE << "\n";
Chris Lattnera34c5682002-08-27 22:33:45 +0000110 abort();
Chris Lattner04e2ad72003-04-21 22:43:32 +0000111 return GenericValue();
Chris Lattnera34c5682002-08-27 22:33:45 +0000112 }
113 } else if (Constant *CPV = dyn_cast<Constant>(V)) {
Chris Lattnerfe11a972002-12-23 23:59:41 +0000114 return TheEE->getConstantValue(CPV);
Chris Lattner39bb5b42001-10-15 13:25:40 +0000115 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattnerfe11a972002-12-23 23:59:41 +0000116 return PTOGV(TheEE->getPointerToGlobal(GV));
Chris Lattner39bb5b42001-10-15 13:25:40 +0000117 } else {
118 unsigned TyP = V->getType()->getUniqueID(); // TypePlane for value
Chris Lattnerbb76f022001-10-30 20:27:31 +0000119 unsigned OpSlot = getOperandSlot(V);
120 assert(TyP < SF.Values.size() &&
121 OpSlot < SF.Values[TyP].size() && "Value out of range!");
Chris Lattner39bb5b42001-10-15 13:25:40 +0000122 return SF.Values[TyP][getOperandSlot(V)];
123 }
124}
125
126static void printOperandInfo(Value *V, ExecutionContext &SF) {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000127 if (isa<Constant>(V)) {
Chris Lattner02868352003-04-22 21:22:33 +0000128 std::cout << "Constant Pool Value\n";
Chris Lattner39bb5b42001-10-15 13:25:40 +0000129 } else if (isa<GlobalValue>(V)) {
Chris Lattner02868352003-04-22 21:22:33 +0000130 std::cout << "Global Value\n";
Chris Lattner39bb5b42001-10-15 13:25:40 +0000131 } else {
132 unsigned TyP = V->getType()->getUniqueID(); // TypePlane for value
133 unsigned Slot = getOperandSlot(V);
Chris Lattner02868352003-04-22 21:22:33 +0000134 std::cout << "Value=" << (void*)V << " TypeID=" << TyP << " Slot=" << Slot
135 << " Addr=" << &SF.Values[TyP][Slot] << " SF=" << &SF
136 << " Contents=0x";
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000137
138 const unsigned char *Buf = (const unsigned char*)&SF.Values[TyP][Slot];
139 for (unsigned i = 0; i < sizeof(GenericValue); ++i) {
140 unsigned char Cur = Buf[i];
Chris Lattner02868352003-04-22 21:22:33 +0000141 std::cout << ( Cur >= 160?char((Cur>>4)+'A'-10):char((Cur>>4) + '0'))
142 << ((Cur&15) >= 10?char((Cur&15)+'A'-10):char((Cur&15) + '0'));
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000143 }
Chris Lattner02868352003-04-22 21:22:33 +0000144 std::cout << "\n";
Chris Lattner39bb5b42001-10-15 13:25:40 +0000145 }
146}
147
148
149
150static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) {
151 unsigned TyP = V->getType()->getUniqueID(); // TypePlane for value
152
Chris Lattner02868352003-04-22 21:22:33 +0000153 //std::cout << "Setting value: " << &SF.Values[TyP][getOperandSlot(V)]<< "\n";
Chris Lattner39bb5b42001-10-15 13:25:40 +0000154 SF.Values[TyP][getOperandSlot(V)] = Val;
155}
156
157
158//===----------------------------------------------------------------------===//
Chris Lattner2e42d3a2001-10-15 05:51:48 +0000159// Annotation Wrangling code
160//===----------------------------------------------------------------------===//
161
162void Interpreter::initializeExecutionEngine() {
Chris Lattnerfe11a972002-12-23 23:59:41 +0000163 TheEE = this;
Chris Lattner2e42d3a2001-10-15 05:51:48 +0000164 AnnotationManager::registerAnnotationFactory(MethodInfoAID,
165 &MethodInfo::Create);
Chris Lattner5af0c482001-11-07 04:23:00 +0000166 initializeSignalHandlers();
Chris Lattner2e42d3a2001-10-15 05:51:48 +0000167}
168
Chris Lattner2adcd832002-05-03 19:52:30 +0000169//===----------------------------------------------------------------------===//
Chris Lattner92101ac2001-08-23 17:05:04 +0000170// Binary Instruction Implementations
171//===----------------------------------------------------------------------===//
172
173#define IMPLEMENT_BINARY_OPERATOR(OP, TY) \
174 case Type::TY##TyID: Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; break
175
176static GenericValue executeAddInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000177 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000178 GenericValue Dest;
179 switch (Ty->getPrimitiveID()) {
180 IMPLEMENT_BINARY_OPERATOR(+, UByte);
181 IMPLEMENT_BINARY_OPERATOR(+, SByte);
182 IMPLEMENT_BINARY_OPERATOR(+, UShort);
183 IMPLEMENT_BINARY_OPERATOR(+, Short);
184 IMPLEMENT_BINARY_OPERATOR(+, UInt);
185 IMPLEMENT_BINARY_OPERATOR(+, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000186 IMPLEMENT_BINARY_OPERATOR(+, ULong);
187 IMPLEMENT_BINARY_OPERATOR(+, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000188 IMPLEMENT_BINARY_OPERATOR(+, Float);
189 IMPLEMENT_BINARY_OPERATOR(+, Double);
Chris Lattner92101ac2001-08-23 17:05:04 +0000190 default:
Chris Lattner02868352003-04-22 21:22:33 +0000191 std::cout << "Unhandled type for Add instruction: " << *Ty << "\n";
192 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000193 }
194 return Dest;
195}
196
197static GenericValue executeSubInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000198 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000199 GenericValue Dest;
200 switch (Ty->getPrimitiveID()) {
201 IMPLEMENT_BINARY_OPERATOR(-, UByte);
202 IMPLEMENT_BINARY_OPERATOR(-, SByte);
203 IMPLEMENT_BINARY_OPERATOR(-, UShort);
204 IMPLEMENT_BINARY_OPERATOR(-, Short);
205 IMPLEMENT_BINARY_OPERATOR(-, UInt);
206 IMPLEMENT_BINARY_OPERATOR(-, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000207 IMPLEMENT_BINARY_OPERATOR(-, ULong);
208 IMPLEMENT_BINARY_OPERATOR(-, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000209 IMPLEMENT_BINARY_OPERATOR(-, Float);
210 IMPLEMENT_BINARY_OPERATOR(-, Double);
Chris Lattner92101ac2001-08-23 17:05:04 +0000211 default:
Chris Lattner02868352003-04-22 21:22:33 +0000212 std::cout << "Unhandled type for Sub instruction: " << *Ty << "\n";
213 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000214 }
215 return Dest;
216}
217
Chris Lattnerc2593162001-10-27 08:28:11 +0000218static GenericValue executeMulInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000219 const Type *Ty) {
Chris Lattnerc2593162001-10-27 08:28:11 +0000220 GenericValue Dest;
221 switch (Ty->getPrimitiveID()) {
222 IMPLEMENT_BINARY_OPERATOR(*, UByte);
223 IMPLEMENT_BINARY_OPERATOR(*, SByte);
224 IMPLEMENT_BINARY_OPERATOR(*, UShort);
225 IMPLEMENT_BINARY_OPERATOR(*, Short);
226 IMPLEMENT_BINARY_OPERATOR(*, UInt);
227 IMPLEMENT_BINARY_OPERATOR(*, Int);
228 IMPLEMENT_BINARY_OPERATOR(*, ULong);
229 IMPLEMENT_BINARY_OPERATOR(*, Long);
230 IMPLEMENT_BINARY_OPERATOR(*, Float);
231 IMPLEMENT_BINARY_OPERATOR(*, Double);
Chris Lattnerc2593162001-10-27 08:28:11 +0000232 default:
Chris Lattner02868352003-04-22 21:22:33 +0000233 std::cout << "Unhandled type for Mul instruction: " << Ty << "\n";
234 abort();
Chris Lattnerc2593162001-10-27 08:28:11 +0000235 }
236 return Dest;
237}
238
239static GenericValue executeDivInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000240 const Type *Ty) {
Chris Lattnerc2593162001-10-27 08:28:11 +0000241 GenericValue Dest;
242 switch (Ty->getPrimitiveID()) {
243 IMPLEMENT_BINARY_OPERATOR(/, UByte);
244 IMPLEMENT_BINARY_OPERATOR(/, SByte);
245 IMPLEMENT_BINARY_OPERATOR(/, UShort);
246 IMPLEMENT_BINARY_OPERATOR(/, Short);
247 IMPLEMENT_BINARY_OPERATOR(/, UInt);
248 IMPLEMENT_BINARY_OPERATOR(/, Int);
249 IMPLEMENT_BINARY_OPERATOR(/, ULong);
250 IMPLEMENT_BINARY_OPERATOR(/, Long);
251 IMPLEMENT_BINARY_OPERATOR(/, Float);
252 IMPLEMENT_BINARY_OPERATOR(/, Double);
Chris Lattnerc2593162001-10-27 08:28:11 +0000253 default:
Chris Lattner02868352003-04-22 21:22:33 +0000254 std::cout << "Unhandled type for Div instruction: " << *Ty << "\n";
255 abort();
Chris Lattnerbb76f022001-10-30 20:27:31 +0000256 }
257 return Dest;
258}
259
260static GenericValue executeRemInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000261 const Type *Ty) {
Chris Lattnerbb76f022001-10-30 20:27:31 +0000262 GenericValue Dest;
263 switch (Ty->getPrimitiveID()) {
264 IMPLEMENT_BINARY_OPERATOR(%, UByte);
265 IMPLEMENT_BINARY_OPERATOR(%, SByte);
266 IMPLEMENT_BINARY_OPERATOR(%, UShort);
267 IMPLEMENT_BINARY_OPERATOR(%, Short);
268 IMPLEMENT_BINARY_OPERATOR(%, UInt);
269 IMPLEMENT_BINARY_OPERATOR(%, Int);
270 IMPLEMENT_BINARY_OPERATOR(%, ULong);
271 IMPLEMENT_BINARY_OPERATOR(%, Long);
Chris Lattnerbb76f022001-10-30 20:27:31 +0000272 case Type::FloatTyID:
273 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
274 break;
275 case Type::DoubleTyID:
276 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
277 break;
278 default:
Chris Lattner02868352003-04-22 21:22:33 +0000279 std::cout << "Unhandled type for Rem instruction: " << *Ty << "\n";
280 abort();
Chris Lattnerc2593162001-10-27 08:28:11 +0000281 }
282 return Dest;
283}
284
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000285static GenericValue executeAndInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000286 const Type *Ty) {
Chris Lattner4d0e1f92001-10-30 20:54:36 +0000287 GenericValue Dest;
288 switch (Ty->getPrimitiveID()) {
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000289 IMPLEMENT_BINARY_OPERATOR(&, UByte);
290 IMPLEMENT_BINARY_OPERATOR(&, SByte);
291 IMPLEMENT_BINARY_OPERATOR(&, UShort);
292 IMPLEMENT_BINARY_OPERATOR(&, Short);
293 IMPLEMENT_BINARY_OPERATOR(&, UInt);
294 IMPLEMENT_BINARY_OPERATOR(&, Int);
295 IMPLEMENT_BINARY_OPERATOR(&, ULong);
296 IMPLEMENT_BINARY_OPERATOR(&, Long);
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000297 default:
Chris Lattner02868352003-04-22 21:22:33 +0000298 std::cout << "Unhandled type for And instruction: " << *Ty << "\n";
299 abort();
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000300 }
301 return Dest;
302}
303
304
305static GenericValue executeOrInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000306 const Type *Ty) {
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000307 GenericValue Dest;
308 switch (Ty->getPrimitiveID()) {
309 IMPLEMENT_BINARY_OPERATOR(|, UByte);
310 IMPLEMENT_BINARY_OPERATOR(|, SByte);
311 IMPLEMENT_BINARY_OPERATOR(|, UShort);
312 IMPLEMENT_BINARY_OPERATOR(|, Short);
313 IMPLEMENT_BINARY_OPERATOR(|, UInt);
314 IMPLEMENT_BINARY_OPERATOR(|, Int);
315 IMPLEMENT_BINARY_OPERATOR(|, ULong);
316 IMPLEMENT_BINARY_OPERATOR(|, Long);
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000317 default:
Chris Lattner02868352003-04-22 21:22:33 +0000318 std::cout << "Unhandled type for Or instruction: " << *Ty << "\n";
319 abort();
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000320 }
321 return Dest;
322}
323
324
325static GenericValue executeXorInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000326 const Type *Ty) {
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000327 GenericValue Dest;
328 switch (Ty->getPrimitiveID()) {
Chris Lattner4d0e1f92001-10-30 20:54:36 +0000329 IMPLEMENT_BINARY_OPERATOR(^, UByte);
330 IMPLEMENT_BINARY_OPERATOR(^, SByte);
331 IMPLEMENT_BINARY_OPERATOR(^, UShort);
332 IMPLEMENT_BINARY_OPERATOR(^, Short);
333 IMPLEMENT_BINARY_OPERATOR(^, UInt);
334 IMPLEMENT_BINARY_OPERATOR(^, Int);
335 IMPLEMENT_BINARY_OPERATOR(^, ULong);
336 IMPLEMENT_BINARY_OPERATOR(^, Long);
Chris Lattner4d0e1f92001-10-30 20:54:36 +0000337 default:
Chris Lattner02868352003-04-22 21:22:33 +0000338 std::cout << "Unhandled type for Xor instruction: " << *Ty << "\n";
339 abort();
Chris Lattner4d0e1f92001-10-30 20:54:36 +0000340 }
341 return Dest;
342}
343
344
Chris Lattner92101ac2001-08-23 17:05:04 +0000345#define IMPLEMENT_SETCC(OP, TY) \
346 case Type::TY##TyID: Dest.BoolVal = Src1.TY##Val OP Src2.TY##Val; break
347
Chris Lattner92101ac2001-08-23 17:05:04 +0000348static GenericValue executeSetEQInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000349 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000350 GenericValue Dest;
351 switch (Ty->getPrimitiveID()) {
352 IMPLEMENT_SETCC(==, UByte);
353 IMPLEMENT_SETCC(==, SByte);
354 IMPLEMENT_SETCC(==, UShort);
355 IMPLEMENT_SETCC(==, Short);
356 IMPLEMENT_SETCC(==, UInt);
357 IMPLEMENT_SETCC(==, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000358 IMPLEMENT_SETCC(==, ULong);
359 IMPLEMENT_SETCC(==, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000360 IMPLEMENT_SETCC(==, Float);
361 IMPLEMENT_SETCC(==, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000362 IMPLEMENT_SETCC(==, Pointer);
Chris Lattner92101ac2001-08-23 17:05:04 +0000363 default:
Chris Lattner02868352003-04-22 21:22:33 +0000364 std::cout << "Unhandled type for SetEQ instruction: " << *Ty << "\n";
365 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000366 }
367 return Dest;
368}
369
370static GenericValue executeSetNEInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000371 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000372 GenericValue Dest;
373 switch (Ty->getPrimitiveID()) {
374 IMPLEMENT_SETCC(!=, UByte);
375 IMPLEMENT_SETCC(!=, SByte);
376 IMPLEMENT_SETCC(!=, UShort);
377 IMPLEMENT_SETCC(!=, Short);
378 IMPLEMENT_SETCC(!=, UInt);
379 IMPLEMENT_SETCC(!=, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000380 IMPLEMENT_SETCC(!=, ULong);
381 IMPLEMENT_SETCC(!=, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000382 IMPLEMENT_SETCC(!=, Float);
383 IMPLEMENT_SETCC(!=, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000384 IMPLEMENT_SETCC(!=, Pointer);
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000385
Chris Lattner92101ac2001-08-23 17:05:04 +0000386 default:
Chris Lattner02868352003-04-22 21:22:33 +0000387 std::cout << "Unhandled type for SetNE instruction: " << *Ty << "\n";
388 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000389 }
390 return Dest;
391}
392
393static GenericValue executeSetLEInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000394 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000395 GenericValue Dest;
396 switch (Ty->getPrimitiveID()) {
397 IMPLEMENT_SETCC(<=, UByte);
398 IMPLEMENT_SETCC(<=, SByte);
399 IMPLEMENT_SETCC(<=, UShort);
400 IMPLEMENT_SETCC(<=, Short);
401 IMPLEMENT_SETCC(<=, UInt);
402 IMPLEMENT_SETCC(<=, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000403 IMPLEMENT_SETCC(<=, ULong);
404 IMPLEMENT_SETCC(<=, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000405 IMPLEMENT_SETCC(<=, Float);
406 IMPLEMENT_SETCC(<=, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000407 IMPLEMENT_SETCC(<=, Pointer);
Chris Lattner92101ac2001-08-23 17:05:04 +0000408 default:
Chris Lattner02868352003-04-22 21:22:33 +0000409 std::cout << "Unhandled type for SetLE instruction: " << Ty << "\n";
410 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000411 }
412 return Dest;
413}
414
415static GenericValue executeSetGEInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000416 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000417 GenericValue Dest;
418 switch (Ty->getPrimitiveID()) {
419 IMPLEMENT_SETCC(>=, UByte);
420 IMPLEMENT_SETCC(>=, SByte);
421 IMPLEMENT_SETCC(>=, UShort);
422 IMPLEMENT_SETCC(>=, Short);
423 IMPLEMENT_SETCC(>=, UInt);
424 IMPLEMENT_SETCC(>=, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000425 IMPLEMENT_SETCC(>=, ULong);
426 IMPLEMENT_SETCC(>=, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000427 IMPLEMENT_SETCC(>=, Float);
428 IMPLEMENT_SETCC(>=, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000429 IMPLEMENT_SETCC(>=, Pointer);
Chris Lattner92101ac2001-08-23 17:05:04 +0000430 default:
Chris Lattner02868352003-04-22 21:22:33 +0000431 std::cout << "Unhandled type for SetGE instruction: " << *Ty << "\n";
432 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000433 }
434 return Dest;
435}
436
437static GenericValue executeSetLTInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000438 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000439 GenericValue Dest;
440 switch (Ty->getPrimitiveID()) {
441 IMPLEMENT_SETCC(<, UByte);
442 IMPLEMENT_SETCC(<, SByte);
443 IMPLEMENT_SETCC(<, UShort);
444 IMPLEMENT_SETCC(<, Short);
445 IMPLEMENT_SETCC(<, UInt);
446 IMPLEMENT_SETCC(<, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000447 IMPLEMENT_SETCC(<, ULong);
448 IMPLEMENT_SETCC(<, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000449 IMPLEMENT_SETCC(<, Float);
450 IMPLEMENT_SETCC(<, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000451 IMPLEMENT_SETCC(<, Pointer);
Chris Lattner92101ac2001-08-23 17:05:04 +0000452 default:
Chris Lattner02868352003-04-22 21:22:33 +0000453 std::cout << "Unhandled type for SetLT instruction: " << *Ty << "\n";
454 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000455 }
456 return Dest;
457}
458
459static GenericValue executeSetGTInst(GenericValue Src1, GenericValue Src2,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000460 const Type *Ty) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000461 GenericValue Dest;
462 switch (Ty->getPrimitiveID()) {
463 IMPLEMENT_SETCC(>, UByte);
464 IMPLEMENT_SETCC(>, SByte);
465 IMPLEMENT_SETCC(>, UShort);
466 IMPLEMENT_SETCC(>, Short);
467 IMPLEMENT_SETCC(>, UInt);
468 IMPLEMENT_SETCC(>, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000469 IMPLEMENT_SETCC(>, ULong);
470 IMPLEMENT_SETCC(>, Long);
Chris Lattner92101ac2001-08-23 17:05:04 +0000471 IMPLEMENT_SETCC(>, Float);
472 IMPLEMENT_SETCC(>, Double);
Chris Lattner86660982001-08-27 05:16:50 +0000473 IMPLEMENT_SETCC(>, Pointer);
Chris Lattner92101ac2001-08-23 17:05:04 +0000474 default:
Chris Lattner02868352003-04-22 21:22:33 +0000475 std::cout << "Unhandled type for SetGT instruction: " << *Ty << "\n";
476 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000477 }
478 return Dest;
479}
480
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000481static void executeBinaryInst(BinaryOperator &I, ExecutionContext &SF) {
482 const Type *Ty = I.getOperand(0)->getType();
483 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
484 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
Chris Lattner92101ac2001-08-23 17:05:04 +0000485 GenericValue R; // Result
486
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000487 switch (I.getOpcode()) {
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000488 case Instruction::Add: R = executeAddInst (Src1, Src2, Ty); break;
489 case Instruction::Sub: R = executeSubInst (Src1, Src2, Ty); break;
490 case Instruction::Mul: R = executeMulInst (Src1, Src2, Ty); break;
491 case Instruction::Div: R = executeDivInst (Src1, Src2, Ty); break;
492 case Instruction::Rem: R = executeRemInst (Src1, Src2, Ty); break;
493 case Instruction::And: R = executeAndInst (Src1, Src2, Ty); break;
494 case Instruction::Or: R = executeOrInst (Src1, Src2, Ty); break;
495 case Instruction::Xor: R = executeXorInst (Src1, Src2, Ty); break;
496 case Instruction::SetEQ: R = executeSetEQInst(Src1, Src2, Ty); break;
497 case Instruction::SetNE: R = executeSetNEInst(Src1, Src2, Ty); break;
498 case Instruction::SetLE: R = executeSetLEInst(Src1, Src2, Ty); break;
499 case Instruction::SetGE: R = executeSetGEInst(Src1, Src2, Ty); break;
500 case Instruction::SetLT: R = executeSetLTInst(Src1, Src2, Ty); break;
501 case Instruction::SetGT: R = executeSetGTInst(Src1, Src2, Ty); break;
Chris Lattner92101ac2001-08-23 17:05:04 +0000502 default:
Chris Lattner02868352003-04-22 21:22:33 +0000503 std::cout << "Don't know how to handle this binary operator!\n-->" << I;
504 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000505 }
506
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000507 SetValue(&I, R, SF);
Chris Lattner92101ac2001-08-23 17:05:04 +0000508}
509
Chris Lattner92101ac2001-08-23 17:05:04 +0000510//===----------------------------------------------------------------------===//
511// Terminator Instruction Implementations
512//===----------------------------------------------------------------------===//
513
Chris Lattnera95c6992001-11-12 16:28:48 +0000514static void PerformExitStuff() {
515#ifdef PROFILE_STRUCTURE_FIELDS
516 // Print out structure field accounting information...
517 if (!FieldAccessCounts.empty()) {
Chris Lattner84efe092001-11-12 20:13:14 +0000518 CW << "Profile Field Access Counts:\n";
Chris Lattner02868352003-04-22 21:22:33 +0000519 std::map<const StructType *, std::vector<unsigned> >::iterator
Chris Lattnera95c6992001-11-12 16:28:48 +0000520 I = FieldAccessCounts.begin(), E = FieldAccessCounts.end();
521 for (; I != E; ++I) {
Chris Lattner02868352003-04-22 21:22:33 +0000522 std::vector<unsigned> &OfC = I->second;
Chris Lattnera95c6992001-11-12 16:28:48 +0000523 CW << " '" << (Value*)I->first << "'\t- Sum=";
524
525 unsigned Sum = 0;
526 for (unsigned i = 0; i < OfC.size(); ++i)
527 Sum += OfC[i];
528 CW << Sum << " - ";
529
530 for (unsigned i = 0; i < OfC.size(); ++i) {
531 if (i) CW << ", ";
532 CW << OfC[i];
533 }
Chris Lattner697954c2002-01-20 22:54:45 +0000534 CW << "\n";
Chris Lattnera95c6992001-11-12 16:28:48 +0000535 }
Chris Lattner697954c2002-01-20 22:54:45 +0000536 CW << "\n";
Chris Lattner84efe092001-11-12 20:13:14 +0000537
538 CW << "Profile Field Access Percentages:\n";
Chris Lattner02868352003-04-22 21:22:33 +0000539 std::cout.precision(3);
Chris Lattner84efe092001-11-12 20:13:14 +0000540 for (I = FieldAccessCounts.begin(); I != E; ++I) {
Chris Lattner02868352003-04-22 21:22:33 +0000541 std::vector<unsigned> &OfC = I->second;
Chris Lattner84efe092001-11-12 20:13:14 +0000542 unsigned Sum = 0;
543 for (unsigned i = 0; i < OfC.size(); ++i)
544 Sum += OfC[i];
545
546 CW << " '" << (Value*)I->first << "'\t- ";
547 for (unsigned i = 0; i < OfC.size(); ++i) {
548 if (i) CW << ", ";
549 CW << double(OfC[i])/Sum;
550 }
Chris Lattner697954c2002-01-20 22:54:45 +0000551 CW << "\n";
Chris Lattner84efe092001-11-12 20:13:14 +0000552 }
Chris Lattner697954c2002-01-20 22:54:45 +0000553 CW << "\n";
Chris Lattner84efe092001-11-12 20:13:14 +0000554
Chris Lattnera95c6992001-11-12 16:28:48 +0000555 FieldAccessCounts.clear();
556 }
557#endif
558}
559
Chris Lattnere43db882001-10-27 04:15:57 +0000560void Interpreter::exitCalled(GenericValue GV) {
Chris Lattnerf23eb852001-12-14 16:49:29 +0000561 if (!QuietMode) {
Chris Lattner02868352003-04-22 21:22:33 +0000562 std::cout << "Program returned ";
Chris Lattnerf23eb852001-12-14 16:49:29 +0000563 print(Type::IntTy, GV);
Chris Lattner02868352003-04-22 21:22:33 +0000564 std::cout << " via 'void exit(int)'\n";
Chris Lattnerf23eb852001-12-14 16:49:29 +0000565 }
Chris Lattnere43db882001-10-27 04:15:57 +0000566
567 ExitCode = GV.SByteVal;
568 ECStack.clear();
Chris Lattnera95c6992001-11-12 16:28:48 +0000569 PerformExitStuff();
Chris Lattnere43db882001-10-27 04:15:57 +0000570}
571
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000572void Interpreter::executeRetInst(ReturnInst &I, ExecutionContext &SF) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000573 const Type *RetTy = 0;
574 GenericValue Result;
575
576 // Save away the return value... (if we are not 'ret void')
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000577 if (I.getNumOperands()) {
578 RetTy = I.getReturnValue()->getType();
579 Result = getOperandValue(I.getReturnValue(), SF);
Chris Lattner92101ac2001-08-23 17:05:04 +0000580 }
581
582 // Save previously executing meth
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000583 const Function *M = ECStack.back().CurMethod;
Chris Lattner92101ac2001-08-23 17:05:04 +0000584
585 // Pop the current stack frame... this invalidates SF
586 ECStack.pop_back();
587
588 if (ECStack.empty()) { // Finished main. Put result into exit code...
589 if (RetTy) { // Nonvoid return type?
Chris Lattnerf23eb852001-12-14 16:49:29 +0000590 if (!QuietMode) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000591 CW << "Function " << M->getType() << " \"" << M->getName()
Chris Lattnerf23eb852001-12-14 16:49:29 +0000592 << "\" returned ";
593 print(RetTy, Result);
Chris Lattner02868352003-04-22 21:22:33 +0000594 std::cout << "\n";
Chris Lattnerf23eb852001-12-14 16:49:29 +0000595 }
Chris Lattner92101ac2001-08-23 17:05:04 +0000596
597 if (RetTy->isIntegral())
Chris Lattnerf4dca802002-05-02 19:28:45 +0000598 ExitCode = Result.IntVal; // Capture the exit code of the program
Chris Lattner92101ac2001-08-23 17:05:04 +0000599 } else {
600 ExitCode = 0;
601 }
Chris Lattnere2409062001-11-12 16:19:45 +0000602
Chris Lattnera95c6992001-11-12 16:28:48 +0000603 PerformExitStuff();
Chris Lattner92101ac2001-08-23 17:05:04 +0000604 return;
605 }
606
607 // If we have a previous stack frame, and we have a previous call, fill in
608 // the return value...
609 //
610 ExecutionContext &NewSF = ECStack.back();
611 if (NewSF.Caller) {
612 if (NewSF.Caller->getType() != Type::VoidTy) // Save result...
613 SetValue(NewSF.Caller, Result, NewSF);
614
615 NewSF.Caller = 0; // We returned from the call...
Chris Lattnerf23eb852001-12-14 16:49:29 +0000616 } else if (!QuietMode) {
Chris Lattner365a76e2001-09-10 04:49:44 +0000617 // This must be a function that is executing because of a user 'call'
618 // instruction.
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000619 CW << "Function " << M->getType() << " \"" << M->getName()
Chris Lattner5af0c482001-11-07 04:23:00 +0000620 << "\" returned ";
Chris Lattner2e42d3a2001-10-15 05:51:48 +0000621 print(RetTy, Result);
Chris Lattner02868352003-04-22 21:22:33 +0000622 std::cout << "\n";
Chris Lattner92101ac2001-08-23 17:05:04 +0000623 }
624}
625
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000626void Interpreter::executeBrInst(BranchInst &I, ExecutionContext &SF) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000627 SF.PrevBB = SF.CurBB; // Update PrevBB so that PHI nodes work...
628 BasicBlock *Dest;
629
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000630 Dest = I.getSuccessor(0); // Uncond branches have a fixed dest...
631 if (!I.isUnconditional()) {
632 Value *Cond = I.getCondition();
Chris Lattnerbb76f022001-10-30 20:27:31 +0000633 GenericValue CondVal = getOperandValue(Cond, SF);
634 if (CondVal.BoolVal == 0) // If false cond...
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000635 Dest = I.getSuccessor(1);
Chris Lattner92101ac2001-08-23 17:05:04 +0000636 }
637 SF.CurBB = Dest; // Update CurBB to branch destination
638 SF.CurInst = SF.CurBB->begin(); // Update new instruction ptr...
639}
640
Chris Lattner09e93922003-04-22 20:34:47 +0000641static void executeSwitch(SwitchInst &I, ExecutionContext &SF) {
642 GenericValue CondVal = getOperandValue(I.getOperand(0), SF);
643 const Type *ElTy = I.getOperand(0)->getType();
644 SF.PrevBB = SF.CurBB; // Update PrevBB so that PHI nodes work...
645 BasicBlock *Dest = 0;
646
647 // Check to see if any of the cases match...
648 for (unsigned i = 2, e = I.getNumOperands(); i != e; i += 2) {
649 if (executeSetEQInst(CondVal,
Chris Lattnerb945e4d2003-04-22 20:37:39 +0000650 getOperandValue(I.getOperand(i), SF), ElTy).BoolVal) {
Chris Lattner09e93922003-04-22 20:34:47 +0000651 Dest = cast<BasicBlock>(I.getOperand(i+1));
652 break;
653 }
654 }
655
656 if (!Dest) Dest = I.getDefaultDest(); // No cases matched: use default
657 SF.CurBB = Dest; // Update CurBB to branch destination
658 SF.CurInst = SF.CurBB->begin(); // Update new instruction ptr...
659}
660
661
Chris Lattner92101ac2001-08-23 17:05:04 +0000662//===----------------------------------------------------------------------===//
Chris Lattner86660982001-08-27 05:16:50 +0000663// Memory Instruction Implementations
664//===----------------------------------------------------------------------===//
665
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000666void Interpreter::executeAllocInst(AllocationInst &I, ExecutionContext &SF) {
667 const Type *Ty = I.getType()->getElementType(); // Type to be allocated
Chris Lattner86660982001-08-27 05:16:50 +0000668
Chris Lattnercc82cc12002-04-28 21:57:33 +0000669 // Get the number of elements being allocated by the array...
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000670 unsigned NumElements = getOperandValue(I.getOperand(0), SF).UIntVal;
Chris Lattner86660982001-08-27 05:16:50 +0000671
672 // Allocate enough memory to hold the type...
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000673 // FIXME: Don't use CALLOC, use a tainted malloc.
Chris Lattner9bffa732002-02-19 18:50:09 +0000674 void *Memory = calloc(NumElements, TD.getTypeSize(Ty));
675
Chris Lattnerfe11a972002-12-23 23:59:41 +0000676 GenericValue Result = PTOGV(Memory);
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000677 assert(Result.PointerVal != 0 && "Null pointer returned by malloc!");
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000678 SetValue(&I, Result, SF);
Chris Lattner86660982001-08-27 05:16:50 +0000679
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000680 if (I.getOpcode() == Instruction::Alloca)
Chris Lattner9bffa732002-02-19 18:50:09 +0000681 ECStack.back().Allocas.add(Memory);
Chris Lattner86660982001-08-27 05:16:50 +0000682}
683
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000684static void executeFreeInst(FreeInst &I, ExecutionContext &SF) {
685 assert(isa<PointerType>(I.getOperand(0)->getType()) && "Freeing nonptr?");
686 GenericValue Value = getOperandValue(I.getOperand(0), SF);
Chris Lattner86660982001-08-27 05:16:50 +0000687 // TODO: Check to make sure memory is allocated
Chris Lattnerfe11a972002-12-23 23:59:41 +0000688 free(GVTOP(Value)); // Free memory
Chris Lattner86660982001-08-27 05:16:50 +0000689}
690
Chris Lattner95c3af52001-10-29 19:32:19 +0000691
Chris Lattnera34c5682002-08-27 22:33:45 +0000692// getElementOffset - The workhorse for getelementptr.
Chris Lattner95c3af52001-10-29 19:32:19 +0000693//
Chris Lattnerfe11a972002-12-23 23:59:41 +0000694GenericValue Interpreter::executeGEPOperation(Value *Ptr, User::op_iterator I,
695 User::op_iterator E,
696 ExecutionContext &SF) {
Chris Lattnera34c5682002-08-27 22:33:45 +0000697 assert(isa<PointerType>(Ptr->getType()) &&
Chris Lattner95c3af52001-10-29 19:32:19 +0000698 "Cannot getElementOffset of a nonpointer type!");
699
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000700 PointerTy Total = 0;
Chris Lattnera34c5682002-08-27 22:33:45 +0000701 const Type *Ty = Ptr->getType();
702
703 for (; I != E; ++I) {
Chris Lattner782b9392001-11-26 18:18:18 +0000704 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
705 const StructLayout *SLO = TD.getStructLayout(STy);
706
707 // Indicies must be ubyte constants...
Chris Lattnera34c5682002-08-27 22:33:45 +0000708 const ConstantUInt *CPU = cast<ConstantUInt>(*I);
Chris Lattner782b9392001-11-26 18:18:18 +0000709 assert(CPU->getType() == Type::UByteTy);
710 unsigned Index = CPU->getValue();
711
Chris Lattnere2409062001-11-12 16:19:45 +0000712#ifdef PROFILE_STRUCTURE_FIELDS
Chris Lattner782b9392001-11-26 18:18:18 +0000713 if (ProfileStructureFields) {
714 // Do accounting for this field...
Chris Lattner02868352003-04-22 21:22:33 +0000715 std::vector<unsigned> &OfC = FieldAccessCounts[STy];
Chris Lattner782b9392001-11-26 18:18:18 +0000716 if (OfC.size() == 0) OfC.resize(STy->getElementTypes().size());
717 OfC[Index]++;
718 }
Chris Lattnere2409062001-11-12 16:19:45 +0000719#endif
Chris Lattner782b9392001-11-26 18:18:18 +0000720
721 Total += SLO->MemberOffsets[Index];
722 Ty = STy->getElementTypes()[Index];
Chris Lattnerf23eb852001-12-14 16:49:29 +0000723 } else if (const SequentialType *ST = cast<SequentialType>(Ty)) {
Chris Lattnere2409062001-11-12 16:19:45 +0000724
Chris Lattner006a4a52003-02-25 21:14:59 +0000725 // Get the index number for the array... which must be long type...
Chris Lattner0374b8d2002-09-11 01:21:35 +0000726 assert((*I)->getType() == Type::LongTy);
Chris Lattnere8b3e9b2002-09-13 23:30:42 +0000727 unsigned Idx = getOperandValue(*I, SF).LongVal;
Chris Lattnerf23eb852001-12-14 16:49:29 +0000728 if (const ArrayType *AT = dyn_cast<ArrayType>(ST))
Chris Lattnerc0fbd572002-02-11 20:19:16 +0000729 if (Idx >= AT->getNumElements() && ArrayChecksEnabled) {
Chris Lattner02868352003-04-22 21:22:33 +0000730 std::cerr << "Out of range memory access to element #" << Idx
731 << " of a " << AT->getNumElements() << " element array."
732 << " Subscript #" << *I << "\n";
Chris Lattnerf23eb852001-12-14 16:49:29 +0000733 // Get outta here!!!
Chris Lattner74030252002-02-12 15:47:23 +0000734 siglongjmp(SignalRecoverBuffer, SIGTRAP);
Chris Lattnerf23eb852001-12-14 16:49:29 +0000735 }
Chris Lattner782b9392001-11-26 18:18:18 +0000736
Chris Lattnerf23eb852001-12-14 16:49:29 +0000737 Ty = ST->getElementType();
Chris Lattner782b9392001-11-26 18:18:18 +0000738 unsigned Size = TD.getTypeSize(Ty);
739 Total += Size*Idx;
740 }
Chris Lattner95c3af52001-10-29 19:32:19 +0000741 }
742
Chris Lattnera34c5682002-08-27 22:33:45 +0000743 GenericValue Result;
744 Result.PointerVal = getOperandValue(Ptr, SF).PointerVal + Total;
745 return Result;
Chris Lattner95c3af52001-10-29 19:32:19 +0000746}
747
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000748static void executeGEPInst(GetElementPtrInst &I, ExecutionContext &SF) {
Chris Lattnerfe11a972002-12-23 23:59:41 +0000749 SetValue(&I, TheEE->executeGEPOperation(I.getPointerOperand(),
Chris Lattnera34c5682002-08-27 22:33:45 +0000750 I.idx_begin(), I.idx_end(), SF), SF);
Chris Lattner95c3af52001-10-29 19:32:19 +0000751}
752
Chris Lattnerfe11a972002-12-23 23:59:41 +0000753void Interpreter::executeLoadInst(LoadInst &I, ExecutionContext &SF) {
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000754 GenericValue SRC = getOperandValue(I.getPointerOperand(), SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000755 GenericValue *Ptr = (GenericValue*)GVTOP(SRC);
Chris Lattner86660982001-08-27 05:16:50 +0000756 GenericValue Result;
757
Chris Lattnerfddc7552002-10-15 20:34:05 +0000758 if (TD.isLittleEndian()) {
759 switch (I.getType()->getPrimitiveID()) {
760 case Type::BoolTyID:
761 case Type::UByteTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000762 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
Chris Lattnerfddc7552002-10-15 20:34:05 +0000763 case Type::UShortTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000764 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[0] |
765 ((unsigned)Ptr->Untyped[1] << 8);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000766 break;
767 case Type::FloatTyID:
768 case Type::UIntTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000769 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
770 ((unsigned)Ptr->Untyped[1] << 8) |
771 ((unsigned)Ptr->Untyped[2] << 16) |
772 ((unsigned)Ptr->Untyped[3] << 24);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000773 break;
774 case Type::DoubleTyID:
775 case Type::ULongTyID:
776 case Type::LongTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000777 case Type::PointerTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
778 ((uint64_t)Ptr->Untyped[1] << 8) |
779 ((uint64_t)Ptr->Untyped[2] << 16) |
780 ((uint64_t)Ptr->Untyped[3] << 24) |
781 ((uint64_t)Ptr->Untyped[4] << 32) |
782 ((uint64_t)Ptr->Untyped[5] << 40) |
783 ((uint64_t)Ptr->Untyped[6] << 48) |
784 ((uint64_t)Ptr->Untyped[7] << 56);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000785 break;
786 default:
Chris Lattner02868352003-04-22 21:22:33 +0000787 std::cout << "Cannot load value of type " << *I.getType() << "!\n";
788 abort();
Chris Lattnerfddc7552002-10-15 20:34:05 +0000789 }
790 } else {
791 switch (I.getType()->getPrimitiveID()) {
792 case Type::BoolTyID:
793 case Type::UByteTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000794 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
Chris Lattnerfddc7552002-10-15 20:34:05 +0000795 case Type::UShortTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000796 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
797 ((unsigned)Ptr->Untyped[0] << 8);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000798 break;
799 case Type::FloatTyID:
800 case Type::UIntTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000801 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
802 ((unsigned)Ptr->Untyped[2] << 8) |
803 ((unsigned)Ptr->Untyped[1] << 16) |
804 ((unsigned)Ptr->Untyped[0] << 24);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000805 break;
806 case Type::DoubleTyID:
807 case Type::ULongTyID:
808 case Type::LongTyID:
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000809 case Type::PointerTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
810 ((uint64_t)Ptr->Untyped[6] << 8) |
811 ((uint64_t)Ptr->Untyped[5] << 16) |
812 ((uint64_t)Ptr->Untyped[4] << 24) |
813 ((uint64_t)Ptr->Untyped[3] << 32) |
814 ((uint64_t)Ptr->Untyped[2] << 40) |
815 ((uint64_t)Ptr->Untyped[1] << 48) |
816 ((uint64_t)Ptr->Untyped[0] << 56);
Chris Lattnerfddc7552002-10-15 20:34:05 +0000817 break;
818 default:
Chris Lattner02868352003-04-22 21:22:33 +0000819 std::cout << "Cannot load value of type " << *I.getType() << "!\n";
820 abort();
Chris Lattnerfddc7552002-10-15 20:34:05 +0000821 }
Chris Lattner86660982001-08-27 05:16:50 +0000822 }
823
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000824 SetValue(&I, Result, SF);
Chris Lattner86660982001-08-27 05:16:50 +0000825}
826
Chris Lattnerfe11a972002-12-23 23:59:41 +0000827void Interpreter::executeStoreInst(StoreInst &I, ExecutionContext &SF) {
Chris Lattnerfddc7552002-10-15 20:34:05 +0000828 GenericValue Val = getOperandValue(I.getOperand(0), SF);
829 GenericValue SRC = getOperandValue(I.getPointerOperand(), SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000830 StoreValueToMemory(Val, (GenericValue *)GVTOP(SRC),
Chris Lattner683d5da92002-10-26 01:57:15 +0000831 I.getOperand(0)->getType());
Chris Lattnerfddc7552002-10-15 20:34:05 +0000832}
833
Chris Lattner86660982001-08-27 05:16:50 +0000834
Chris Lattnerab2dea52002-11-07 19:29:31 +0000835
Chris Lattner86660982001-08-27 05:16:50 +0000836//===----------------------------------------------------------------------===//
Chris Lattner92101ac2001-08-23 17:05:04 +0000837// Miscellaneous Instruction Implementations
838//===----------------------------------------------------------------------===//
839
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000840void Interpreter::executeCallInst(CallInst &I, ExecutionContext &SF) {
841 ECStack.back().Caller = &I;
Chris Lattner02868352003-04-22 21:22:33 +0000842 std::vector<GenericValue> ArgVals;
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000843 ArgVals.reserve(I.getNumOperands()-1);
Chris Lattner93780132003-01-13 00:58:52 +0000844 for (unsigned i = 1; i < I.getNumOperands(); ++i) {
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000845 ArgVals.push_back(getOperandValue(I.getOperand(i), SF));
Chris Lattner93780132003-01-13 00:58:52 +0000846 // Promote all integral types whose size is < sizeof(int) into ints. We do
847 // this by zero or sign extending the value as appropriate according to the
848 // source type.
849 if (I.getOperand(i)->getType()->isIntegral() &&
850 I.getOperand(i)->getType()->getPrimitiveSize() < 4) {
851 const Type *Ty = I.getOperand(i)->getType();
852 if (Ty == Type::ShortTy)
853 ArgVals.back().IntVal = ArgVals.back().ShortVal;
854 else if (Ty == Type::UShortTy)
855 ArgVals.back().UIntVal = ArgVals.back().UShortVal;
856 else if (Ty == Type::SByteTy)
857 ArgVals.back().IntVal = ArgVals.back().SByteVal;
858 else if (Ty == Type::UByteTy)
859 ArgVals.back().UIntVal = ArgVals.back().UByteVal;
860 else if (Ty == Type::BoolTy)
861 ArgVals.back().UIntVal = ArgVals.back().BoolVal;
862 else
863 assert(0 && "Unknown type!");
864 }
865 }
Chris Lattner365a76e2001-09-10 04:49:44 +0000866
Chris Lattner070cf5e2001-11-07 20:12:30 +0000867 // To handle indirect calls, we must get the pointer value from the argument
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000868 // and treat it as a function pointer.
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000869 GenericValue SRC = getOperandValue(I.getCalledValue(), SF);
Chris Lattner070cf5e2001-11-07 20:12:30 +0000870
Chris Lattnerfe11a972002-12-23 23:59:41 +0000871 callMethod((Function*)GVTOP(SRC), ArgVals);
Chris Lattner92101ac2001-08-23 17:05:04 +0000872}
873
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000874static void executePHINode(PHINode &I, ExecutionContext &SF) {
Chris Lattner92101ac2001-08-23 17:05:04 +0000875 BasicBlock *PrevBB = SF.PrevBB;
876 Value *IncomingValue = 0;
877
878 // Search for the value corresponding to this previous bb...
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000879 for (unsigned i = I.getNumIncomingValues(); i > 0;) {
880 if (I.getIncomingBlock(--i) == PrevBB) {
881 IncomingValue = I.getIncomingValue(i);
Chris Lattner92101ac2001-08-23 17:05:04 +0000882 break;
883 }
884 }
885 assert(IncomingValue && "No PHI node predecessor for current PrevBB!");
886
887 // Found the value, set as the result...
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000888 SetValue(&I, getOperandValue(IncomingValue, SF), SF);
Chris Lattner92101ac2001-08-23 17:05:04 +0000889}
890
Chris Lattner86660982001-08-27 05:16:50 +0000891#define IMPLEMENT_SHIFT(OP, TY) \
892 case Type::TY##TyID: Dest.TY##Val = Src1.TY##Val OP Src2.UByteVal; break
893
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000894static void executeShlInst(ShiftInst &I, ExecutionContext &SF) {
895 const Type *Ty = I.getOperand(0)->getType();
896 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
897 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
Chris Lattner86660982001-08-27 05:16:50 +0000898 GenericValue Dest;
899
900 switch (Ty->getPrimitiveID()) {
901 IMPLEMENT_SHIFT(<<, UByte);
902 IMPLEMENT_SHIFT(<<, SByte);
903 IMPLEMENT_SHIFT(<<, UShort);
904 IMPLEMENT_SHIFT(<<, Short);
905 IMPLEMENT_SHIFT(<<, UInt);
906 IMPLEMENT_SHIFT(<<, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000907 IMPLEMENT_SHIFT(<<, ULong);
908 IMPLEMENT_SHIFT(<<, Long);
Chris Lattner86660982001-08-27 05:16:50 +0000909 default:
Chris Lattner02868352003-04-22 21:22:33 +0000910 std::cout << "Unhandled type for Shl instruction: " << *Ty << "\n";
Chris Lattner86660982001-08-27 05:16:50 +0000911 }
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000912 SetValue(&I, Dest, SF);
Chris Lattner86660982001-08-27 05:16:50 +0000913}
914
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000915static void executeShrInst(ShiftInst &I, ExecutionContext &SF) {
916 const Type *Ty = I.getOperand(0)->getType();
917 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
918 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
Chris Lattner86660982001-08-27 05:16:50 +0000919 GenericValue Dest;
920
921 switch (Ty->getPrimitiveID()) {
922 IMPLEMENT_SHIFT(>>, UByte);
923 IMPLEMENT_SHIFT(>>, SByte);
924 IMPLEMENT_SHIFT(>>, UShort);
925 IMPLEMENT_SHIFT(>>, Short);
926 IMPLEMENT_SHIFT(>>, UInt);
927 IMPLEMENT_SHIFT(>>, Int);
Chris Lattner7b851ab2001-10-15 19:18:26 +0000928 IMPLEMENT_SHIFT(>>, ULong);
929 IMPLEMENT_SHIFT(>>, Long);
Chris Lattner86660982001-08-27 05:16:50 +0000930 default:
Chris Lattner02868352003-04-22 21:22:33 +0000931 std::cout << "Unhandled type for Shr instruction: " << *Ty << "\n";
932 abort();
Chris Lattner86660982001-08-27 05:16:50 +0000933 }
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000934 SetValue(&I, Dest, SF);
Chris Lattner86660982001-08-27 05:16:50 +0000935}
936
937#define IMPLEMENT_CAST(DTY, DCTY, STY) \
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000938 case Type::STY##TyID: Dest.DTY##Val = DCTY Src.STY##Val; break;
Chris Lattner86660982001-08-27 05:16:50 +0000939
940#define IMPLEMENT_CAST_CASE_START(DESTTY, DESTCTY) \
941 case Type::DESTTY##TyID: \
942 switch (SrcTy->getPrimitiveID()) { \
Chris Lattnerf4dca802002-05-02 19:28:45 +0000943 IMPLEMENT_CAST(DESTTY, DESTCTY, Bool); \
Chris Lattner86660982001-08-27 05:16:50 +0000944 IMPLEMENT_CAST(DESTTY, DESTCTY, UByte); \
945 IMPLEMENT_CAST(DESTTY, DESTCTY, SByte); \
946 IMPLEMENT_CAST(DESTTY, DESTCTY, UShort); \
947 IMPLEMENT_CAST(DESTTY, DESTCTY, Short); \
948 IMPLEMENT_CAST(DESTTY, DESTCTY, UInt); \
Chris Lattner7b851ab2001-10-15 19:18:26 +0000949 IMPLEMENT_CAST(DESTTY, DESTCTY, Int); \
950 IMPLEMENT_CAST(DESTTY, DESTCTY, ULong); \
Chris Lattnerc2593162001-10-27 08:28:11 +0000951 IMPLEMENT_CAST(DESTTY, DESTCTY, Long); \
952 IMPLEMENT_CAST(DESTTY, DESTCTY, Pointer);
Chris Lattner86660982001-08-27 05:16:50 +0000953
954#define IMPLEMENT_CAST_CASE_FP_IMP(DESTTY, DESTCTY) \
955 IMPLEMENT_CAST(DESTTY, DESTCTY, Float); \
956 IMPLEMENT_CAST(DESTTY, DESTCTY, Double)
957
958#define IMPLEMENT_CAST_CASE_END() \
Chris Lattner02868352003-04-22 21:22:33 +0000959 default: std::cout << "Unhandled cast: " << SrcTy << " to " << Ty << "\n"; \
960 abort(); \
Chris Lattner86660982001-08-27 05:16:50 +0000961 } \
962 break
963
964#define IMPLEMENT_CAST_CASE(DESTTY, DESTCTY) \
965 IMPLEMENT_CAST_CASE_START(DESTTY, DESTCTY); \
966 IMPLEMENT_CAST_CASE_FP_IMP(DESTTY, DESTCTY); \
Chris Lattner86660982001-08-27 05:16:50 +0000967 IMPLEMENT_CAST_CASE_END()
968
Chris Lattnera34c5682002-08-27 22:33:45 +0000969static GenericValue executeCastOperation(Value *SrcVal, const Type *Ty,
970 ExecutionContext &SF) {
971 const Type *SrcTy = SrcVal->getType();
972 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
Chris Lattner86660982001-08-27 05:16:50 +0000973
974 switch (Ty->getPrimitiveID()) {
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000975 IMPLEMENT_CAST_CASE(UByte , (unsigned char));
976 IMPLEMENT_CAST_CASE(SByte , ( signed char));
977 IMPLEMENT_CAST_CASE(UShort , (unsigned short));
Chris Lattner1bbd3612002-08-02 22:06:04 +0000978 IMPLEMENT_CAST_CASE(Short , ( signed short));
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000979 IMPLEMENT_CAST_CASE(UInt , (unsigned int ));
980 IMPLEMENT_CAST_CASE(Int , ( signed int ));
981 IMPLEMENT_CAST_CASE(ULong , (uint64_t));
982 IMPLEMENT_CAST_CASE(Long , ( int64_t));
Chris Lattner2fdaddf2002-10-30 21:47:57 +0000983 IMPLEMENT_CAST_CASE(Pointer, (PointerTy));
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000984 IMPLEMENT_CAST_CASE(Float , (float));
985 IMPLEMENT_CAST_CASE(Double , (double));
Chris Lattner5bff50d2003-04-22 21:15:56 +0000986 IMPLEMENT_CAST_CASE(Bool , (bool));
Chris Lattner86660982001-08-27 05:16:50 +0000987 default:
Chris Lattner02868352003-04-22 21:22:33 +0000988 std::cout << "Unhandled dest type for cast instruction: " << *Ty << "\n";
Chris Lattner5bff50d2003-04-22 21:15:56 +0000989 abort();
Chris Lattner86660982001-08-27 05:16:50 +0000990 }
Chris Lattnera34c5682002-08-27 22:33:45 +0000991
992 return Dest;
Chris Lattner86660982001-08-27 05:16:50 +0000993}
Chris Lattner92101ac2001-08-23 17:05:04 +0000994
995
Chris Lattnera34c5682002-08-27 22:33:45 +0000996static void executeCastInst(CastInst &I, ExecutionContext &SF) {
997 SetValue(&I, executeCastOperation(I.getOperand(0), I.getType(), SF), SF);
998}
Chris Lattner92101ac2001-08-23 17:05:04 +0000999
1000
1001//===----------------------------------------------------------------------===//
1002// Dispatch and Execution Code
1003//===----------------------------------------------------------------------===//
1004
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001005MethodInfo::MethodInfo(Function *F) : Annotation(MethodInfoAID) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001006 // Assign slot numbers to the function arguments...
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001007 for (Function::const_aiterator AI = F->abegin(), E = F->aend(); AI != E; ++AI)
1008 AI->addAnnotation(new SlotNumber(getValueSlot(AI)));
Chris Lattner92101ac2001-08-23 17:05:04 +00001009
1010 // Iterate over all of the instructions...
1011 unsigned InstNum = 0;
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001012 for (Function::iterator BB = F->begin(), BBE = F->end(); BB != BBE; ++BB)
1013 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE; ++II)
1014 // For each instruction... Add Annote
1015 II->addAnnotation(new InstNumber(++InstNum, getValueSlot(II)));
Chris Lattner92101ac2001-08-23 17:05:04 +00001016}
1017
1018unsigned MethodInfo::getValueSlot(const Value *V) {
1019 unsigned Plane = V->getType()->getUniqueID();
1020 if (Plane >= NumPlaneElements.size())
1021 NumPlaneElements.resize(Plane+1, 0);
1022 return NumPlaneElements[Plane]++;
1023}
1024
1025
Chris Lattner92101ac2001-08-23 17:05:04 +00001026//===----------------------------------------------------------------------===//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001027// callMethod - Execute the specified function...
Chris Lattner92101ac2001-08-23 17:05:04 +00001028//
Chris Lattner02868352003-04-22 21:22:33 +00001029void Interpreter::callMethod(Function *M,
1030 const std::vector<GenericValue> &ArgVals) {
Chris Lattner365a76e2001-09-10 04:49:44 +00001031 assert((ECStack.empty() || ECStack.back().Caller == 0 ||
1032 ECStack.back().Caller->getNumOperands()-1 == ArgVals.size()) &&
1033 "Incorrect number of arguments passed into function call!");
Chris Lattner92101ac2001-08-23 17:05:04 +00001034 if (M->isExternal()) {
Chris Lattnerbb76f022001-10-30 20:27:31 +00001035 GenericValue Result = callExternalMethod(M, ArgVals);
1036 const Type *RetTy = M->getReturnType();
1037
1038 // Copy the result back into the result variable if we are not returning
1039 // void.
1040 if (RetTy != Type::VoidTy) {
1041 if (!ECStack.empty() && ECStack.back().Caller) {
1042 ExecutionContext &SF = ECStack.back();
Chris Lattnerbb76f022001-10-30 20:27:31 +00001043 SetValue(SF.Caller, Result, SF);
1044
1045 SF.Caller = 0; // We returned from the call...
Chris Lattnerf23eb852001-12-14 16:49:29 +00001046 } else if (!QuietMode) {
Chris Lattnerbb76f022001-10-30 20:27:31 +00001047 // print it.
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001048 CW << "Function " << M->getType() << " \"" << M->getName()
Chris Lattner5af0c482001-11-07 04:23:00 +00001049 << "\" returned ";
Chris Lattnerbb76f022001-10-30 20:27:31 +00001050 print(RetTy, Result);
Chris Lattner02868352003-04-22 21:22:33 +00001051 std::cout << "\n";
Chris Lattnerbb76f022001-10-30 20:27:31 +00001052
1053 if (RetTy->isIntegral())
Chris Lattner0c4e8862002-09-03 01:08:28 +00001054 ExitCode = Result.IntVal; // Capture the exit code of the program
Chris Lattnerbb76f022001-10-30 20:27:31 +00001055 }
1056 }
1057
Chris Lattner92101ac2001-08-23 17:05:04 +00001058 return;
1059 }
1060
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001061 // Process the function, assigning instruction numbers to the instructions in
1062 // the function. Also calculate the number of values for each type slot
1063 // active.
Chris Lattner92101ac2001-08-23 17:05:04 +00001064 //
1065 MethodInfo *MethInfo = (MethodInfo*)M->getOrCreateAnnotation(MethodInfoAID);
Chris Lattner92101ac2001-08-23 17:05:04 +00001066 ECStack.push_back(ExecutionContext()); // Make a new stack frame...
Chris Lattner86660982001-08-27 05:16:50 +00001067
Chris Lattner92101ac2001-08-23 17:05:04 +00001068 ExecutionContext &StackFrame = ECStack.back(); // Fill it in...
1069 StackFrame.CurMethod = M;
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001070 StackFrame.CurBB = M->begin();
Chris Lattner92101ac2001-08-23 17:05:04 +00001071 StackFrame.CurInst = StackFrame.CurBB->begin();
1072 StackFrame.MethInfo = MethInfo;
1073
1074 // Initialize the values to nothing...
1075 StackFrame.Values.resize(MethInfo->NumPlaneElements.size());
Chris Lattnerea38c0e2001-11-07 19:46:27 +00001076 for (unsigned i = 0; i < MethInfo->NumPlaneElements.size(); ++i) {
Chris Lattner92101ac2001-08-23 17:05:04 +00001077 StackFrame.Values[i].resize(MethInfo->NumPlaneElements[i]);
1078
Chris Lattnerea38c0e2001-11-07 19:46:27 +00001079 // Taint the initial values of stuff
1080 memset(&StackFrame.Values[i][0], 42,
1081 MethInfo->NumPlaneElements[i]*sizeof(GenericValue));
1082 }
1083
Chris Lattner92101ac2001-08-23 17:05:04 +00001084 StackFrame.PrevBB = 0; // No previous BB for PHI nodes...
1085
Chris Lattner92101ac2001-08-23 17:05:04 +00001086
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001087 // Run through the function arguments and initialize their values...
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001088 assert(ArgVals.size() == M->asize() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001089 "Invalid number of values passed to function invocation!");
Chris Lattner365a76e2001-09-10 04:49:44 +00001090 unsigned i = 0;
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001091 for (Function::aiterator AI = M->abegin(), E = M->aend(); AI != E; ++AI, ++i)
1092 SetValue(AI, ArgVals[i], StackFrame);
Chris Lattner92101ac2001-08-23 17:05:04 +00001093}
1094
1095// executeInstruction - Interpret a single instruction, increment the "PC", and
1096// return true if the next instruction is a breakpoint...
1097//
1098bool Interpreter::executeInstruction() {
1099 assert(!ECStack.empty() && "No program running, cannot execute inst!");
1100
1101 ExecutionContext &SF = ECStack.back(); // Current stack frame
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001102 Instruction &I = *SF.CurInst++; // Increment before execute
Chris Lattner92101ac2001-08-23 17:05:04 +00001103
Chris Lattner43e3f7c2001-10-27 08:43:52 +00001104 if (Trace)
Chris Lattner5af0c482001-11-07 04:23:00 +00001105 CW << "Run:" << I;
1106
Chris Lattnerbbdabce2002-12-08 05:51:08 +00001107 // Track the number of dynamic instructions executed.
1108 ++NumDynamicInsts;
1109
Chris Lattner5af0c482001-11-07 04:23:00 +00001110 // Set a sigsetjmp buffer so that we can recover if an error happens during
1111 // instruction execution...
1112 //
1113 if (int SigNo = sigsetjmp(SignalRecoverBuffer, 1)) {
1114 --SF.CurInst; // Back up to erroring instruction
Chris Lattner74030252002-02-12 15:47:23 +00001115 if (SigNo != SIGINT) {
Chris Lattner02868352003-04-22 21:22:33 +00001116 std::cout << "EXCEPTION OCCURRED [" << strsignal(SigNo) << "]:\n";
Chris Lattner461f02f2001-11-07 05:31:27 +00001117 printStackTrace();
Chris Lattner74030252002-02-12 15:47:23 +00001118 // If -abort-on-exception was specified, terminate LLI instead of trying
1119 // to debug it.
1120 //
1121 if (AbortOnExceptions) exit(1);
Chris Lattner782b9392001-11-26 18:18:18 +00001122 } else if (SigNo == SIGINT) {
Chris Lattner02868352003-04-22 21:22:33 +00001123 std::cout << "CTRL-C Detected, execution halted.\n";
Chris Lattner461f02f2001-11-07 05:31:27 +00001124 }
1125 InInstruction = false;
Chris Lattner5af0c482001-11-07 04:23:00 +00001126 return true;
1127 }
Chris Lattner43e3f7c2001-10-27 08:43:52 +00001128
Chris Lattner461f02f2001-11-07 05:31:27 +00001129 InInstruction = true;
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001130 if (I.isBinaryOp()) {
Chris Lattnerbb76f022001-10-30 20:27:31 +00001131 executeBinaryInst(cast<BinaryOperator>(I), SF);
Chris Lattner92101ac2001-08-23 17:05:04 +00001132 } else {
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001133 switch (I.getOpcode()) {
Chris Lattner86660982001-08-27 05:16:50 +00001134 // Terminators
Chris Lattnerbb76f022001-10-30 20:27:31 +00001135 case Instruction::Ret: executeRetInst (cast<ReturnInst>(I), SF); break;
1136 case Instruction::Br: executeBrInst (cast<BranchInst>(I), SF); break;
Chris Lattner09e93922003-04-22 20:34:47 +00001137 case Instruction::Switch: executeSwitch (cast<SwitchInst>(I), SF); break;
Chris Lattner86660982001-08-27 05:16:50 +00001138 // Memory Instructions
1139 case Instruction::Alloca:
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001140 case Instruction::Malloc: executeAllocInst((AllocationInst&)I, SF); break;
Chris Lattnerbb76f022001-10-30 20:27:31 +00001141 case Instruction::Free: executeFreeInst (cast<FreeInst> (I), SF); break;
1142 case Instruction::Load: executeLoadInst (cast<LoadInst> (I), SF); break;
1143 case Instruction::Store: executeStoreInst(cast<StoreInst>(I), SF); break;
Chris Lattner95c3af52001-10-29 19:32:19 +00001144 case Instruction::GetElementPtr:
1145 executeGEPInst(cast<GetElementPtrInst>(I), SF); break;
Chris Lattner86660982001-08-27 05:16:50 +00001146
1147 // Miscellaneous Instructions
Chris Lattnerbb76f022001-10-30 20:27:31 +00001148 case Instruction::Call: executeCallInst (cast<CallInst> (I), SF); break;
1149 case Instruction::PHINode: executePHINode (cast<PHINode> (I), SF); break;
1150 case Instruction::Shl: executeShlInst (cast<ShiftInst>(I), SF); break;
1151 case Instruction::Shr: executeShrInst (cast<ShiftInst>(I), SF); break;
1152 case Instruction::Cast: executeCastInst (cast<CastInst> (I), SF); break;
Chris Lattner92101ac2001-08-23 17:05:04 +00001153 default:
Chris Lattner02868352003-04-22 21:22:33 +00001154 std::cout << "Don't know how to execute this instruction!\n-->" << I;
1155 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +00001156 }
1157 }
Chris Lattner461f02f2001-11-07 05:31:27 +00001158 InInstruction = false;
Chris Lattner92101ac2001-08-23 17:05:04 +00001159
1160 // Reset the current frame location to the top of stack
1161 CurFrame = ECStack.size()-1;
1162
1163 if (CurFrame == -1) return false; // No breakpoint if no code
1164
1165 // Return true if there is a breakpoint annotation on the instruction...
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001166 return ECStack[CurFrame].CurInst->getAnnotation(BreakpointAID) != 0;
Chris Lattner92101ac2001-08-23 17:05:04 +00001167}
1168
1169void Interpreter::stepInstruction() { // Do the 'step' command
1170 if (ECStack.empty()) {
Chris Lattner02868352003-04-22 21:22:33 +00001171 std::cout << "Error: no program running, cannot step!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001172 return;
1173 }
1174
1175 // Run an instruction...
1176 executeInstruction();
1177
1178 // Print the next instruction to execute...
1179 printCurrentInstruction();
1180}
1181
1182// --- UI Stuff...
Chris Lattner92101ac2001-08-23 17:05:04 +00001183void Interpreter::nextInstruction() { // Do the 'next' command
1184 if (ECStack.empty()) {
Chris Lattner02868352003-04-22 21:22:33 +00001185 std::cout << "Error: no program running, cannot 'next'!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001186 return;
1187 }
1188
1189 // If this is a call instruction, step over the call instruction...
1190 // TODO: ICALL, CALL WITH, ...
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001191 if (ECStack.back().CurInst->getOpcode() == Instruction::Call) {
Chris Lattnera74a6b52001-10-29 14:08:33 +00001192 unsigned StackSize = ECStack.size();
Chris Lattner92101ac2001-08-23 17:05:04 +00001193 // Step into the function...
1194 if (executeInstruction()) {
1195 // Hit a breakpoint, print current instruction, then return to user...
Chris Lattner02868352003-04-22 21:22:33 +00001196 std::cout << "Breakpoint hit!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001197 printCurrentInstruction();
1198 return;
1199 }
1200
Chris Lattnera74a6b52001-10-29 14:08:33 +00001201 // If we we able to step into the function, finish it now. We might not be
1202 // able the step into a function, if it's external for example.
1203 if (ECStack.size() != StackSize)
1204 finish(); // Finish executing the function...
Chris Lattner069aa252001-10-29 16:05:19 +00001205 else
1206 printCurrentInstruction();
Chris Lattnera74a6b52001-10-29 14:08:33 +00001207
Chris Lattner92101ac2001-08-23 17:05:04 +00001208 } else {
1209 // Normal instruction, just step...
1210 stepInstruction();
1211 }
1212}
1213
1214void Interpreter::run() {
1215 if (ECStack.empty()) {
Chris Lattner02868352003-04-22 21:22:33 +00001216 std::cout << "Error: no program running, cannot run!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001217 return;
1218 }
1219
1220 bool HitBreakpoint = false;
1221 while (!ECStack.empty() && !HitBreakpoint) {
1222 // Run an instruction...
1223 HitBreakpoint = executeInstruction();
1224 }
1225
Chris Lattner02868352003-04-22 21:22:33 +00001226 if (HitBreakpoint)
1227 std::cout << "Breakpoint hit!\n";
1228
Chris Lattner92101ac2001-08-23 17:05:04 +00001229 // Print the next instruction to execute...
1230 printCurrentInstruction();
1231}
1232
1233void Interpreter::finish() {
1234 if (ECStack.empty()) {
Chris Lattner02868352003-04-22 21:22:33 +00001235 std::cout << "Error: no program running, cannot run!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001236 return;
1237 }
1238
1239 unsigned StackSize = ECStack.size();
1240 bool HitBreakpoint = false;
1241 while (ECStack.size() >= StackSize && !HitBreakpoint) {
1242 // Run an instruction...
1243 HitBreakpoint = executeInstruction();
1244 }
1245
Chris Lattner02868352003-04-22 21:22:33 +00001246 if (HitBreakpoint)
1247 std::cout << "Breakpoint hit!\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001248
1249 // Print the next instruction to execute...
1250 printCurrentInstruction();
1251}
1252
1253
1254
1255// printCurrentInstruction - Print out the instruction that the virtual PC is
1256// at, or fail silently if no program is running.
1257//
1258void Interpreter::printCurrentInstruction() {
1259 if (!ECStack.empty()) {
Chris Lattnerf5b2ec12001-10-29 20:44:34 +00001260 if (ECStack.back().CurBB->begin() == ECStack.back().CurInst) // print label
Chris Lattner02868352003-04-22 21:22:33 +00001261 WriteAsOperand(std::cout, ECStack.back().CurBB) << ":\n";
Chris Lattnerf5b2ec12001-10-29 20:44:34 +00001262
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001263 Instruction &I = *ECStack.back().CurInst;
1264 InstNumber *IN = (InstNumber*)I.getAnnotation(SlotNumberAID);
Chris Lattner92101ac2001-08-23 17:05:04 +00001265 assert(IN && "Instruction has no numbering annotation!");
Chris Lattner02868352003-04-22 21:22:33 +00001266 std::cout << "#" << IN->InstNum << I;
Chris Lattner92101ac2001-08-23 17:05:04 +00001267 }
1268}
1269
1270void Interpreter::printValue(const Type *Ty, GenericValue V) {
Chris Lattner92101ac2001-08-23 17:05:04 +00001271 switch (Ty->getPrimitiveID()) {
Chris Lattner02868352003-04-22 21:22:33 +00001272 case Type::BoolTyID: std::cout << (V.BoolVal?"true":"false"); break;
Chris Lattner65629d52002-08-13 20:45:11 +00001273 case Type::SByteTyID:
Chris Lattner02868352003-04-22 21:22:33 +00001274 std::cout << (int)V.SByteVal << " '" << V.SByteVal << "'"; break;
Chris Lattner65629d52002-08-13 20:45:11 +00001275 case Type::UByteTyID:
Chris Lattner02868352003-04-22 21:22:33 +00001276 std::cout << (unsigned)V.UByteVal << " '" << V.UByteVal << "'"; break;
1277 case Type::ShortTyID: std::cout << V.ShortVal; break;
1278 case Type::UShortTyID: std::cout << V.UShortVal; break;
1279 case Type::IntTyID: std::cout << V.IntVal; break;
1280 case Type::UIntTyID: std::cout << V.UIntVal; break;
1281 case Type::LongTyID: std::cout << (long)V.LongVal; break;
1282 case Type::ULongTyID: std::cout << (unsigned long)V.ULongVal; break;
1283 case Type::FloatTyID: std::cout << V.FloatVal; break;
1284 case Type::DoubleTyID: std::cout << V.DoubleVal; break;
1285 case Type::PointerTyID:std::cout << (void*)GVTOP(V); break;
Chris Lattner92101ac2001-08-23 17:05:04 +00001286 default:
Chris Lattner02868352003-04-22 21:22:33 +00001287 std::cout << "- Don't know how to print value of this type!";
Chris Lattner92101ac2001-08-23 17:05:04 +00001288 break;
1289 }
1290}
1291
Chris Lattner2e42d3a2001-10-15 05:51:48 +00001292void Interpreter::print(const Type *Ty, GenericValue V) {
Chris Lattner5af0c482001-11-07 04:23:00 +00001293 CW << Ty << " ";
Chris Lattner2e42d3a2001-10-15 05:51:48 +00001294 printValue(Ty, V);
1295}
1296
Chris Lattner697954c2002-01-20 22:54:45 +00001297void Interpreter::print(const std::string &Name) {
Chris Lattner92101ac2001-08-23 17:05:04 +00001298 Value *PickedVal = ChooseOneOption(Name, LookupMatchingNames(Name));
1299 if (!PickedVal) return;
1300
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001301 if (const Function *F = dyn_cast<const Function>(PickedVal)) {
1302 CW << F; // Print the function
Chris Lattnerea38c0e2001-11-07 19:46:27 +00001303 } else if (const Type *Ty = dyn_cast<const Type>(PickedVal)) {
Chris Lattner697954c2002-01-20 22:54:45 +00001304 CW << "type %" << Name << " = " << Ty->getDescription() << "\n";
Chris Lattnerea38c0e2001-11-07 19:46:27 +00001305 } else if (const BasicBlock *BB = dyn_cast<const BasicBlock>(PickedVal)) {
1306 CW << BB; // Print the basic block
Chris Lattner92101ac2001-08-23 17:05:04 +00001307 } else { // Otherwise there should be an annotation for the slot#
Chris Lattner2e42d3a2001-10-15 05:51:48 +00001308 print(PickedVal->getType(),
1309 getOperandValue(PickedVal, ECStack[CurFrame]));
Chris Lattner02868352003-04-22 21:22:33 +00001310 std::cout << "\n";
Chris Lattner92101ac2001-08-23 17:05:04 +00001311 }
Chris Lattner92101ac2001-08-23 17:05:04 +00001312}
1313
Chris Lattner697954c2002-01-20 22:54:45 +00001314void Interpreter::infoValue(const std::string &Name) {
Chris Lattner86660982001-08-27 05:16:50 +00001315 Value *PickedVal = ChooseOneOption(Name, LookupMatchingNames(Name));
1316 if (!PickedVal) return;
1317
Chris Lattner02868352003-04-22 21:22:33 +00001318 std::cout << "Value: ";
Chris Lattner2e42d3a2001-10-15 05:51:48 +00001319 print(PickedVal->getType(),
1320 getOperandValue(PickedVal, ECStack[CurFrame]));
Chris Lattner02868352003-04-22 21:22:33 +00001321 std::cout << "\n";
Chris Lattner86660982001-08-27 05:16:50 +00001322 printOperandInfo(PickedVal, ECStack[CurFrame]);
1323}
1324
Chris Lattner461f02f2001-11-07 05:31:27 +00001325// printStackFrame - Print information about the specified stack frame, or -1
1326// for the default one.
1327//
Chris Lattner601d7152002-07-25 17:37:05 +00001328void Interpreter::printStackFrame(int FrameNo) {
Chris Lattner461f02f2001-11-07 05:31:27 +00001329 if (FrameNo == -1) FrameNo = CurFrame;
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001330 Function *F = ECStack[FrameNo].CurMethod;
1331 const Type *RetTy = F->getReturnType();
Chris Lattnerea38c0e2001-11-07 19:46:27 +00001332
1333 CW << ((FrameNo == CurFrame) ? '>' : '-') << "#" << FrameNo << ". "
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001334 << (Value*)RetTy << " \"" << F->getName() << "\"(";
Chris Lattner461f02f2001-11-07 05:31:27 +00001335
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001336 unsigned i = 0;
1337 for (Function::aiterator I = F->abegin(), E = F->aend(); I != E; ++I, ++i) {
Chris Lattner02868352003-04-22 21:22:33 +00001338 if (i != 0) std::cout << ", ";
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001339 CW << *I << "=";
Chris Lattner461f02f2001-11-07 05:31:27 +00001340
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001341 printValue(I->getType(), getOperandValue(I, ECStack[FrameNo]));
Chris Lattner92101ac2001-08-23 17:05:04 +00001342 }
Chris Lattner461f02f2001-11-07 05:31:27 +00001343
Chris Lattner02868352003-04-22 21:22:33 +00001344 std::cout << ")\n";
Chris Lattner0b12b5f2002-06-25 16:13:21 +00001345
1346 if (FrameNo != int(ECStack.size()-1)) {
1347 BasicBlock::iterator I = ECStack[FrameNo].CurInst;
1348 CW << --I;
1349 } else {
1350 CW << *ECStack[FrameNo].CurInst;
1351 }
Chris Lattner92101ac2001-08-23 17:05:04 +00001352}
Chris Lattner461f02f2001-11-07 05:31:27 +00001353