Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1 | //===-- Execution.cpp - Implement code to simulate the program ------------===// |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 10 | // This file contains the actual instruction interpreter. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Interpreter.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/APInt.h" |
| 16 | #include "llvm/ADT/Statistic.h" |
| 17 | #include "llvm/CodeGen/IntrinsicLowering.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 18 | #include "llvm/IR/Constants.h" |
| 19 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 03eb0de | 2014-03-04 10:40:04 +0000 | [diff] [blame] | 20 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Instructions.h" |
Chris Lattner | 2528d63 | 2008-07-08 17:25:49 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MathExtras.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Gabor Greif | cb6832e | 2007-10-11 19:40:35 +0000 | [diff] [blame] | 27 | #include <algorithm> |
Anton Korobeynikov | 579f071 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 28 | #include <cmath> |
Chris Lattner | f078808 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 29 | using namespace llvm; |
Chris Lattner | a0d7b08 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 30 | |
Chandler Carruth | f58e376 | 2014-04-22 03:04:17 +0000 | [diff] [blame] | 31 | #define DEBUG_TYPE "interpreter" |
| 32 | |
Chris Lattner | e712a5a | 2006-12-19 22:56:53 +0000 | [diff] [blame] | 33 | STATISTIC(NumDynamicInsts, "Number of dynamic instructions executed"); |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 34 | |
Chris Lattner | 2528d63 | 2008-07-08 17:25:49 +0000 | [diff] [blame] | 35 | static cl::opt<bool> PrintVolatile("interpreter-print-volatile", cl::Hidden, |
| 36 | cl::desc("make the interpreter print every volatile load and store")); |
| 37 | |
Chris Lattner | c62e2e5 | 2001-10-15 05:51:48 +0000 | [diff] [blame] | 38 | //===----------------------------------------------------------------------===// |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 39 | // Various Helper Functions |
Chris Lattner | 78244c4 | 2001-10-15 13:25:40 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 78244c4 | 2001-10-15 13:25:40 +0000 | [diff] [blame] | 42 | static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { |
Brian Gaeke | e278c22 | 2003-10-24 19:59:01 +0000 | [diff] [blame] | 43 | SF.Values[V] = Val; |
Chris Lattner | 78244c4 | 2001-10-15 13:25:40 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Chris Lattner | 79baf91 | 2002-05-03 19:52:30 +0000 | [diff] [blame] | 46 | //===----------------------------------------------------------------------===// |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 47 | // Binary Instruction Implementations |
| 48 | //===----------------------------------------------------------------------===// |
| 49 | |
| 50 | #define IMPLEMENT_BINARY_OPERATOR(OP, TY) \ |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 51 | case Type::TY##TyID: \ |
| 52 | Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \ |
| 53 | break |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 54 | |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 55 | static void executeFAddInst(GenericValue &Dest, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 56 | GenericValue Src2, Type *Ty) { |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 57 | switch (Ty->getTypeID()) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 58 | IMPLEMENT_BINARY_OPERATOR(+, Float); |
| 59 | IMPLEMENT_BINARY_OPERATOR(+, Double); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 60 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 61 | dbgs() << "Unhandled type for FAdd instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 62 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 63 | } |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 66 | static void executeFSubInst(GenericValue &Dest, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 67 | GenericValue Src2, Type *Ty) { |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 68 | switch (Ty->getTypeID()) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 69 | IMPLEMENT_BINARY_OPERATOR(-, Float); |
| 70 | IMPLEMENT_BINARY_OPERATOR(-, Double); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 71 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 72 | dbgs() << "Unhandled type for FSub instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 73 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 74 | } |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 77 | static void executeFMulInst(GenericValue &Dest, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 78 | GenericValue Src2, Type *Ty) { |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 79 | switch (Ty->getTypeID()) { |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 80 | IMPLEMENT_BINARY_OPERATOR(*, Float); |
| 81 | IMPLEMENT_BINARY_OPERATOR(*, Double); |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 82 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 83 | dbgs() << "Unhandled type for FMul instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 84 | llvm_unreachable(nullptr); |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 85 | } |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 88 | static void executeFDivInst(GenericValue &Dest, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 89 | GenericValue Src2, Type *Ty) { |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 90 | switch (Ty->getTypeID()) { |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 91 | IMPLEMENT_BINARY_OPERATOR(/, Float); |
| 92 | IMPLEMENT_BINARY_OPERATOR(/, Double); |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 93 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 94 | dbgs() << "Unhandled type for FDiv instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 95 | llvm_unreachable(nullptr); |
Chris Lattner | 5946b11 | 2001-10-30 20:27:31 +0000 | [diff] [blame] | 96 | } |
Chris Lattner | 5946b11 | 2001-10-30 20:27:31 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 99 | static void executeFRemInst(GenericValue &Dest, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 100 | GenericValue Src2, Type *Ty) { |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 101 | switch (Ty->getTypeID()) { |
Chris Lattner | 5946b11 | 2001-10-30 20:27:31 +0000 | [diff] [blame] | 102 | case Type::FloatTyID: |
| 103 | Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); |
| 104 | break; |
| 105 | case Type::DoubleTyID: |
| 106 | Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); |
| 107 | break; |
| 108 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 109 | dbgs() << "Unhandled type for Rem instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 110 | llvm_unreachable(nullptr); |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 111 | } |
Chris Lattner | 0b00b31 | 2001-10-27 08:28:11 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 114 | #define IMPLEMENT_INTEGER_ICMP(OP, TY) \ |
| 115 | case Type::IntegerTyID: \ |
| 116 | Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \ |
| 117 | break; |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 118 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 119 | #define IMPLEMENT_VECTOR_INTEGER_ICMP(OP, TY) \ |
| 120 | case Type::VectorTyID: { \ |
| 121 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \ |
| 122 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \ |
| 123 | for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \ |
| 124 | Dest.AggregateVal[_i].IntVal = APInt(1, \ |
| 125 | Src1.AggregateVal[_i].IntVal.OP(Src2.AggregateVal[_i].IntVal));\ |
| 126 | } break; |
| 127 | |
Chris Lattner | ed27f84 | 2003-04-23 19:55:35 +0000 | [diff] [blame] | 128 | // Handle pointers specially because they must be compared with only as much |
| 129 | // width as the host has. We _do not_ want to be comparing 64 bit values when |
| 130 | // running on a 32-bit target, otherwise the upper 32 bits might mess up |
| 131 | // comparisons if they contain garbage. |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 132 | #define IMPLEMENT_POINTER_ICMP(OP) \ |
Chris Lattner | ed27f84 | 2003-04-23 19:55:35 +0000 | [diff] [blame] | 133 | case Type::PointerTyID: \ |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 134 | Dest.IntVal = APInt(1,(void*)(intptr_t)Src1.PointerVal OP \ |
| 135 | (void*)(intptr_t)Src2.PointerVal); \ |
| 136 | break; |
Chris Lattner | ed27f84 | 2003-04-23 19:55:35 +0000 | [diff] [blame] | 137 | |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 138 | static GenericValue executeICMP_EQ(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 139 | Type *Ty) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 140 | GenericValue Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 141 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 142 | IMPLEMENT_INTEGER_ICMP(eq,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 143 | IMPLEMENT_VECTOR_INTEGER_ICMP(eq,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 144 | IMPLEMENT_POINTER_ICMP(==); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 145 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 146 | dbgs() << "Unhandled type for ICMP_EQ predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 147 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 148 | } |
| 149 | return Dest; |
| 150 | } |
| 151 | |
| 152 | static GenericValue executeICMP_NE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 153 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 154 | GenericValue Dest; |
| 155 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 156 | IMPLEMENT_INTEGER_ICMP(ne,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 157 | IMPLEMENT_VECTOR_INTEGER_ICMP(ne,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 158 | IMPLEMENT_POINTER_ICMP(!=); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 159 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 160 | dbgs() << "Unhandled type for ICMP_NE predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 161 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 162 | } |
| 163 | return Dest; |
| 164 | } |
| 165 | |
| 166 | static GenericValue executeICMP_ULT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 167 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 168 | GenericValue Dest; |
| 169 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 170 | IMPLEMENT_INTEGER_ICMP(ult,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 171 | IMPLEMENT_VECTOR_INTEGER_ICMP(ult,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 172 | IMPLEMENT_POINTER_ICMP(<); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 173 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 174 | dbgs() << "Unhandled type for ICMP_ULT predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 175 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 176 | } |
| 177 | return Dest; |
| 178 | } |
| 179 | |
| 180 | static GenericValue executeICMP_SLT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 181 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 182 | GenericValue Dest; |
| 183 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 184 | IMPLEMENT_INTEGER_ICMP(slt,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 185 | IMPLEMENT_VECTOR_INTEGER_ICMP(slt,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 186 | IMPLEMENT_POINTER_ICMP(<); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 187 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 188 | dbgs() << "Unhandled type for ICMP_SLT predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 189 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 190 | } |
| 191 | return Dest; |
| 192 | } |
| 193 | |
| 194 | static GenericValue executeICMP_UGT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 195 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 196 | GenericValue Dest; |
| 197 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 198 | IMPLEMENT_INTEGER_ICMP(ugt,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 199 | IMPLEMENT_VECTOR_INTEGER_ICMP(ugt,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 200 | IMPLEMENT_POINTER_ICMP(>); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 201 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 202 | dbgs() << "Unhandled type for ICMP_UGT predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 203 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 204 | } |
| 205 | return Dest; |
| 206 | } |
| 207 | |
| 208 | static GenericValue executeICMP_SGT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 209 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 210 | GenericValue Dest; |
| 211 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 212 | IMPLEMENT_INTEGER_ICMP(sgt,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 213 | IMPLEMENT_VECTOR_INTEGER_ICMP(sgt,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 214 | IMPLEMENT_POINTER_ICMP(>); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 215 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 216 | dbgs() << "Unhandled type for ICMP_SGT predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 217 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 218 | } |
| 219 | return Dest; |
| 220 | } |
| 221 | |
| 222 | static GenericValue executeICMP_ULE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 223 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 224 | GenericValue Dest; |
| 225 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 226 | IMPLEMENT_INTEGER_ICMP(ule,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 227 | IMPLEMENT_VECTOR_INTEGER_ICMP(ule,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 228 | IMPLEMENT_POINTER_ICMP(<=); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 229 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 230 | dbgs() << "Unhandled type for ICMP_ULE predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 231 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 232 | } |
| 233 | return Dest; |
| 234 | } |
| 235 | |
| 236 | static GenericValue executeICMP_SLE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 237 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 238 | GenericValue Dest; |
| 239 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 240 | IMPLEMENT_INTEGER_ICMP(sle,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 241 | IMPLEMENT_VECTOR_INTEGER_ICMP(sle,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 242 | IMPLEMENT_POINTER_ICMP(<=); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 243 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 244 | dbgs() << "Unhandled type for ICMP_SLE predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 245 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 246 | } |
| 247 | return Dest; |
| 248 | } |
| 249 | |
| 250 | static GenericValue executeICMP_UGE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 251 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 252 | GenericValue Dest; |
| 253 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 254 | IMPLEMENT_INTEGER_ICMP(uge,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 255 | IMPLEMENT_VECTOR_INTEGER_ICMP(uge,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 256 | IMPLEMENT_POINTER_ICMP(>=); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 257 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 258 | dbgs() << "Unhandled type for ICMP_UGE predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 259 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 260 | } |
| 261 | return Dest; |
| 262 | } |
| 263 | |
| 264 | static GenericValue executeICMP_SGE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 265 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 266 | GenericValue Dest; |
| 267 | switch (Ty->getTypeID()) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 268 | IMPLEMENT_INTEGER_ICMP(sge,Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 269 | IMPLEMENT_VECTOR_INTEGER_ICMP(sge,Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 270 | IMPLEMENT_POINTER_ICMP(>=); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 271 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 272 | dbgs() << "Unhandled type for ICMP_SGE predicate: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 273 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 274 | } |
| 275 | return Dest; |
| 276 | } |
| 277 | |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 278 | void Interpreter::visitICmpInst(ICmpInst &I) { |
| 279 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 280 | Type *Ty = I.getOperand(0)->getType(); |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 281 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 282 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 283 | GenericValue R; // Result |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 284 | |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 285 | switch (I.getPredicate()) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 286 | case ICmpInst::ICMP_EQ: R = executeICMP_EQ(Src1, Src2, Ty); break; |
| 287 | case ICmpInst::ICMP_NE: R = executeICMP_NE(Src1, Src2, Ty); break; |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 288 | case ICmpInst::ICMP_ULT: R = executeICMP_ULT(Src1, Src2, Ty); break; |
| 289 | case ICmpInst::ICMP_SLT: R = executeICMP_SLT(Src1, Src2, Ty); break; |
| 290 | case ICmpInst::ICMP_UGT: R = executeICMP_UGT(Src1, Src2, Ty); break; |
| 291 | case ICmpInst::ICMP_SGT: R = executeICMP_SGT(Src1, Src2, Ty); break; |
| 292 | case ICmpInst::ICMP_ULE: R = executeICMP_ULE(Src1, Src2, Ty); break; |
| 293 | case ICmpInst::ICMP_SLE: R = executeICMP_SLE(Src1, Src2, Ty); break; |
| 294 | case ICmpInst::ICMP_UGE: R = executeICMP_UGE(Src1, Src2, Ty); break; |
| 295 | case ICmpInst::ICMP_SGE: R = executeICMP_SGE(Src1, Src2, Ty); break; |
| 296 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 297 | dbgs() << "Don't know how to handle this ICmp predicate!\n-->" << I; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 298 | llvm_unreachable(nullptr); |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 299 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 300 | |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 301 | SetValue(&I, R, SF); |
| 302 | } |
| 303 | |
| 304 | #define IMPLEMENT_FCMP(OP, TY) \ |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 305 | case Type::TY##TyID: \ |
| 306 | Dest.IntVal = APInt(1,Src1.TY##Val OP Src2.TY##Val); \ |
| 307 | break |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 308 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 309 | #define IMPLEMENT_VECTOR_FCMP_T(OP, TY) \ |
| 310 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \ |
| 311 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \ |
| 312 | for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \ |
| 313 | Dest.AggregateVal[_i].IntVal = APInt(1, \ |
| 314 | Src1.AggregateVal[_i].TY##Val OP Src2.AggregateVal[_i].TY##Val);\ |
| 315 | break; |
| 316 | |
| 317 | #define IMPLEMENT_VECTOR_FCMP(OP) \ |
| 318 | case Type::VectorTyID: \ |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 319 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) { \ |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 320 | IMPLEMENT_VECTOR_FCMP_T(OP, Float); \ |
| 321 | } else { \ |
| 322 | IMPLEMENT_VECTOR_FCMP_T(OP, Double); \ |
| 323 | } |
| 324 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 325 | static GenericValue executeFCMP_OEQ(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 326 | Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 327 | GenericValue Dest; |
| 328 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 329 | IMPLEMENT_FCMP(==, Float); |
| 330 | IMPLEMENT_FCMP(==, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 331 | IMPLEMENT_VECTOR_FCMP(==); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 332 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 333 | dbgs() << "Unhandled type for FCmp EQ instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 334 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 335 | } |
| 336 | return Dest; |
| 337 | } |
| 338 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 339 | #define IMPLEMENT_SCALAR_NANS(TY, X,Y) \ |
| 340 | if (TY->isFloatTy()) { \ |
| 341 | if (X.FloatVal != X.FloatVal || Y.FloatVal != Y.FloatVal) { \ |
| 342 | Dest.IntVal = APInt(1,false); \ |
| 343 | return Dest; \ |
| 344 | } \ |
| 345 | } else { \ |
| 346 | if (X.DoubleVal != X.DoubleVal || Y.DoubleVal != Y.DoubleVal) { \ |
| 347 | Dest.IntVal = APInt(1,false); \ |
| 348 | return Dest; \ |
| 349 | } \ |
| 350 | } |
| 351 | |
| 352 | #define MASK_VECTOR_NANS_T(X,Y, TZ, FLAG) \ |
| 353 | assert(X.AggregateVal.size() == Y.AggregateVal.size()); \ |
| 354 | Dest.AggregateVal.resize( X.AggregateVal.size() ); \ |
| 355 | for( uint32_t _i=0;_i<X.AggregateVal.size();_i++) { \ |
| 356 | if (X.AggregateVal[_i].TZ##Val != X.AggregateVal[_i].TZ##Val || \ |
| 357 | Y.AggregateVal[_i].TZ##Val != Y.AggregateVal[_i].TZ##Val) \ |
| 358 | Dest.AggregateVal[_i].IntVal = APInt(1,FLAG); \ |
| 359 | else { \ |
| 360 | Dest.AggregateVal[_i].IntVal = APInt(1,!FLAG); \ |
| 361 | } \ |
| 362 | } |
| 363 | |
| 364 | #define MASK_VECTOR_NANS(TY, X,Y, FLAG) \ |
| 365 | if (TY->isVectorTy()) { \ |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 366 | if (cast<VectorType>(TY)->getElementType()->isFloatTy()) { \ |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 367 | MASK_VECTOR_NANS_T(X, Y, Float, FLAG) \ |
| 368 | } else { \ |
| 369 | MASK_VECTOR_NANS_T(X, Y, Double, FLAG) \ |
| 370 | } \ |
| 371 | } \ |
| 372 | |
| 373 | |
| 374 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 375 | static GenericValue executeFCMP_ONE(GenericValue Src1, GenericValue Src2, |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 376 | Type *Ty) |
| 377 | { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 378 | GenericValue Dest; |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 379 | // if input is scalar value and Src1 or Src2 is NaN return false |
| 380 | IMPLEMENT_SCALAR_NANS(Ty, Src1, Src2) |
| 381 | // if vector input detect NaNs and fill mask |
| 382 | MASK_VECTOR_NANS(Ty, Src1, Src2, false) |
| 383 | GenericValue DestMask = Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 384 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 385 | IMPLEMENT_FCMP(!=, Float); |
| 386 | IMPLEMENT_FCMP(!=, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 387 | IMPLEMENT_VECTOR_FCMP(!=); |
| 388 | default: |
| 389 | dbgs() << "Unhandled type for FCmp NE instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 390 | llvm_unreachable(nullptr); |
Nadav Rotem | 4e4d45e | 2013-04-12 22:02:26 +0000 | [diff] [blame] | 391 | } |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 392 | // in vector case mask out NaN elements |
| 393 | if (Ty->isVectorTy()) |
| 394 | for( size_t _i=0; _i<Src1.AggregateVal.size(); _i++) |
| 395 | if (DestMask.AggregateVal[_i].IntVal == false) |
| 396 | Dest.AggregateVal[_i].IntVal = APInt(1,false); |
| 397 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 398 | return Dest; |
| 399 | } |
| 400 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 401 | static GenericValue executeFCMP_OLE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 402 | Type *Ty) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 403 | GenericValue Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 404 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 405 | IMPLEMENT_FCMP(<=, Float); |
| 406 | IMPLEMENT_FCMP(<=, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 407 | IMPLEMENT_VECTOR_FCMP(<=); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 408 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 409 | dbgs() << "Unhandled type for FCmp LE instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 410 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 411 | } |
| 412 | return Dest; |
| 413 | } |
| 414 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 415 | static GenericValue executeFCMP_OGE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 416 | Type *Ty) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 417 | GenericValue Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 418 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 419 | IMPLEMENT_FCMP(>=, Float); |
| 420 | IMPLEMENT_FCMP(>=, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 421 | IMPLEMENT_VECTOR_FCMP(>=); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 422 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 423 | dbgs() << "Unhandled type for FCmp GE instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 424 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 425 | } |
| 426 | return Dest; |
| 427 | } |
| 428 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 429 | static GenericValue executeFCMP_OLT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 430 | Type *Ty) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 431 | GenericValue Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 432 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 433 | IMPLEMENT_FCMP(<, Float); |
| 434 | IMPLEMENT_FCMP(<, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 435 | IMPLEMENT_VECTOR_FCMP(<); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 436 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 437 | dbgs() << "Unhandled type for FCmp LT instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 438 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 439 | } |
| 440 | return Dest; |
| 441 | } |
| 442 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 443 | static GenericValue executeFCMP_OGT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 444 | Type *Ty) { |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 445 | GenericValue Dest; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 446 | switch (Ty->getTypeID()) { |
Reid Spencer | 0d54e78 | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 447 | IMPLEMENT_FCMP(>, Float); |
| 448 | IMPLEMENT_FCMP(>, Double); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 449 | IMPLEMENT_VECTOR_FCMP(>); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 450 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 451 | dbgs() << "Unhandled type for FCmp GT instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 452 | llvm_unreachable(nullptr); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 453 | } |
| 454 | return Dest; |
| 455 | } |
| 456 | |
Anton Korobeynikov | 035eaac | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 457 | #define IMPLEMENT_UNORDERED(TY, X,Y) \ |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 458 | if (TY->isFloatTy()) { \ |
Anton Korobeynikov | 035eaac | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 459 | if (X.FloatVal != X.FloatVal || Y.FloatVal != Y.FloatVal) { \ |
| 460 | Dest.IntVal = APInt(1,true); \ |
| 461 | return Dest; \ |
| 462 | } \ |
| 463 | } else if (X.DoubleVal != X.DoubleVal || Y.DoubleVal != Y.DoubleVal) { \ |
| 464 | Dest.IntVal = APInt(1,true); \ |
| 465 | return Dest; \ |
| 466 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 467 | |
David Blaikie | 9f380a3 | 2015-03-16 18:06:57 +0000 | [diff] [blame] | 468 | #define IMPLEMENT_VECTOR_UNORDERED(TY, X, Y, FUNC) \ |
| 469 | if (TY->isVectorTy()) { \ |
| 470 | GenericValue DestMask = Dest; \ |
| 471 | Dest = FUNC(Src1, Src2, Ty); \ |
| 472 | for (size_t _i = 0; _i < Src1.AggregateVal.size(); _i++) \ |
| 473 | if (DestMask.AggregateVal[_i].IntVal == true) \ |
| 474 | Dest.AggregateVal[_i].IntVal = APInt(1, true); \ |
| 475 | return Dest; \ |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 476 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 477 | |
| 478 | static GenericValue executeFCMP_UEQ(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 479 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 480 | GenericValue Dest; |
| 481 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 482 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 483 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_OEQ) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 484 | return executeFCMP_OEQ(Src1, Src2, Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 485 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | static GenericValue executeFCMP_UNE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 489 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 490 | GenericValue Dest; |
| 491 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 492 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 493 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_ONE) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 494 | return executeFCMP_ONE(Src1, Src2, Ty); |
| 495 | } |
| 496 | |
| 497 | static GenericValue executeFCMP_ULE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 498 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 499 | GenericValue Dest; |
| 500 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 501 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 502 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_OLE) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 503 | return executeFCMP_OLE(Src1, Src2, Ty); |
| 504 | } |
| 505 | |
| 506 | static GenericValue executeFCMP_UGE(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 507 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 508 | GenericValue Dest; |
| 509 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 510 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 511 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_OGE) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 512 | return executeFCMP_OGE(Src1, Src2, Ty); |
| 513 | } |
| 514 | |
| 515 | static GenericValue executeFCMP_ULT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 516 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 517 | GenericValue Dest; |
| 518 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 519 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 520 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_OLT) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 521 | return executeFCMP_OLT(Src1, Src2, Ty); |
| 522 | } |
| 523 | |
| 524 | static GenericValue executeFCMP_UGT(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 525 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 526 | GenericValue Dest; |
| 527 | IMPLEMENT_UNORDERED(Ty, Src1, Src2) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 528 | MASK_VECTOR_NANS(Ty, Src1, Src2, true) |
| 529 | IMPLEMENT_VECTOR_UNORDERED(Ty, Src1, Src2, executeFCMP_OGT) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 530 | return executeFCMP_OGT(Src1, Src2, Ty); |
| 531 | } |
| 532 | |
| 533 | static GenericValue executeFCMP_ORD(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 534 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 535 | GenericValue Dest; |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 536 | if(Ty->isVectorTy()) { |
| 537 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); |
| 538 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 539 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) { |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 540 | for( size_t _i=0;_i<Src1.AggregateVal.size();_i++) |
| 541 | Dest.AggregateVal[_i].IntVal = APInt(1, |
| 542 | ( (Src1.AggregateVal[_i].FloatVal == |
| 543 | Src1.AggregateVal[_i].FloatVal) && |
| 544 | (Src2.AggregateVal[_i].FloatVal == |
| 545 | Src2.AggregateVal[_i].FloatVal))); |
| 546 | } else { |
| 547 | for( size_t _i=0;_i<Src1.AggregateVal.size();_i++) |
| 548 | Dest.AggregateVal[_i].IntVal = APInt(1, |
| 549 | ( (Src1.AggregateVal[_i].DoubleVal == |
| 550 | Src1.AggregateVal[_i].DoubleVal) && |
| 551 | (Src2.AggregateVal[_i].DoubleVal == |
| 552 | Src2.AggregateVal[_i].DoubleVal))); |
| 553 | } |
| 554 | } else if (Ty->isFloatTy()) |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 555 | Dest.IntVal = APInt(1,(Src1.FloatVal == Src1.FloatVal && |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 556 | Src2.FloatVal == Src2.FloatVal)); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 557 | else { |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 558 | Dest.IntVal = APInt(1,(Src1.DoubleVal == Src1.DoubleVal && |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 559 | Src2.DoubleVal == Src2.DoubleVal)); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 560 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 561 | return Dest; |
| 562 | } |
| 563 | |
| 564 | static GenericValue executeFCMP_UNO(GenericValue Src1, GenericValue Src2, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 565 | Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 566 | GenericValue Dest; |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 567 | if(Ty->isVectorTy()) { |
| 568 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); |
| 569 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 570 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) { |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 571 | for( size_t _i=0;_i<Src1.AggregateVal.size();_i++) |
| 572 | Dest.AggregateVal[_i].IntVal = APInt(1, |
| 573 | ( (Src1.AggregateVal[_i].FloatVal != |
| 574 | Src1.AggregateVal[_i].FloatVal) || |
| 575 | (Src2.AggregateVal[_i].FloatVal != |
| 576 | Src2.AggregateVal[_i].FloatVal))); |
| 577 | } else { |
| 578 | for( size_t _i=0;_i<Src1.AggregateVal.size();_i++) |
| 579 | Dest.AggregateVal[_i].IntVal = APInt(1, |
| 580 | ( (Src1.AggregateVal[_i].DoubleVal != |
| 581 | Src1.AggregateVal[_i].DoubleVal) || |
| 582 | (Src2.AggregateVal[_i].DoubleVal != |
| 583 | Src2.AggregateVal[_i].DoubleVal))); |
| 584 | } |
| 585 | } else if (Ty->isFloatTy()) |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 586 | Dest.IntVal = APInt(1,(Src1.FloatVal != Src1.FloatVal || |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 587 | Src2.FloatVal != Src2.FloatVal)); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 588 | else { |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 589 | Dest.IntVal = APInt(1,(Src1.DoubleVal != Src1.DoubleVal || |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 590 | Src2.DoubleVal != Src2.DoubleVal)); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 591 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 592 | return Dest; |
| 593 | } |
| 594 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 595 | static GenericValue executeFCMP_BOOL(GenericValue Src1, GenericValue Src2, |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 596 | Type *Ty, const bool val) { |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 597 | GenericValue Dest; |
| 598 | if(Ty->isVectorTy()) { |
| 599 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); |
| 600 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); |
| 601 | for( size_t _i=0; _i<Src1.AggregateVal.size(); _i++) |
| 602 | Dest.AggregateVal[_i].IntVal = APInt(1,val); |
| 603 | } else { |
| 604 | Dest.IntVal = APInt(1, val); |
| 605 | } |
| 606 | |
| 607 | return Dest; |
| 608 | } |
| 609 | |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 610 | void Interpreter::visitFCmpInst(FCmpInst &I) { |
| 611 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 612 | Type *Ty = I.getOperand(0)->getType(); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 613 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 614 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 615 | GenericValue R; // Result |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 616 | |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 617 | switch (I.getPredicate()) { |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 618 | default: |
| 619 | dbgs() << "Don't know how to handle this FCmp predicate!\n-->" << I; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 620 | llvm_unreachable(nullptr); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 621 | break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 622 | case FCmpInst::FCMP_FALSE: R = executeFCMP_BOOL(Src1, Src2, Ty, false); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 623 | break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 624 | case FCmpInst::FCMP_TRUE: R = executeFCMP_BOOL(Src1, Src2, Ty, true); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 625 | break; |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 626 | case FCmpInst::FCMP_ORD: R = executeFCMP_ORD(Src1, Src2, Ty); break; |
| 627 | case FCmpInst::FCMP_UNO: R = executeFCMP_UNO(Src1, Src2, Ty); break; |
| 628 | case FCmpInst::FCMP_UEQ: R = executeFCMP_UEQ(Src1, Src2, Ty); break; |
| 629 | case FCmpInst::FCMP_OEQ: R = executeFCMP_OEQ(Src1, Src2, Ty); break; |
| 630 | case FCmpInst::FCMP_UNE: R = executeFCMP_UNE(Src1, Src2, Ty); break; |
| 631 | case FCmpInst::FCMP_ONE: R = executeFCMP_ONE(Src1, Src2, Ty); break; |
| 632 | case FCmpInst::FCMP_ULT: R = executeFCMP_ULT(Src1, Src2, Ty); break; |
| 633 | case FCmpInst::FCMP_OLT: R = executeFCMP_OLT(Src1, Src2, Ty); break; |
| 634 | case FCmpInst::FCMP_UGT: R = executeFCMP_UGT(Src1, Src2, Ty); break; |
| 635 | case FCmpInst::FCMP_OGT: R = executeFCMP_OGT(Src1, Src2, Ty); break; |
| 636 | case FCmpInst::FCMP_ULE: R = executeFCMP_ULE(Src1, Src2, Ty); break; |
| 637 | case FCmpInst::FCMP_OLE: R = executeFCMP_OLE(Src1, Src2, Ty); break; |
| 638 | case FCmpInst::FCMP_UGE: R = executeFCMP_UGE(Src1, Src2, Ty); break; |
| 639 | case FCmpInst::FCMP_OGE: R = executeFCMP_OGE(Src1, Src2, Ty); break; |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 640 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 641 | |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 642 | SetValue(&I, R, SF); |
| 643 | } |
| 644 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 645 | static GenericValue executeCmpInst(unsigned predicate, GenericValue Src1, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 646 | GenericValue Src2, Type *Ty) { |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 647 | GenericValue Result; |
| 648 | switch (predicate) { |
| 649 | case ICmpInst::ICMP_EQ: return executeICMP_EQ(Src1, Src2, Ty); |
| 650 | case ICmpInst::ICMP_NE: return executeICMP_NE(Src1, Src2, Ty); |
| 651 | case ICmpInst::ICMP_UGT: return executeICMP_UGT(Src1, Src2, Ty); |
| 652 | case ICmpInst::ICMP_SGT: return executeICMP_SGT(Src1, Src2, Ty); |
| 653 | case ICmpInst::ICMP_ULT: return executeICMP_ULT(Src1, Src2, Ty); |
| 654 | case ICmpInst::ICMP_SLT: return executeICMP_SLT(Src1, Src2, Ty); |
| 655 | case ICmpInst::ICMP_UGE: return executeICMP_UGE(Src1, Src2, Ty); |
| 656 | case ICmpInst::ICMP_SGE: return executeICMP_SGE(Src1, Src2, Ty); |
| 657 | case ICmpInst::ICMP_ULE: return executeICMP_ULE(Src1, Src2, Ty); |
| 658 | case ICmpInst::ICMP_SLE: return executeICMP_SLE(Src1, Src2, Ty); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 659 | case FCmpInst::FCMP_ORD: return executeFCMP_ORD(Src1, Src2, Ty); |
| 660 | case FCmpInst::FCMP_UNO: return executeFCMP_UNO(Src1, Src2, Ty); |
| 661 | case FCmpInst::FCMP_OEQ: return executeFCMP_OEQ(Src1, Src2, Ty); |
| 662 | case FCmpInst::FCMP_UEQ: return executeFCMP_UEQ(Src1, Src2, Ty); |
| 663 | case FCmpInst::FCMP_ONE: return executeFCMP_ONE(Src1, Src2, Ty); |
| 664 | case FCmpInst::FCMP_UNE: return executeFCMP_UNE(Src1, Src2, Ty); |
| 665 | case FCmpInst::FCMP_OLT: return executeFCMP_OLT(Src1, Src2, Ty); |
| 666 | case FCmpInst::FCMP_ULT: return executeFCMP_ULT(Src1, Src2, Ty); |
| 667 | case FCmpInst::FCMP_OGT: return executeFCMP_OGT(Src1, Src2, Ty); |
| 668 | case FCmpInst::FCMP_UGT: return executeFCMP_UGT(Src1, Src2, Ty); |
| 669 | case FCmpInst::FCMP_OLE: return executeFCMP_OLE(Src1, Src2, Ty); |
| 670 | case FCmpInst::FCMP_ULE: return executeFCMP_ULE(Src1, Src2, Ty); |
| 671 | case FCmpInst::FCMP_OGE: return executeFCMP_OGE(Src1, Src2, Ty); |
| 672 | case FCmpInst::FCMP_UGE: return executeFCMP_UGE(Src1, Src2, Ty); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 673 | case FCmpInst::FCMP_FALSE: return executeFCMP_BOOL(Src1, Src2, Ty, false); |
| 674 | case FCmpInst::FCMP_TRUE: return executeFCMP_BOOL(Src1, Src2, Ty, true); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 675 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 676 | dbgs() << "Unhandled Cmp predicate\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 677 | llvm_unreachable(nullptr); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 678 | } |
| 679 | } |
| 680 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 681 | void Interpreter::visitBinaryOperator(BinaryOperator &I) { |
| 682 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 683 | Type *Ty = I.getOperand(0)->getType(); |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 684 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 685 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 686 | GenericValue R; // Result |
| 687 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 688 | // First process vector operation |
| 689 | if (Ty->isVectorTy()) { |
| 690 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); |
| 691 | R.AggregateVal.resize(Src1.AggregateVal.size()); |
Nadav Rotem | 4e4d45e | 2013-04-12 22:02:26 +0000 | [diff] [blame] | 692 | |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 693 | // Macros to execute binary operation 'OP' over integer vectors |
| 694 | #define INTEGER_VECTOR_OPERATION(OP) \ |
| 695 | for (unsigned i = 0; i < R.AggregateVal.size(); ++i) \ |
| 696 | R.AggregateVal[i].IntVal = \ |
| 697 | Src1.AggregateVal[i].IntVal OP Src2.AggregateVal[i].IntVal; |
| 698 | |
| 699 | // Additional macros to execute binary operations udiv/sdiv/urem/srem since |
| 700 | // they have different notation. |
| 701 | #define INTEGER_VECTOR_FUNCTION(OP) \ |
| 702 | for (unsigned i = 0; i < R.AggregateVal.size(); ++i) \ |
| 703 | R.AggregateVal[i].IntVal = \ |
| 704 | Src1.AggregateVal[i].IntVal.OP(Src2.AggregateVal[i].IntVal); |
| 705 | |
| 706 | // Macros to execute binary operation 'OP' over floating point type TY |
| 707 | // (float or double) vectors |
| 708 | #define FLOAT_VECTOR_FUNCTION(OP, TY) \ |
| 709 | for (unsigned i = 0; i < R.AggregateVal.size(); ++i) \ |
| 710 | R.AggregateVal[i].TY = \ |
| 711 | Src1.AggregateVal[i].TY OP Src2.AggregateVal[i].TY; |
| 712 | |
| 713 | // Macros to choose appropriate TY: float or double and run operation |
| 714 | // execution |
| 715 | #define FLOAT_VECTOR_OP(OP) { \ |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 716 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) \ |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 717 | FLOAT_VECTOR_FUNCTION(OP, FloatVal) \ |
| 718 | else { \ |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 719 | if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) \ |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 720 | FLOAT_VECTOR_FUNCTION(OP, DoubleVal) \ |
| 721 | else { \ |
| 722 | dbgs() << "Unhandled type for OP instruction: " << *Ty << "\n"; \ |
| 723 | llvm_unreachable(0); \ |
| 724 | } \ |
| 725 | } \ |
| 726 | } |
| 727 | |
| 728 | switch(I.getOpcode()){ |
| 729 | default: |
| 730 | dbgs() << "Don't know how to handle this binary operator!\n-->" << I; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 731 | llvm_unreachable(nullptr); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 732 | break; |
| 733 | case Instruction::Add: INTEGER_VECTOR_OPERATION(+) break; |
| 734 | case Instruction::Sub: INTEGER_VECTOR_OPERATION(-) break; |
| 735 | case Instruction::Mul: INTEGER_VECTOR_OPERATION(*) break; |
| 736 | case Instruction::UDiv: INTEGER_VECTOR_FUNCTION(udiv) break; |
| 737 | case Instruction::SDiv: INTEGER_VECTOR_FUNCTION(sdiv) break; |
| 738 | case Instruction::URem: INTEGER_VECTOR_FUNCTION(urem) break; |
| 739 | case Instruction::SRem: INTEGER_VECTOR_FUNCTION(srem) break; |
| 740 | case Instruction::And: INTEGER_VECTOR_OPERATION(&) break; |
| 741 | case Instruction::Or: INTEGER_VECTOR_OPERATION(|) break; |
| 742 | case Instruction::Xor: INTEGER_VECTOR_OPERATION(^) break; |
| 743 | case Instruction::FAdd: FLOAT_VECTOR_OP(+) break; |
| 744 | case Instruction::FSub: FLOAT_VECTOR_OP(-) break; |
| 745 | case Instruction::FMul: FLOAT_VECTOR_OP(*) break; |
| 746 | case Instruction::FDiv: FLOAT_VECTOR_OP(/) break; |
| 747 | case Instruction::FRem: |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 748 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 749 | for (unsigned i = 0; i < R.AggregateVal.size(); ++i) |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 750 | R.AggregateVal[i].FloatVal = |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 751 | fmod(Src1.AggregateVal[i].FloatVal, Src2.AggregateVal[i].FloatVal); |
| 752 | else { |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 753 | if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 754 | for (unsigned i = 0; i < R.AggregateVal.size(); ++i) |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 755 | R.AggregateVal[i].DoubleVal = |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 756 | fmod(Src1.AggregateVal[i].DoubleVal, Src2.AggregateVal[i].DoubleVal); |
| 757 | else { |
| 758 | dbgs() << "Unhandled type for Rem instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 759 | llvm_unreachable(nullptr); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 760 | } |
| 761 | } |
| 762 | break; |
| 763 | } |
| 764 | } else { |
| 765 | switch (I.getOpcode()) { |
| 766 | default: |
| 767 | dbgs() << "Don't know how to handle this binary operator!\n-->" << I; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 768 | llvm_unreachable(nullptr); |
Nadav Rotem | be0e89d | 2013-04-26 20:19:41 +0000 | [diff] [blame] | 769 | break; |
| 770 | case Instruction::Add: R.IntVal = Src1.IntVal + Src2.IntVal; break; |
| 771 | case Instruction::Sub: R.IntVal = Src1.IntVal - Src2.IntVal; break; |
| 772 | case Instruction::Mul: R.IntVal = Src1.IntVal * Src2.IntVal; break; |
| 773 | case Instruction::FAdd: executeFAddInst(R, Src1, Src2, Ty); break; |
| 774 | case Instruction::FSub: executeFSubInst(R, Src1, Src2, Ty); break; |
| 775 | case Instruction::FMul: executeFMulInst(R, Src1, Src2, Ty); break; |
| 776 | case Instruction::FDiv: executeFDivInst(R, Src1, Src2, Ty); break; |
| 777 | case Instruction::FRem: executeFRemInst(R, Src1, Src2, Ty); break; |
| 778 | case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break; |
| 779 | case Instruction::SDiv: R.IntVal = Src1.IntVal.sdiv(Src2.IntVal); break; |
| 780 | case Instruction::URem: R.IntVal = Src1.IntVal.urem(Src2.IntVal); break; |
| 781 | case Instruction::SRem: R.IntVal = Src1.IntVal.srem(Src2.IntVal); break; |
| 782 | case Instruction::And: R.IntVal = Src1.IntVal & Src2.IntVal; break; |
| 783 | case Instruction::Or: R.IntVal = Src1.IntVal | Src2.IntVal; break; |
| 784 | case Instruction::Xor: R.IntVal = Src1.IntVal ^ Src2.IntVal; break; |
| 785 | } |
| 786 | } |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 787 | SetValue(&I, R, SF); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 788 | } |
| 789 | |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 790 | static GenericValue executeSelectInst(GenericValue Src1, GenericValue Src2, |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 791 | GenericValue Src3, Type *Ty) { |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 792 | GenericValue Dest; |
| 793 | if(Ty->isVectorTy()) { |
| 794 | assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); |
| 795 | assert(Src2.AggregateVal.size() == Src3.AggregateVal.size()); |
| 796 | Dest.AggregateVal.resize( Src1.AggregateVal.size() ); |
| 797 | for (size_t i = 0; i < Src1.AggregateVal.size(); ++i) |
| 798 | Dest.AggregateVal[i] = (Src1.AggregateVal[i].IntVal == 0) ? |
| 799 | Src3.AggregateVal[i] : Src2.AggregateVal[i]; |
| 800 | } else { |
| 801 | Dest = (Src1.IntVal == 0) ? Src3 : Src2; |
| 802 | } |
| 803 | return Dest; |
Chris Lattner | 2b2d7a9 | 2004-04-20 16:43:21 +0000 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | void Interpreter::visitSelectInst(SelectInst &I) { |
| 807 | ExecutionContext &SF = ECStack.back(); |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 808 | Type * Ty = I.getOperand(0)->getType(); |
Chris Lattner | 2b2d7a9 | 2004-04-20 16:43:21 +0000 | [diff] [blame] | 809 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 810 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 811 | GenericValue Src3 = getOperandValue(I.getOperand(2), SF); |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 812 | GenericValue R = executeSelectInst(Src1, Src2, Src3, Ty); |
Chris Lattner | 2b2d7a9 | 2004-04-20 16:43:21 +0000 | [diff] [blame] | 813 | SetValue(&I, R, SF); |
| 814 | } |
| 815 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 816 | //===----------------------------------------------------------------------===// |
| 817 | // Terminator Instruction Implementations |
| 818 | //===----------------------------------------------------------------------===// |
| 819 | |
Chris Lattner | 15157b8 | 2001-10-27 04:15:57 +0000 | [diff] [blame] | 820 | void Interpreter::exitCalled(GenericValue GV) { |
Brian Gaeke | 51f1007 | 2004-02-13 05:48:00 +0000 | [diff] [blame] | 821 | // runAtExitHandlers() assumes there are no stack frames, but |
| 822 | // if exit() was called, then it had a stack frame. Blow away |
| 823 | // the stack before interpreting atexit handlers. |
Chris Lattner | 0c778f7 | 2009-10-29 05:26:09 +0000 | [diff] [blame] | 824 | ECStack.clear(); |
| 825 | runAtExitHandlers(); |
| 826 | exit(GV.IntVal.zextOrTrunc(32).getZExtValue()); |
Chris Lattner | 15157b8 | 2001-10-27 04:15:57 +0000 | [diff] [blame] | 827 | } |
| 828 | |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 829 | /// Pop the last stack frame off of ECStack and then copy the result |
| 830 | /// back into the result variable if we are not returning void. The |
Jeff Cohen | 2439669 | 2006-02-07 05:29:44 +0000 | [diff] [blame] | 831 | /// result variable may be the ExitValue, or the Value of the calling |
Brian Gaeke | 85baf8c | 2003-11-07 20:44:58 +0000 | [diff] [blame] | 832 | /// CallInst if there was a previous stack frame. This method may |
| 833 | /// invalidate any ECStack iterators you have. This method also takes |
| 834 | /// care of switching to the normal destination BB, if we are returning |
| 835 | /// from an invoke. |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 836 | /// |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 837 | void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, |
Chris Lattner | 0c778f7 | 2009-10-29 05:26:09 +0000 | [diff] [blame] | 838 | GenericValue Result) { |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 839 | // Pop the current stack frame. |
| 840 | ECStack.pop_back(); |
| 841 | |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 842 | if (ECStack.empty()) { // Finished main. Put result into exit code... |
Dan Gohman | c61056a | 2010-06-18 02:01:10 +0000 | [diff] [blame] | 843 | if (RetTy && !RetTy->isVoidTy()) { // Nonvoid return type? |
Jeff Cohen | 2439669 | 2006-02-07 05:29:44 +0000 | [diff] [blame] | 844 | ExitValue = Result; // Capture the exit value of the program |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 845 | } else { |
Reid Spencer | ff38cf8 | 2007-06-01 22:23:29 +0000 | [diff] [blame] | 846 | memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 847 | } |
| 848 | } else { |
| 849 | // If we have a previous stack frame, and we have a previous call, |
| 850 | // fill in the return value... |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 851 | ExecutionContext &CallingSF = ECStack.back(); |
Brian Gaeke | 85baf8c | 2003-11-07 20:44:58 +0000 | [diff] [blame] | 852 | if (Instruction *I = CallingSF.Caller.getInstruction()) { |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 853 | // Save result... |
Benjamin Kramer | ccce8ba | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 854 | if (!CallingSF.Caller.getType()->isVoidTy()) |
Brian Gaeke | 85baf8c | 2003-11-07 20:44:58 +0000 | [diff] [blame] | 855 | SetValue(I, Result, CallingSF); |
| 856 | if (InvokeInst *II = dyn_cast<InvokeInst> (I)) |
| 857 | SwitchToNewBasicBlock (II->getNormalDest (), CallingSF); |
Brian Gaeke | 18b5957 | 2003-11-07 19:26:23 +0000 | [diff] [blame] | 858 | CallingSF.Caller = CallSite(); // We returned from the call... |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 859 | } |
| 860 | } |
| 861 | } |
| 862 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 863 | void Interpreter::visitReturnInst(ReturnInst &I) { |
| 864 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 865 | Type *RetTy = Type::getVoidTy(I.getContext()); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 866 | GenericValue Result; |
| 867 | |
| 868 | // Save away the return value... (if we are not 'ret void') |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 869 | if (I.getNumOperands()) { |
| 870 | RetTy = I.getReturnValue()->getType(); |
| 871 | Result = getOperandValue(I.getReturnValue(), SF); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 872 | } |
| 873 | |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 874 | popStackAndReturnValueToCaller(RetTy, Result); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Chris Lattner | 98e5414 | 2004-10-16 18:21:33 +0000 | [diff] [blame] | 877 | void Interpreter::visitUnreachableInst(UnreachableInst &I) { |
Chris Lattner | 2104b8d | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 878 | report_fatal_error("Program executed an 'unreachable' instruction!"); |
Chris Lattner | 98e5414 | 2004-10-16 18:21:33 +0000 | [diff] [blame] | 879 | } |
| 880 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 881 | void Interpreter::visitBranchInst(BranchInst &I) { |
| 882 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 883 | BasicBlock *Dest; |
| 884 | |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 885 | Dest = I.getSuccessor(0); // Uncond branches have a fixed dest... |
| 886 | if (!I.isUnconditional()) { |
| 887 | Value *Cond = I.getCondition(); |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 888 | if (getOperandValue(Cond, SF).IntVal == 0) // If false cond... |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 889 | Dest = I.getSuccessor(1); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 890 | } |
Chris Lattner | bd6771c | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 891 | SwitchToNewBasicBlock(Dest, SF); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 894 | void Interpreter::visitSwitchInst(SwitchInst &I) { |
| 895 | ExecutionContext &SF = ECStack.back(); |
Eli Friedman | 95031ed | 2011-09-29 20:21:17 +0000 | [diff] [blame] | 896 | Value* Cond = I.getCondition(); |
| 897 | Type *ElTy = Cond->getType(); |
| 898 | GenericValue CondVal = getOperandValue(Cond, SF); |
Chris Lattner | d215af0 | 2003-04-22 20:34:47 +0000 | [diff] [blame] | 899 | |
| 900 | // Check to see if any of the cases match... |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 901 | BasicBlock *Dest = nullptr; |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 902 | for (auto Case : I.cases()) { |
| 903 | GenericValue CaseVal = getOperandValue(Case.getCaseValue(), SF); |
Bob Wilson | e407736 | 2013-09-09 19:14:35 +0000 | [diff] [blame] | 904 | if (executeICMP_EQ(CondVal, CaseVal, ElTy).IntVal != 0) { |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 905 | Dest = cast<BasicBlock>(Case.getCaseSuccessor()); |
Bob Wilson | e407736 | 2013-09-09 19:14:35 +0000 | [diff] [blame] | 906 | break; |
Chris Lattner | d215af0 | 2003-04-22 20:34:47 +0000 | [diff] [blame] | 907 | } |
Eli Friedman | 95031ed | 2011-09-29 20:21:17 +0000 | [diff] [blame] | 908 | } |
Chris Lattner | d215af0 | 2003-04-22 20:34:47 +0000 | [diff] [blame] | 909 | if (!Dest) Dest = I.getDefaultDest(); // No cases matched: use default |
Chris Lattner | bd6771c | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 910 | SwitchToNewBasicBlock(Dest, SF); |
| 911 | } |
| 912 | |
Chris Lattner | 0c778f7 | 2009-10-29 05:26:09 +0000 | [diff] [blame] | 913 | void Interpreter::visitIndirectBrInst(IndirectBrInst &I) { |
| 914 | ExecutionContext &SF = ECStack.back(); |
| 915 | void *Dest = GVTOP(getOperandValue(I.getAddress(), SF)); |
| 916 | SwitchToNewBasicBlock((BasicBlock*)Dest, SF); |
| 917 | } |
| 918 | |
| 919 | |
Chris Lattner | bd6771c | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 920 | // SwitchToNewBasicBlock - This method is used to jump to a new basic block. |
| 921 | // This function handles the actual updating of block and instruction iterators |
| 922 | // as well as execution of all of the PHI nodes in the destination block. |
| 923 | // |
| 924 | // This method does this because all of the PHI nodes must be executed |
| 925 | // atomically, reading their inputs before any of the results are updated. Not |
| 926 | // doing this can cause problems if the PHI nodes depend on other PHI nodes for |
| 927 | // their inputs. If the input PHI node is updated before it is read, incorrect |
| 928 | // results can happen. Thus we use a two phase approach. |
| 929 | // |
| 930 | void Interpreter::SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF){ |
| 931 | BasicBlock *PrevBB = SF.CurBB; // Remember where we came from... |
| 932 | SF.CurBB = Dest; // Update CurBB to branch destination |
| 933 | SF.CurInst = SF.CurBB->begin(); // Update new instruction ptr... |
| 934 | |
| 935 | if (!isa<PHINode>(SF.CurInst)) return; // Nothing fancy to do |
| 936 | |
| 937 | // Loop over all of the PHI nodes in the current block, reading their inputs. |
| 938 | std::vector<GenericValue> ResultValues; |
| 939 | |
| 940 | for (; PHINode *PN = dyn_cast<PHINode>(SF.CurInst); ++SF.CurInst) { |
| 941 | // Search for the value corresponding to this previous bb... |
| 942 | int i = PN->getBasicBlockIndex(PrevBB); |
| 943 | assert(i != -1 && "PHINode doesn't contain entry for predecessor??"); |
| 944 | Value *IncomingValue = PN->getIncomingValue(i); |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 945 | |
Chris Lattner | bd6771c | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 946 | // Save the incoming value for this PHI node... |
| 947 | ResultValues.push_back(getOperandValue(IncomingValue, SF)); |
| 948 | } |
| 949 | |
| 950 | // Now loop over all of the PHI nodes setting their values... |
| 951 | SF.CurInst = SF.CurBB->begin(); |
Reid Spencer | 6614946 | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 952 | for (unsigned i = 0; isa<PHINode>(SF.CurInst); ++SF.CurInst, ++i) { |
| 953 | PHINode *PN = cast<PHINode>(SF.CurInst); |
Chris Lattner | bd6771c | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 954 | SetValue(PN, ResultValues[i], SF); |
Reid Spencer | 6614946 | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 955 | } |
Chris Lattner | d215af0 | 2003-04-22 20:34:47 +0000 | [diff] [blame] | 956 | } |
| 957 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 958 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 959 | // Memory Instruction Implementations |
| 960 | //===----------------------------------------------------------------------===// |
| 961 | |
Victor Hernandez | 8acf295 | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 962 | void Interpreter::visitAllocaInst(AllocaInst &I) { |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 963 | ExecutionContext &SF = ECStack.back(); |
| 964 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 965 | Type *Ty = I.getType()->getElementType(); // Type to be allocated |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 966 | |
Chris Lattner | 0ebb793 | 2002-04-28 21:57:33 +0000 | [diff] [blame] | 967 | // Get the number of elements being allocated by the array... |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 968 | unsigned NumElements = |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 969 | getOperandValue(I.getOperand(0), SF).IntVal.getZExtValue(); |
| 970 | |
Mehdi Amini | a3fcefb | 2015-07-16 16:34:23 +0000 | [diff] [blame] | 971 | unsigned TypeSize = (size_t)getDataLayout().getTypeAllocSize(Ty); |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 972 | |
Gabor Greif | cb6832e | 2007-10-11 19:40:35 +0000 | [diff] [blame] | 973 | // Avoid malloc-ing zero bytes, use max()... |
| 974 | unsigned MemToAlloc = std::max(1U, NumElements * TypeSize); |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 975 | |
| 976 | // Allocate enough memory to hold the type... |
Serge Pavlov | 76d8cce | 2018-02-20 05:41:26 +0000 | [diff] [blame] | 977 | void *Memory = safe_malloc(MemToAlloc); |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 978 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 979 | LLVM_DEBUG(dbgs() << "Allocated Type: " << *Ty << " (" << TypeSize |
| 980 | << " bytes) x " << NumElements << " (Total: " << MemToAlloc |
| 981 | << ") at " << uintptr_t(Memory) << '\n'); |
Chris Lattner | fb55ba0 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 982 | |
Chris Lattner | a0d7b08 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 983 | GenericValue Result = PTOGV(Memory); |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 984 | assert(Result.PointerVal && "Null pointer returned by malloc!"); |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 985 | SetValue(&I, Result, SF); |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 986 | |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 987 | if (I.getOpcode() == Instruction::Alloca) |
Chris Lattner | fb55ba0 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 988 | ECStack.back().Allocas.add(Memory); |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 991 | // getElementOffset - The workhorse for getelementptr. |
Chris Lattner | 05fbeed | 2001-10-29 19:32:19 +0000 | [diff] [blame] | 992 | // |
Chris Lattner | f078808 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 993 | GenericValue Interpreter::executeGEPOperation(Value *Ptr, gep_type_iterator I, |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 994 | gep_type_iterator E, |
| 995 | ExecutionContext &SF) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 996 | assert(Ptr->getType()->isPointerTy() && |
Chris Lattner | 05fbeed | 2001-10-29 19:32:19 +0000 | [diff] [blame] | 997 | "Cannot getElementOffset of a nonpointer type!"); |
| 998 | |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 999 | uint64_t Total = 0; |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1000 | |
| 1001 | for (; I != E; ++I) { |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 1002 | if (StructType *STy = I.getStructTypeOrNull()) { |
Mehdi Amini | a3fcefb | 2015-07-16 16:34:23 +0000 | [diff] [blame] | 1003 | const StructLayout *SLO = getDataLayout().getStructLayout(STy); |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 1004 | |
Reid Spencer | e0fc4df | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 1005 | const ConstantInt *CPU = cast<ConstantInt>(I.getOperand()); |
| 1006 | unsigned Index = unsigned(CPU->getZExtValue()); |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 1007 | |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1008 | Total += SLO->getElementOffset(Index); |
Chris Lattner | f078808 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1009 | } else { |
Chris Lattner | 13b3e5b | 2003-02-25 21:14:59 +0000 | [diff] [blame] | 1010 | // Get the index number for the array... which must be long type... |
Chris Lattner | f078808 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1011 | GenericValue IdxGV = getOperandValue(I.getOperand(), SF); |
| 1012 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1013 | int64_t Idx; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 1014 | unsigned BitWidth = |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1015 | cast<IntegerType>(I.getOperand()->getType())->getBitWidth(); |
Reid Spencer | fab44b6 | 2007-01-18 01:25:42 +0000 | [diff] [blame] | 1016 | if (BitWidth == 32) |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1017 | Idx = (int64_t)(int32_t)IdxGV.IntVal.getZExtValue(); |
Chris Lattner | 982e850 | 2008-04-06 21:50:58 +0000 | [diff] [blame] | 1018 | else { |
| 1019 | assert(BitWidth == 64 && "Invalid index type for getelementptr"); |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1020 | Idx = (int64_t)IdxGV.IntVal.getZExtValue(); |
Chris Lattner | 982e850 | 2008-04-06 21:50:58 +0000 | [diff] [blame] | 1021 | } |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 1022 | Total += getDataLayout().getTypeAllocSize(I.getIndexedType()) * Idx; |
Brian Gaeke | e278c22 | 2003-10-24 19:59:01 +0000 | [diff] [blame] | 1023 | } |
Chris Lattner | 05fbeed | 2001-10-29 19:32:19 +0000 | [diff] [blame] | 1024 | } |
| 1025 | |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1026 | GenericValue Result; |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1027 | Result.PointerVal = ((char*)getOperandValue(Ptr, SF).PointerVal) + Total; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1028 | LLVM_DEBUG(dbgs() << "GEP Index " << Total << " bytes.\n"); |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1029 | return Result; |
Chris Lattner | 05fbeed | 2001-10-29 19:32:19 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 1032 | void Interpreter::visitGetElementPtrInst(GetElementPtrInst &I) { |
| 1033 | ExecutionContext &SF = ECStack.back(); |
Owen Anderson | 455df54 | 2009-06-26 16:46:15 +0000 | [diff] [blame] | 1034 | SetValue(&I, executeGEPOperation(I.getPointerOperand(), |
Chris Lattner | f078808 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1035 | gep_type_begin(I), gep_type_end(I), SF), SF); |
Chris Lattner | 05fbeed | 2001-10-29 19:32:19 +0000 | [diff] [blame] | 1036 | } |
| 1037 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 1038 | void Interpreter::visitLoadInst(LoadInst &I) { |
| 1039 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 1040 | GenericValue SRC = getOperandValue(I.getPointerOperand(), SF); |
Chris Lattner | a0d7b08 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 1041 | GenericValue *Ptr = (GenericValue*)GVTOP(SRC); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1042 | GenericValue Result; |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1043 | LoadValueFromMemory(Result, Ptr, I.getType()); |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 1044 | SetValue(&I, Result, SF); |
Chris Lattner | 2528d63 | 2008-07-08 17:25:49 +0000 | [diff] [blame] | 1045 | if (I.isVolatile() && PrintVolatile) |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 1046 | dbgs() << "Volatile load " << I; |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 1049 | void Interpreter::visitStoreInst(StoreInst &I) { |
| 1050 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | 6a1a65f | 2002-10-15 20:34:05 +0000 | [diff] [blame] | 1051 | GenericValue Val = getOperandValue(I.getOperand(0), SF); |
| 1052 | GenericValue SRC = getOperandValue(I.getPointerOperand(), SF); |
Chris Lattner | a0d7b08 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 1053 | StoreValueToMemory(Val, (GenericValue *)GVTOP(SRC), |
Chris Lattner | 7fe1f7c | 2002-10-26 01:57:15 +0000 | [diff] [blame] | 1054 | I.getOperand(0)->getType()); |
Chris Lattner | 2528d63 | 2008-07-08 17:25:49 +0000 | [diff] [blame] | 1055 | if (I.isVolatile() && PrintVolatile) |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 1056 | dbgs() << "Volatile store: " << I; |
Chris Lattner | 6a1a65f | 2002-10-15 20:34:05 +0000 | [diff] [blame] | 1057 | } |
| 1058 | |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 1059 | //===----------------------------------------------------------------------===// |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1060 | // Miscellaneous Instruction Implementations |
| 1061 | //===----------------------------------------------------------------------===// |
| 1062 | |
Brian Gaeke | a6454d35 | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 1063 | void Interpreter::visitCallSite(CallSite CS) { |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 1064 | ExecutionContext &SF = ECStack.back(); |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1065 | |
| 1066 | // Check to see if this is an intrinsic function call... |
Reid Spencer | c57be6c | 2007-04-16 21:50:40 +0000 | [diff] [blame] | 1067 | Function *F = CS.getCalledFunction(); |
Chris Lattner | 0c778f7 | 2009-10-29 05:26:09 +0000 | [diff] [blame] | 1068 | if (F && F->isDeclaration()) |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1069 | switch (F->getIntrinsicID()) { |
Brian Gaeke | 1c0133f | 2004-01-14 06:02:53 +0000 | [diff] [blame] | 1070 | case Intrinsic::not_intrinsic: |
| 1071 | break; |
Chris Lattner | 071a5e5 | 2004-03-13 00:24:00 +0000 | [diff] [blame] | 1072 | case Intrinsic::vastart: { // va_start |
Brian Gaeke | 7b4be13 | 2004-02-25 23:01:48 +0000 | [diff] [blame] | 1073 | GenericValue ArgIndex; |
| 1074 | ArgIndex.UIntPairVal.first = ECStack.size() - 1; |
| 1075 | ArgIndex.UIntPairVal.second = 0; |
| 1076 | SetValue(CS.getInstruction(), ArgIndex, SF); |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1077 | return; |
Brian Gaeke | 7b4be13 | 2004-02-25 23:01:48 +0000 | [diff] [blame] | 1078 | } |
Chris Lattner | 071a5e5 | 2004-03-13 00:24:00 +0000 | [diff] [blame] | 1079 | case Intrinsic::vaend: // va_end is a noop for the interpreter |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1080 | return; |
Chris Lattner | 071a5e5 | 2004-03-13 00:24:00 +0000 | [diff] [blame] | 1081 | case Intrinsic::vacopy: // va_copy: dest = src |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1082 | SetValue(CS.getInstruction(), getOperandValue(*CS.arg_begin(), SF), SF); |
| 1083 | return; |
| 1084 | default: |
Brian Gaeke | 1c0133f | 2004-01-14 06:02:53 +0000 | [diff] [blame] | 1085 | // If it is an unknown intrinsic function, use the intrinsic lowering |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1086 | // class to transform it into hopefully tasty LLVM code. |
| 1087 | // |
Chris Lattner | d9b7511 | 2007-04-17 17:38:28 +0000 | [diff] [blame] | 1088 | BasicBlock::iterator me(CS.getInstruction()); |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1089 | BasicBlock *Parent = CS.getInstruction()->getParent(); |
Chris Lattner | d9b7511 | 2007-04-17 17:38:28 +0000 | [diff] [blame] | 1090 | bool atBegin(Parent->begin() == me); |
| 1091 | if (!atBegin) |
| 1092 | --me; |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1093 | IL->LowerIntrinsicCall(cast<CallInst>(CS.getInstruction())); |
| 1094 | |
| 1095 | // Restore the CurInst pointer to the first instruction newly inserted, if |
| 1096 | // any. |
Chris Lattner | d9b7511 | 2007-04-17 17:38:28 +0000 | [diff] [blame] | 1097 | if (atBegin) { |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1098 | SF.CurInst = Parent->begin(); |
| 1099 | } else { |
Chris Lattner | d9b7511 | 2007-04-17 17:38:28 +0000 | [diff] [blame] | 1100 | SF.CurInst = me; |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1101 | ++SF.CurInst; |
| 1102 | } |
Brian Gaeke | ad373c8 | 2004-04-23 18:05:28 +0000 | [diff] [blame] | 1103 | return; |
Chris Lattner | c8c6c03 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
Reid Spencer | c57be6c | 2007-04-16 21:50:40 +0000 | [diff] [blame] | 1106 | |
Brian Gaeke | a6454d35 | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 1107 | SF.Caller = CS; |
Chris Lattner | aee56b8 | 2003-04-22 21:22:33 +0000 | [diff] [blame] | 1108 | std::vector<GenericValue> ArgVals; |
Brian Gaeke | a6d48e4 | 2003-11-07 19:59:08 +0000 | [diff] [blame] | 1109 | const unsigned NumArgs = SF.Caller.arg_size(); |
| 1110 | ArgVals.reserve(NumArgs); |
Reid Spencer | c57be6c | 2007-04-16 21:50:40 +0000 | [diff] [blame] | 1111 | uint16_t pNum = 1; |
Brian Gaeke | a6d48e4 | 2003-11-07 19:59:08 +0000 | [diff] [blame] | 1112 | for (CallSite::arg_iterator i = SF.Caller.arg_begin(), |
Reid Spencer | c57be6c | 2007-04-16 21:50:40 +0000 | [diff] [blame] | 1113 | e = SF.Caller.arg_end(); i != e; ++i, ++pNum) { |
Brian Gaeke | a6d48e4 | 2003-11-07 19:59:08 +0000 | [diff] [blame] | 1114 | Value *V = *i; |
| 1115 | ArgVals.push_back(getOperandValue(V, SF)); |
Chris Lattner | 4e7aa44 | 2003-01-13 00:58:52 +0000 | [diff] [blame] | 1116 | } |
Chris Lattner | 676d411 | 2001-09-10 04:49:44 +0000 | [diff] [blame] | 1117 | |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 1118 | // To handle indirect calls, we must get the pointer value from the argument |
Chris Lattner | 62b7fd1 | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 1119 | // and treat it as a function pointer. |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 1120 | GenericValue SRC = getOperandValue(SF.Caller.getCalledValue(), SF); |
Chris Lattner | 470754e | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 1121 | callFunction((Function*)GVTOP(SRC), ArgVals); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 1124 | // auxiliary function for shift operations |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1125 | static unsigned getShiftAmount(uint64_t orgShiftAmount, |
| 1126 | llvm::APInt valueToShift) { |
| 1127 | unsigned valueWidth = valueToShift.getBitWidth(); |
| 1128 | if (orgShiftAmount < (uint64_t)valueWidth) |
| 1129 | return orgShiftAmount; |
| 1130 | // according to the llvm documentation, if orgShiftAmount > valueWidth, |
| 1131 | // the result is undfeined. but we do shift by this rule: |
| 1132 | return (NextPowerOf2(valueWidth-1) - 1) & orgShiftAmount; |
| 1133 | } |
| 1134 | |
| 1135 | |
Reid Spencer | 2341c22 | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1136 | void Interpreter::visitShl(BinaryOperator &I) { |
Brian Gaeke | 5a8ec7d | 2003-12-11 00:22:59 +0000 | [diff] [blame] | 1137 | ExecutionContext &SF = ECStack.back(); |
Brian Gaeke | 5a8ec7d | 2003-12-11 00:22:59 +0000 | [diff] [blame] | 1138 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1139 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1140 | GenericValue Dest; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1141 | Type *Ty = I.getType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1142 | |
| 1143 | if (Ty->isVectorTy()) { |
| 1144 | uint32_t src1Size = uint32_t(Src1.AggregateVal.size()); |
| 1145 | assert(src1Size == Src2.AggregateVal.size()); |
| 1146 | for (unsigned i = 0; i < src1Size; i++) { |
| 1147 | GenericValue Result; |
| 1148 | uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); |
| 1149 | llvm::APInt valueToShift = Src1.AggregateVal[i].IntVal; |
| 1150 | Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); |
| 1151 | Dest.AggregateVal.push_back(Result); |
| 1152 | } |
| 1153 | } else { |
| 1154 | // scalar |
| 1155 | uint64_t shiftAmount = Src2.IntVal.getZExtValue(); |
| 1156 | llvm::APInt valueToShift = Src1.IntVal; |
| 1157 | Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); |
| 1158 | } |
| 1159 | |
Brian Gaeke | 5a8ec7d | 2003-12-11 00:22:59 +0000 | [diff] [blame] | 1160 | SetValue(&I, Dest, SF); |
| 1161 | } |
| 1162 | |
Reid Spencer | 2341c22 | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1163 | void Interpreter::visitLShr(BinaryOperator &I) { |
Brian Gaeke | 5a8ec7d | 2003-12-11 00:22:59 +0000 | [diff] [blame] | 1164 | ExecutionContext &SF = ECStack.back(); |
Brian Gaeke | 5a8ec7d | 2003-12-11 00:22:59 +0000 | [diff] [blame] | 1165 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1166 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1167 | GenericValue Dest; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1168 | Type *Ty = I.getType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1169 | |
| 1170 | if (Ty->isVectorTy()) { |
| 1171 | uint32_t src1Size = uint32_t(Src1.AggregateVal.size()); |
| 1172 | assert(src1Size == Src2.AggregateVal.size()); |
| 1173 | for (unsigned i = 0; i < src1Size; i++) { |
| 1174 | GenericValue Result; |
| 1175 | uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); |
| 1176 | llvm::APInt valueToShift = Src1.AggregateVal[i].IntVal; |
| 1177 | Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); |
| 1178 | Dest.AggregateVal.push_back(Result); |
| 1179 | } |
| 1180 | } else { |
| 1181 | // scalar |
| 1182 | uint64_t shiftAmount = Src2.IntVal.getZExtValue(); |
| 1183 | llvm::APInt valueToShift = Src1.IntVal; |
| 1184 | Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); |
| 1185 | } |
| 1186 | |
Reid Spencer | fdff938 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 1187 | SetValue(&I, Dest, SF); |
| 1188 | } |
| 1189 | |
Reid Spencer | 2341c22 | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1190 | void Interpreter::visitAShr(BinaryOperator &I) { |
Reid Spencer | fdff938 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 1191 | ExecutionContext &SF = ECStack.back(); |
Reid Spencer | fdff938 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 1192 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1193 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
Chris Lattner | 762edbc | 2009-01-16 20:17:02 +0000 | [diff] [blame] | 1194 | GenericValue Dest; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1195 | Type *Ty = I.getType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1196 | |
| 1197 | if (Ty->isVectorTy()) { |
| 1198 | size_t src1Size = Src1.AggregateVal.size(); |
| 1199 | assert(src1Size == Src2.AggregateVal.size()); |
| 1200 | for (unsigned i = 0; i < src1Size; i++) { |
| 1201 | GenericValue Result; |
| 1202 | uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); |
| 1203 | llvm::APInt valueToShift = Src1.AggregateVal[i].IntVal; |
| 1204 | Result.IntVal = valueToShift.ashr(getShiftAmount(shiftAmount, valueToShift)); |
| 1205 | Dest.AggregateVal.push_back(Result); |
| 1206 | } |
| 1207 | } else { |
| 1208 | // scalar |
| 1209 | uint64_t shiftAmount = Src2.IntVal.getZExtValue(); |
| 1210 | llvm::APInt valueToShift = Src1.IntVal; |
| 1211 | Dest.IntVal = valueToShift.ashr(getShiftAmount(shiftAmount, valueToShift)); |
| 1212 | } |
| 1213 | |
Chris Lattner | 7076ff2 | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 1214 | SetValue(&I, Dest, SF); |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1217 | GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1218 | ExecutionContext &SF) { |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1219 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1220 | Type *SrcTy = SrcVal->getType(); |
| 1221 | if (SrcTy->isVectorTy()) { |
| 1222 | Type *DstVecTy = DstTy->getScalarType(); |
| 1223 | unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); |
| 1224 | unsigned NumElts = Src.AggregateVal.size(); |
| 1225 | // the sizes of src and dst vectors must be equal |
| 1226 | Dest.AggregateVal.resize(NumElts); |
| 1227 | for (unsigned i = 0; i < NumElts; i++) |
| 1228 | Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.trunc(DBitWidth); |
| 1229 | } else { |
| 1230 | IntegerType *DITy = cast<IntegerType>(DstTy); |
| 1231 | unsigned DBitWidth = DITy->getBitWidth(); |
| 1232 | Dest.IntVal = Src.IntVal.trunc(DBitWidth); |
| 1233 | } |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1234 | return Dest; |
Chris Lattner | 2c1a98e | 2001-08-27 05:16:50 +0000 | [diff] [blame] | 1235 | } |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1236 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1237 | GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1238 | ExecutionContext &SF) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1239 | Type *SrcTy = SrcVal->getType(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1240 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1241 | if (SrcTy->isVectorTy()) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1242 | Type *DstVecTy = DstTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1243 | unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); |
| 1244 | unsigned size = Src.AggregateVal.size(); |
| 1245 | // the sizes of src and dst vectors must be equal. |
| 1246 | Dest.AggregateVal.resize(size); |
| 1247 | for (unsigned i = 0; i < size; i++) |
| 1248 | Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.sext(DBitWidth); |
| 1249 | } else { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1250 | auto *DITy = cast<IntegerType>(DstTy); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1251 | unsigned DBitWidth = DITy->getBitWidth(); |
| 1252 | Dest.IntVal = Src.IntVal.sext(DBitWidth); |
| 1253 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1254 | return Dest; |
| 1255 | } |
| 1256 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1257 | GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1258 | ExecutionContext &SF) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1259 | Type *SrcTy = SrcVal->getType(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1260 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1261 | if (SrcTy->isVectorTy()) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1262 | Type *DstVecTy = DstTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1263 | unsigned DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); |
| 1264 | |
| 1265 | unsigned size = Src.AggregateVal.size(); |
| 1266 | // the sizes of src and dst vectors must be equal. |
| 1267 | Dest.AggregateVal.resize(size); |
| 1268 | for (unsigned i = 0; i < size; i++) |
| 1269 | Dest.AggregateVal[i].IntVal = Src.AggregateVal[i].IntVal.zext(DBitWidth); |
| 1270 | } else { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1271 | auto *DITy = cast<IntegerType>(DstTy); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1272 | unsigned DBitWidth = DITy->getBitWidth(); |
| 1273 | Dest.IntVal = Src.IntVal.zext(DBitWidth); |
| 1274 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1275 | return Dest; |
| 1276 | } |
| 1277 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1278 | GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1279 | ExecutionContext &SF) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1280 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1281 | |
| 1282 | if (SrcVal->getType()->getTypeID() == Type::VectorTyID) { |
| 1283 | assert(SrcVal->getType()->getScalarType()->isDoubleTy() && |
| 1284 | DstTy->getScalarType()->isFloatTy() && |
| 1285 | "Invalid FPTrunc instruction"); |
| 1286 | |
| 1287 | unsigned size = Src.AggregateVal.size(); |
| 1288 | // the sizes of src and dst vectors must be equal. |
| 1289 | Dest.AggregateVal.resize(size); |
| 1290 | for (unsigned i = 0; i < size; i++) |
| 1291 | Dest.AggregateVal[i].FloatVal = (float)Src.AggregateVal[i].DoubleVal; |
| 1292 | } else { |
| 1293 | assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() && |
| 1294 | "Invalid FPTrunc instruction"); |
| 1295 | Dest.FloatVal = (float)Src.DoubleVal; |
| 1296 | } |
| 1297 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1298 | return Dest; |
| 1299 | } |
| 1300 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1301 | GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1302 | ExecutionContext &SF) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1303 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1304 | |
| 1305 | if (SrcVal->getType()->getTypeID() == Type::VectorTyID) { |
| 1306 | assert(SrcVal->getType()->getScalarType()->isFloatTy() && |
| 1307 | DstTy->getScalarType()->isDoubleTy() && "Invalid FPExt instruction"); |
| 1308 | |
| 1309 | unsigned size = Src.AggregateVal.size(); |
| 1310 | // the sizes of src and dst vectors must be equal. |
| 1311 | Dest.AggregateVal.resize(size); |
| 1312 | for (unsigned i = 0; i < size; i++) |
| 1313 | Dest.AggregateVal[i].DoubleVal = (double)Src.AggregateVal[i].FloatVal; |
| 1314 | } else { |
| 1315 | assert(SrcVal->getType()->isFloatTy() && DstTy->isDoubleTy() && |
| 1316 | "Invalid FPExt instruction"); |
| 1317 | Dest.DoubleVal = (double)Src.FloatVal; |
| 1318 | } |
| 1319 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1320 | return Dest; |
| 1321 | } |
| 1322 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1323 | GenericValue Interpreter::executeFPToUIInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1324 | ExecutionContext &SF) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1325 | Type *SrcTy = SrcVal->getType(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1326 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1327 | |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1328 | if (SrcTy->getTypeID() == Type::VectorTyID) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1329 | Type *DstVecTy = DstTy->getScalarType(); |
| 1330 | Type *SrcVecTy = SrcTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1331 | uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); |
| 1332 | unsigned size = Src.AggregateVal.size(); |
| 1333 | // the sizes of src and dst vectors must be equal. |
| 1334 | Dest.AggregateVal.resize(size); |
| 1335 | |
| 1336 | if (SrcVecTy->getTypeID() == Type::FloatTyID) { |
| 1337 | assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToUI instruction"); |
| 1338 | for (unsigned i = 0; i < size; i++) |
| 1339 | Dest.AggregateVal[i].IntVal = APIntOps::RoundFloatToAPInt( |
| 1340 | Src.AggregateVal[i].FloatVal, DBitWidth); |
| 1341 | } else { |
| 1342 | for (unsigned i = 0; i < size; i++) |
| 1343 | Dest.AggregateVal[i].IntVal = APIntOps::RoundDoubleToAPInt( |
| 1344 | Src.AggregateVal[i].DoubleVal, DBitWidth); |
| 1345 | } |
| 1346 | } else { |
| 1347 | // scalar |
| 1348 | uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); |
| 1349 | assert(SrcTy->isFloatingPointTy() && "Invalid FPToUI instruction"); |
| 1350 | |
| 1351 | if (SrcTy->getTypeID() == Type::FloatTyID) |
| 1352 | Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); |
| 1353 | else { |
| 1354 | Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); |
| 1355 | } |
| 1356 | } |
| 1357 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1358 | return Dest; |
| 1359 | } |
| 1360 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1361 | GenericValue Interpreter::executeFPToSIInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1362 | ExecutionContext &SF) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1363 | Type *SrcTy = SrcVal->getType(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1364 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1365 | |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1366 | if (SrcTy->getTypeID() == Type::VectorTyID) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1367 | Type *DstVecTy = DstTy->getScalarType(); |
| 1368 | Type *SrcVecTy = SrcTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1369 | uint32_t DBitWidth = cast<IntegerType>(DstVecTy)->getBitWidth(); |
| 1370 | unsigned size = Src.AggregateVal.size(); |
| 1371 | // the sizes of src and dst vectors must be equal |
| 1372 | Dest.AggregateVal.resize(size); |
| 1373 | |
| 1374 | if (SrcVecTy->getTypeID() == Type::FloatTyID) { |
| 1375 | assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToSI instruction"); |
| 1376 | for (unsigned i = 0; i < size; i++) |
| 1377 | Dest.AggregateVal[i].IntVal = APIntOps::RoundFloatToAPInt( |
| 1378 | Src.AggregateVal[i].FloatVal, DBitWidth); |
| 1379 | } else { |
| 1380 | for (unsigned i = 0; i < size; i++) |
| 1381 | Dest.AggregateVal[i].IntVal = APIntOps::RoundDoubleToAPInt( |
| 1382 | Src.AggregateVal[i].DoubleVal, DBitWidth); |
| 1383 | } |
| 1384 | } else { |
| 1385 | // scalar |
| 1386 | unsigned DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); |
| 1387 | assert(SrcTy->isFloatingPointTy() && "Invalid FPToSI instruction"); |
| 1388 | |
| 1389 | if (SrcTy->getTypeID() == Type::FloatTyID) |
| 1390 | Dest.IntVal = APIntOps::RoundFloatToAPInt(Src.FloatVal, DBitWidth); |
| 1391 | else { |
| 1392 | Dest.IntVal = APIntOps::RoundDoubleToAPInt(Src.DoubleVal, DBitWidth); |
| 1393 | } |
| 1394 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1395 | return Dest; |
| 1396 | } |
| 1397 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1398 | GenericValue Interpreter::executeUIToFPInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1399 | ExecutionContext &SF) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1400 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1401 | |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1402 | if (SrcVal->getType()->getTypeID() == Type::VectorTyID) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1403 | Type *DstVecTy = DstTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1404 | unsigned size = Src.AggregateVal.size(); |
| 1405 | // the sizes of src and dst vectors must be equal |
| 1406 | Dest.AggregateVal.resize(size); |
| 1407 | |
| 1408 | if (DstVecTy->getTypeID() == Type::FloatTyID) { |
| 1409 | assert(DstVecTy->isFloatingPointTy() && "Invalid UIToFP instruction"); |
| 1410 | for (unsigned i = 0; i < size; i++) |
| 1411 | Dest.AggregateVal[i].FloatVal = |
| 1412 | APIntOps::RoundAPIntToFloat(Src.AggregateVal[i].IntVal); |
| 1413 | } else { |
| 1414 | for (unsigned i = 0; i < size; i++) |
| 1415 | Dest.AggregateVal[i].DoubleVal = |
| 1416 | APIntOps::RoundAPIntToDouble(Src.AggregateVal[i].IntVal); |
| 1417 | } |
| 1418 | } else { |
| 1419 | // scalar |
| 1420 | assert(DstTy->isFloatingPointTy() && "Invalid UIToFP instruction"); |
| 1421 | if (DstTy->getTypeID() == Type::FloatTyID) |
| 1422 | Dest.FloatVal = APIntOps::RoundAPIntToFloat(Src.IntVal); |
| 1423 | else { |
| 1424 | Dest.DoubleVal = APIntOps::RoundAPIntToDouble(Src.IntVal); |
| 1425 | } |
| 1426 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1427 | return Dest; |
| 1428 | } |
| 1429 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1430 | GenericValue Interpreter::executeSIToFPInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1431 | ExecutionContext &SF) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1432 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1433 | |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1434 | if (SrcVal->getType()->getTypeID() == Type::VectorTyID) { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1435 | Type *DstVecTy = DstTy->getScalarType(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1436 | unsigned size = Src.AggregateVal.size(); |
| 1437 | // the sizes of src and dst vectors must be equal |
| 1438 | Dest.AggregateVal.resize(size); |
| 1439 | |
| 1440 | if (DstVecTy->getTypeID() == Type::FloatTyID) { |
| 1441 | assert(DstVecTy->isFloatingPointTy() && "Invalid SIToFP instruction"); |
| 1442 | for (unsigned i = 0; i < size; i++) |
| 1443 | Dest.AggregateVal[i].FloatVal = |
| 1444 | APIntOps::RoundSignedAPIntToFloat(Src.AggregateVal[i].IntVal); |
| 1445 | } else { |
| 1446 | for (unsigned i = 0; i < size; i++) |
| 1447 | Dest.AggregateVal[i].DoubleVal = |
| 1448 | APIntOps::RoundSignedAPIntToDouble(Src.AggregateVal[i].IntVal); |
| 1449 | } |
| 1450 | } else { |
| 1451 | // scalar |
| 1452 | assert(DstTy->isFloatingPointTy() && "Invalid SIToFP instruction"); |
| 1453 | |
| 1454 | if (DstTy->getTypeID() == Type::FloatTyID) |
| 1455 | Dest.FloatVal = APIntOps::RoundSignedAPIntToFloat(Src.IntVal); |
| 1456 | else { |
| 1457 | Dest.DoubleVal = APIntOps::RoundSignedAPIntToDouble(Src.IntVal); |
| 1458 | } |
| 1459 | } |
| 1460 | |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1461 | return Dest; |
| 1462 | } |
| 1463 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1464 | GenericValue Interpreter::executePtrToIntInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1465 | ExecutionContext &SF) { |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1466 | uint32_t DBitWidth = cast<IntegerType>(DstTy)->getBitWidth(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1467 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1468 | assert(SrcVal->getType()->isPointerTy() && "Invalid PtrToInt instruction"); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1469 | |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1470 | Dest.IntVal = APInt(DBitWidth, (intptr_t) Src.PointerVal); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1471 | return Dest; |
| 1472 | } |
| 1473 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1474 | GenericValue Interpreter::executeIntToPtrInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1475 | ExecutionContext &SF) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1476 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1477 | assert(DstTy->isPointerTy() && "Invalid PtrToInt instruction"); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1478 | |
Mehdi Amini | a3fcefb | 2015-07-16 16:34:23 +0000 | [diff] [blame] | 1479 | uint32_t PtrSize = getDataLayout().getPointerSizeInBits(); |
Reid Spencer | 10dbc1e | 2007-03-06 03:41:50 +0000 | [diff] [blame] | 1480 | if (PtrSize != Src.IntVal.getBitWidth()) |
Reid Spencer | 1efc4aa | 2007-03-06 03:46:41 +0000 | [diff] [blame] | 1481 | Src.IntVal = Src.IntVal.zextOrTrunc(PtrSize); |
Reid Spencer | 10dbc1e | 2007-03-06 03:41:50 +0000 | [diff] [blame] | 1482 | |
Reid Spencer | 1d48207 | 2007-04-26 18:19:35 +0000 | [diff] [blame] | 1483 | Dest.PointerVal = PointerTy(intptr_t(Src.IntVal.getZExtValue())); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1484 | return Dest; |
| 1485 | } |
| 1486 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1487 | GenericValue Interpreter::executeBitCastInst(Value *SrcVal, Type *DstTy, |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1488 | ExecutionContext &SF) { |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1489 | |
| 1490 | // This instruction supports bitwise conversion of vectors to integers and |
| 1491 | // to vectors of other types (as long as they have the same size) |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1492 | Type *SrcTy = SrcVal->getType(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1493 | GenericValue Dest, Src = getOperandValue(SrcVal, SF); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1494 | |
| 1495 | if ((SrcTy->getTypeID() == Type::VectorTyID) || |
| 1496 | (DstTy->getTypeID() == Type::VectorTyID)) { |
| 1497 | // vector src bitcast to vector dst or vector src bitcast to scalar dst or |
| 1498 | // scalar src bitcast to vector dst |
Mehdi Amini | a3fcefb | 2015-07-16 16:34:23 +0000 | [diff] [blame] | 1499 | bool isLittleEndian = getDataLayout().isLittleEndian(); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1500 | GenericValue TempDst, TempSrc, SrcVec; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1501 | Type *SrcElemTy; |
| 1502 | Type *DstElemTy; |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1503 | unsigned SrcBitSize; |
| 1504 | unsigned DstBitSize; |
| 1505 | unsigned SrcNum; |
| 1506 | unsigned DstNum; |
| 1507 | |
| 1508 | if (SrcTy->getTypeID() == Type::VectorTyID) { |
| 1509 | SrcElemTy = SrcTy->getScalarType(); |
| 1510 | SrcBitSize = SrcTy->getScalarSizeInBits(); |
| 1511 | SrcNum = Src.AggregateVal.size(); |
| 1512 | SrcVec = Src; |
| 1513 | } else { |
| 1514 | // if src is scalar value, make it vector <1 x type> |
| 1515 | SrcElemTy = SrcTy; |
| 1516 | SrcBitSize = SrcTy->getPrimitiveSizeInBits(); |
| 1517 | SrcNum = 1; |
| 1518 | SrcVec.AggregateVal.push_back(Src); |
| 1519 | } |
| 1520 | |
| 1521 | if (DstTy->getTypeID() == Type::VectorTyID) { |
| 1522 | DstElemTy = DstTy->getScalarType(); |
| 1523 | DstBitSize = DstTy->getScalarSizeInBits(); |
| 1524 | DstNum = (SrcNum * SrcBitSize) / DstBitSize; |
| 1525 | } else { |
| 1526 | DstElemTy = DstTy; |
| 1527 | DstBitSize = DstTy->getPrimitiveSizeInBits(); |
| 1528 | DstNum = 1; |
| 1529 | } |
| 1530 | |
| 1531 | if (SrcNum * SrcBitSize != DstNum * DstBitSize) |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1532 | llvm_unreachable("Invalid BitCast"); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1533 | |
| 1534 | // If src is floating point, cast to integer first. |
| 1535 | TempSrc.AggregateVal.resize(SrcNum); |
| 1536 | if (SrcElemTy->isFloatTy()) { |
| 1537 | for (unsigned i = 0; i < SrcNum; i++) |
| 1538 | TempSrc.AggregateVal[i].IntVal = |
| 1539 | APInt::floatToBits(SrcVec.AggregateVal[i].FloatVal); |
| 1540 | |
| 1541 | } else if (SrcElemTy->isDoubleTy()) { |
| 1542 | for (unsigned i = 0; i < SrcNum; i++) |
| 1543 | TempSrc.AggregateVal[i].IntVal = |
| 1544 | APInt::doubleToBits(SrcVec.AggregateVal[i].DoubleVal); |
| 1545 | } else if (SrcElemTy->isIntegerTy()) { |
| 1546 | for (unsigned i = 0; i < SrcNum; i++) |
| 1547 | TempSrc.AggregateVal[i].IntVal = SrcVec.AggregateVal[i].IntVal; |
| 1548 | } else { |
| 1549 | // Pointers are not allowed as the element type of vector. |
| 1550 | llvm_unreachable("Invalid Bitcast"); |
| 1551 | } |
| 1552 | |
| 1553 | // now TempSrc is integer type vector |
| 1554 | if (DstNum < SrcNum) { |
| 1555 | // Example: bitcast <4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64> |
| 1556 | unsigned Ratio = SrcNum / DstNum; |
| 1557 | unsigned SrcElt = 0; |
| 1558 | for (unsigned i = 0; i < DstNum; i++) { |
| 1559 | GenericValue Elt; |
| 1560 | Elt.IntVal = 0; |
| 1561 | Elt.IntVal = Elt.IntVal.zext(DstBitSize); |
| 1562 | unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize * (Ratio - 1); |
| 1563 | for (unsigned j = 0; j < Ratio; j++) { |
| 1564 | APInt Tmp; |
| 1565 | Tmp = Tmp.zext(SrcBitSize); |
| 1566 | Tmp = TempSrc.AggregateVal[SrcElt++].IntVal; |
| 1567 | Tmp = Tmp.zext(DstBitSize); |
Craig Topper | 24e7101 | 2017-04-28 03:36:24 +0000 | [diff] [blame] | 1568 | Tmp <<= ShiftAmt; |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1569 | ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize; |
| 1570 | Elt.IntVal |= Tmp; |
| 1571 | } |
| 1572 | TempDst.AggregateVal.push_back(Elt); |
| 1573 | } |
| 1574 | } else { |
| 1575 | // Example: bitcast <2 x i64> <i64 0, i64 1> to <4 x i32> |
| 1576 | unsigned Ratio = DstNum / SrcNum; |
| 1577 | for (unsigned i = 0; i < SrcNum; i++) { |
| 1578 | unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize * (Ratio - 1); |
| 1579 | for (unsigned j = 0; j < Ratio; j++) { |
| 1580 | GenericValue Elt; |
| 1581 | Elt.IntVal = Elt.IntVal.zext(SrcBitSize); |
| 1582 | Elt.IntVal = TempSrc.AggregateVal[i].IntVal; |
Craig Topper | fc947bc | 2017-04-18 17:14:21 +0000 | [diff] [blame] | 1583 | Elt.IntVal.lshrInPlace(ShiftAmt); |
Elena Demikhovsky | 62d19c8 | 2013-08-05 12:17:06 +0000 | [diff] [blame] | 1584 | // it could be DstBitSize == SrcBitSize, so check it |
| 1585 | if (DstBitSize < SrcBitSize) |
| 1586 | Elt.IntVal = Elt.IntVal.trunc(DstBitSize); |
| 1587 | ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize; |
| 1588 | TempDst.AggregateVal.push_back(Elt); |
| 1589 | } |
| 1590 | } |
| 1591 | } |
| 1592 | |
| 1593 | // convert result from integer to specified type |
| 1594 | if (DstTy->getTypeID() == Type::VectorTyID) { |
| 1595 | if (DstElemTy->isDoubleTy()) { |
| 1596 | Dest.AggregateVal.resize(DstNum); |
| 1597 | for (unsigned i = 0; i < DstNum; i++) |
| 1598 | Dest.AggregateVal[i].DoubleVal = |
| 1599 | TempDst.AggregateVal[i].IntVal.bitsToDouble(); |
| 1600 | } else if (DstElemTy->isFloatTy()) { |
| 1601 | Dest.AggregateVal.resize(DstNum); |
| 1602 | for (unsigned i = 0; i < DstNum; i++) |
| 1603 | Dest.AggregateVal[i].FloatVal = |
| 1604 | TempDst.AggregateVal[i].IntVal.bitsToFloat(); |
| 1605 | } else { |
| 1606 | Dest = TempDst; |
| 1607 | } |
| 1608 | } else { |
| 1609 | if (DstElemTy->isDoubleTy()) |
| 1610 | Dest.DoubleVal = TempDst.AggregateVal[0].IntVal.bitsToDouble(); |
| 1611 | else if (DstElemTy->isFloatTy()) { |
| 1612 | Dest.FloatVal = TempDst.AggregateVal[0].IntVal.bitsToFloat(); |
| 1613 | } else { |
| 1614 | Dest.IntVal = TempDst.AggregateVal[0].IntVal; |
| 1615 | } |
| 1616 | } |
| 1617 | } else { // if ((SrcTy->getTypeID() == Type::VectorTyID) || |
| 1618 | // (DstTy->getTypeID() == Type::VectorTyID)) |
| 1619 | |
| 1620 | // scalar src bitcast to scalar dst |
| 1621 | if (DstTy->isPointerTy()) { |
| 1622 | assert(SrcTy->isPointerTy() && "Invalid BitCast"); |
| 1623 | Dest.PointerVal = Src.PointerVal; |
| 1624 | } else if (DstTy->isIntegerTy()) { |
| 1625 | if (SrcTy->isFloatTy()) |
| 1626 | Dest.IntVal = APInt::floatToBits(Src.FloatVal); |
| 1627 | else if (SrcTy->isDoubleTy()) { |
| 1628 | Dest.IntVal = APInt::doubleToBits(Src.DoubleVal); |
| 1629 | } else if (SrcTy->isIntegerTy()) { |
| 1630 | Dest.IntVal = Src.IntVal; |
| 1631 | } else { |
| 1632 | llvm_unreachable("Invalid BitCast"); |
| 1633 | } |
| 1634 | } else if (DstTy->isFloatTy()) { |
| 1635 | if (SrcTy->isIntegerTy()) |
| 1636 | Dest.FloatVal = Src.IntVal.bitsToFloat(); |
| 1637 | else { |
| 1638 | Dest.FloatVal = Src.FloatVal; |
| 1639 | } |
| 1640 | } else if (DstTy->isDoubleTy()) { |
| 1641 | if (SrcTy->isIntegerTy()) |
| 1642 | Dest.DoubleVal = Src.IntVal.bitsToDouble(); |
| 1643 | else { |
| 1644 | Dest.DoubleVal = Src.DoubleVal; |
| 1645 | } |
| 1646 | } else { |
| 1647 | llvm_unreachable("Invalid Bitcast"); |
| 1648 | } |
| 1649 | } |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1650 | |
| 1651 | return Dest; |
| 1652 | } |
| 1653 | |
| 1654 | void Interpreter::visitTruncInst(TruncInst &I) { |
Chris Lattner | 185045c | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 1655 | ExecutionContext &SF = ECStack.back(); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1656 | SetValue(&I, executeTruncInst(I.getOperand(0), I.getType(), SF), SF); |
| 1657 | } |
| 1658 | |
| 1659 | void Interpreter::visitSExtInst(SExtInst &I) { |
| 1660 | ExecutionContext &SF = ECStack.back(); |
| 1661 | SetValue(&I, executeSExtInst(I.getOperand(0), I.getType(), SF), SF); |
| 1662 | } |
| 1663 | |
| 1664 | void Interpreter::visitZExtInst(ZExtInst &I) { |
| 1665 | ExecutionContext &SF = ECStack.back(); |
| 1666 | SetValue(&I, executeZExtInst(I.getOperand(0), I.getType(), SF), SF); |
| 1667 | } |
| 1668 | |
| 1669 | void Interpreter::visitFPTruncInst(FPTruncInst &I) { |
| 1670 | ExecutionContext &SF = ECStack.back(); |
| 1671 | SetValue(&I, executeFPTruncInst(I.getOperand(0), I.getType(), SF), SF); |
| 1672 | } |
| 1673 | |
| 1674 | void Interpreter::visitFPExtInst(FPExtInst &I) { |
| 1675 | ExecutionContext &SF = ECStack.back(); |
| 1676 | SetValue(&I, executeFPExtInst(I.getOperand(0), I.getType(), SF), SF); |
| 1677 | } |
| 1678 | |
| 1679 | void Interpreter::visitUIToFPInst(UIToFPInst &I) { |
| 1680 | ExecutionContext &SF = ECStack.back(); |
| 1681 | SetValue(&I, executeUIToFPInst(I.getOperand(0), I.getType(), SF), SF); |
| 1682 | } |
| 1683 | |
| 1684 | void Interpreter::visitSIToFPInst(SIToFPInst &I) { |
| 1685 | ExecutionContext &SF = ECStack.back(); |
| 1686 | SetValue(&I, executeSIToFPInst(I.getOperand(0), I.getType(), SF), SF); |
| 1687 | } |
| 1688 | |
| 1689 | void Interpreter::visitFPToUIInst(FPToUIInst &I) { |
| 1690 | ExecutionContext &SF = ECStack.back(); |
| 1691 | SetValue(&I, executeFPToUIInst(I.getOperand(0), I.getType(), SF), SF); |
| 1692 | } |
| 1693 | |
| 1694 | void Interpreter::visitFPToSIInst(FPToSIInst &I) { |
| 1695 | ExecutionContext &SF = ECStack.back(); |
| 1696 | SetValue(&I, executeFPToSIInst(I.getOperand(0), I.getType(), SF), SF); |
| 1697 | } |
| 1698 | |
| 1699 | void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { |
| 1700 | ExecutionContext &SF = ECStack.back(); |
| 1701 | SetValue(&I, executePtrToIntInst(I.getOperand(0), I.getType(), SF), SF); |
| 1702 | } |
| 1703 | |
| 1704 | void Interpreter::visitIntToPtrInst(IntToPtrInst &I) { |
| 1705 | ExecutionContext &SF = ECStack.back(); |
| 1706 | SetValue(&I, executeIntToPtrInst(I.getOperand(0), I.getType(), SF), SF); |
| 1707 | } |
| 1708 | |
| 1709 | void Interpreter::visitBitCastInst(BitCastInst &I) { |
| 1710 | ExecutionContext &SF = ECStack.back(); |
| 1711 | SetValue(&I, executeBitCastInst(I.getOperand(0), I.getType(), SF), SF); |
Chris Lattner | c837dbc | 2002-08-27 22:33:45 +0000 | [diff] [blame] | 1712 | } |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1713 | |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1714 | #define IMPLEMENT_VAARG(TY) \ |
| 1715 | case Type::TY##TyID: Dest.TY##Val = Src.TY##Val; break |
| 1716 | |
| 1717 | void Interpreter::visitVAArgInst(VAArgInst &I) { |
| 1718 | ExecutionContext &SF = ECStack.back(); |
| 1719 | |
Brian Gaeke | 7b4be13 | 2004-02-25 23:01:48 +0000 | [diff] [blame] | 1720 | // Get the incoming valist parameter. LLI treats the valist as a |
| 1721 | // (ec-stack-depth var-arg-index) pair. |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1722 | GenericValue VAList = getOperandValue(I.getOperand(0), SF); |
Brian Gaeke | 7b4be13 | 2004-02-25 23:01:48 +0000 | [diff] [blame] | 1723 | GenericValue Dest; |
| 1724 | GenericValue Src = ECStack[VAList.UIntPairVal.first] |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 1725 | .VarArgs[VAList.UIntPairVal.second]; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1726 | Type *Ty = I.getType(); |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 1727 | switch (Ty->getTypeID()) { |
Jim Grosbach | b9baa44 | 2013-01-31 19:46:59 +0000 | [diff] [blame] | 1728 | case Type::IntegerTyID: |
| 1729 | Dest.IntVal = Src.IntVal; |
Jim Grosbach | b9baa44 | 2013-01-31 19:46:59 +0000 | [diff] [blame] | 1730 | break; |
Jim Grosbach | d0ef728 | 2013-02-01 18:57:06 +0000 | [diff] [blame] | 1731 | IMPLEMENT_VAARG(Pointer); |
| 1732 | IMPLEMENT_VAARG(Float); |
| 1733 | IMPLEMENT_VAARG(Double); |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1734 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 1735 | dbgs() << "Unhandled dest type for vaarg instruction: " << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 1736 | llvm_unreachable(nullptr); |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1737 | } |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 1738 | |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1739 | // Set the Value of this Instruction. |
| 1740 | SetValue(&I, Dest, SF); |
Andrew Lenharth | 9144ec4 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 1741 | |
| 1742 | // Move the pointer to the next vararg. |
| 1743 | ++VAList.UIntPairVal.second; |
Brian Gaeke | 9ef636c | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 1744 | } |
| 1745 | |
Nadav Rotem | be79a7a | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 1746 | void Interpreter::visitExtractElementInst(ExtractElementInst &I) { |
| 1747 | ExecutionContext &SF = ECStack.back(); |
| 1748 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1749 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1750 | GenericValue Dest; |
| 1751 | |
| 1752 | Type *Ty = I.getType(); |
| 1753 | const unsigned indx = unsigned(Src2.IntVal.getZExtValue()); |
| 1754 | |
| 1755 | if(Src1.AggregateVal.size() > indx) { |
| 1756 | switch (Ty->getTypeID()) { |
| 1757 | default: |
| 1758 | dbgs() << "Unhandled destination type for extractelement instruction: " |
| 1759 | << *Ty << "\n"; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 1760 | llvm_unreachable(nullptr); |
Nadav Rotem | be79a7a | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 1761 | break; |
| 1762 | case Type::IntegerTyID: |
| 1763 | Dest.IntVal = Src1.AggregateVal[indx].IntVal; |
| 1764 | break; |
| 1765 | case Type::FloatTyID: |
| 1766 | Dest.FloatVal = Src1.AggregateVal[indx].FloatVal; |
| 1767 | break; |
| 1768 | case Type::DoubleTyID: |
| 1769 | Dest.DoubleVal = Src1.AggregateVal[indx].DoubleVal; |
| 1770 | break; |
| 1771 | } |
| 1772 | } else { |
| 1773 | dbgs() << "Invalid index in extractelement instruction\n"; |
| 1774 | } |
| 1775 | |
| 1776 | SetValue(&I, Dest, SF); |
| 1777 | } |
| 1778 | |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1779 | void Interpreter::visitInsertElementInst(InsertElementInst &I) { |
| 1780 | ExecutionContext &SF = ECStack.back(); |
James Y Knight | 62df5ee | 2019-01-10 16:07:20 +0000 | [diff] [blame] | 1781 | VectorType *Ty = cast<VectorType>(I.getType()); |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1782 | |
| 1783 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1784 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1785 | GenericValue Src3 = getOperandValue(I.getOperand(2), SF); |
| 1786 | GenericValue Dest; |
| 1787 | |
James Y Knight | 62df5ee | 2019-01-10 16:07:20 +0000 | [diff] [blame] | 1788 | Type *TyContained = Ty->getElementType(); |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1789 | |
| 1790 | const unsigned indx = unsigned(Src3.IntVal.getZExtValue()); |
| 1791 | Dest.AggregateVal = Src1.AggregateVal; |
| 1792 | |
| 1793 | if(Src1.AggregateVal.size() <= indx) |
| 1794 | llvm_unreachable("Invalid index in insertelement instruction"); |
| 1795 | switch (TyContained->getTypeID()) { |
| 1796 | default: |
| 1797 | llvm_unreachable("Unhandled dest type for insertelement instruction"); |
| 1798 | case Type::IntegerTyID: |
| 1799 | Dest.AggregateVal[indx].IntVal = Src2.IntVal; |
| 1800 | break; |
| 1801 | case Type::FloatTyID: |
| 1802 | Dest.AggregateVal[indx].FloatVal = Src2.FloatVal; |
| 1803 | break; |
| 1804 | case Type::DoubleTyID: |
| 1805 | Dest.AggregateVal[indx].DoubleVal = Src2.DoubleVal; |
| 1806 | break; |
| 1807 | } |
| 1808 | SetValue(&I, Dest, SF); |
| 1809 | } |
| 1810 | |
| 1811 | void Interpreter::visitShuffleVectorInst(ShuffleVectorInst &I){ |
| 1812 | ExecutionContext &SF = ECStack.back(); |
| 1813 | |
James Y Knight | 62df5ee | 2019-01-10 16:07:20 +0000 | [diff] [blame] | 1814 | VectorType *Ty = cast<VectorType>(I.getType()); |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1815 | |
| 1816 | GenericValue Src1 = getOperandValue(I.getOperand(0), SF); |
| 1817 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1818 | GenericValue Src3 = getOperandValue(I.getOperand(2), SF); |
| 1819 | GenericValue Dest; |
| 1820 | |
| 1821 | // There is no need to check types of src1 and src2, because the compiled |
| 1822 | // bytecode can't contain different types for src1 and src2 for a |
| 1823 | // shufflevector instruction. |
| 1824 | |
James Y Knight | 62df5ee | 2019-01-10 16:07:20 +0000 | [diff] [blame] | 1825 | Type *TyContained = Ty->getElementType(); |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1826 | unsigned src1Size = (unsigned)Src1.AggregateVal.size(); |
| 1827 | unsigned src2Size = (unsigned)Src2.AggregateVal.size(); |
| 1828 | unsigned src3Size = (unsigned)Src3.AggregateVal.size(); |
| 1829 | |
| 1830 | Dest.AggregateVal.resize(src3Size); |
| 1831 | |
| 1832 | switch (TyContained->getTypeID()) { |
| 1833 | default: |
| 1834 | llvm_unreachable("Unhandled dest type for insertelement instruction"); |
| 1835 | break; |
| 1836 | case Type::IntegerTyID: |
| 1837 | for( unsigned i=0; i<src3Size; i++) { |
| 1838 | unsigned j = Src3.AggregateVal[i].IntVal.getZExtValue(); |
| 1839 | if(j < src1Size) |
| 1840 | Dest.AggregateVal[i].IntVal = Src1.AggregateVal[j].IntVal; |
| 1841 | else if(j < src1Size + src2Size) |
| 1842 | Dest.AggregateVal[i].IntVal = Src2.AggregateVal[j-src1Size].IntVal; |
| 1843 | else |
| 1844 | // The selector may not be greater than sum of lengths of first and |
| 1845 | // second operands and llasm should not allow situation like |
| 1846 | // %tmp = shufflevector <2 x i32> <i32 3, i32 4>, <2 x i32> undef, |
| 1847 | // <2 x i32> < i32 0, i32 5 >, |
| 1848 | // where i32 5 is invalid, but let it be additional check here: |
| 1849 | llvm_unreachable("Invalid mask in shufflevector instruction"); |
| 1850 | } |
| 1851 | break; |
| 1852 | case Type::FloatTyID: |
| 1853 | for( unsigned i=0; i<src3Size; i++) { |
| 1854 | unsigned j = Src3.AggregateVal[i].IntVal.getZExtValue(); |
| 1855 | if(j < src1Size) |
| 1856 | Dest.AggregateVal[i].FloatVal = Src1.AggregateVal[j].FloatVal; |
| 1857 | else if(j < src1Size + src2Size) |
| 1858 | Dest.AggregateVal[i].FloatVal = Src2.AggregateVal[j-src1Size].FloatVal; |
| 1859 | else |
| 1860 | llvm_unreachable("Invalid mask in shufflevector instruction"); |
| 1861 | } |
| 1862 | break; |
| 1863 | case Type::DoubleTyID: |
| 1864 | for( unsigned i=0; i<src3Size; i++) { |
| 1865 | unsigned j = Src3.AggregateVal[i].IntVal.getZExtValue(); |
| 1866 | if(j < src1Size) |
| 1867 | Dest.AggregateVal[i].DoubleVal = Src1.AggregateVal[j].DoubleVal; |
| 1868 | else if(j < src1Size + src2Size) |
| 1869 | Dest.AggregateVal[i].DoubleVal = |
| 1870 | Src2.AggregateVal[j-src1Size].DoubleVal; |
| 1871 | else |
| 1872 | llvm_unreachable("Invalid mask in shufflevector instruction"); |
| 1873 | } |
| 1874 | break; |
| 1875 | } |
| 1876 | SetValue(&I, Dest, SF); |
| 1877 | } |
| 1878 | |
Elena Demikhovsky | 8e97f01 | 2013-09-12 10:48:23 +0000 | [diff] [blame] | 1879 | void Interpreter::visitExtractValueInst(ExtractValueInst &I) { |
| 1880 | ExecutionContext &SF = ECStack.back(); |
| 1881 | Value *Agg = I.getAggregateOperand(); |
| 1882 | GenericValue Dest; |
| 1883 | GenericValue Src = getOperandValue(Agg, SF); |
| 1884 | |
| 1885 | ExtractValueInst::idx_iterator IdxBegin = I.idx_begin(); |
| 1886 | unsigned Num = I.getNumIndices(); |
| 1887 | GenericValue *pSrc = &Src; |
| 1888 | |
| 1889 | for (unsigned i = 0 ; i < Num; ++i) { |
| 1890 | pSrc = &pSrc->AggregateVal[*IdxBegin]; |
| 1891 | ++IdxBegin; |
| 1892 | } |
| 1893 | |
| 1894 | Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); |
| 1895 | switch (IndexedType->getTypeID()) { |
| 1896 | default: |
| 1897 | llvm_unreachable("Unhandled dest type for extractelement instruction"); |
| 1898 | break; |
| 1899 | case Type::IntegerTyID: |
| 1900 | Dest.IntVal = pSrc->IntVal; |
| 1901 | break; |
| 1902 | case Type::FloatTyID: |
| 1903 | Dest.FloatVal = pSrc->FloatVal; |
| 1904 | break; |
| 1905 | case Type::DoubleTyID: |
| 1906 | Dest.DoubleVal = pSrc->DoubleVal; |
| 1907 | break; |
| 1908 | case Type::ArrayTyID: |
| 1909 | case Type::StructTyID: |
| 1910 | case Type::VectorTyID: |
| 1911 | Dest.AggregateVal = pSrc->AggregateVal; |
| 1912 | break; |
| 1913 | case Type::PointerTyID: |
| 1914 | Dest.PointerVal = pSrc->PointerVal; |
| 1915 | break; |
| 1916 | } |
| 1917 | |
| 1918 | SetValue(&I, Dest, SF); |
| 1919 | } |
| 1920 | |
| 1921 | void Interpreter::visitInsertValueInst(InsertValueInst &I) { |
| 1922 | |
| 1923 | ExecutionContext &SF = ECStack.back(); |
| 1924 | Value *Agg = I.getAggregateOperand(); |
| 1925 | |
| 1926 | GenericValue Src1 = getOperandValue(Agg, SF); |
| 1927 | GenericValue Src2 = getOperandValue(I.getOperand(1), SF); |
| 1928 | GenericValue Dest = Src1; // Dest is a slightly changed Src1 |
| 1929 | |
| 1930 | ExtractValueInst::idx_iterator IdxBegin = I.idx_begin(); |
| 1931 | unsigned Num = I.getNumIndices(); |
| 1932 | |
| 1933 | GenericValue *pDest = &Dest; |
| 1934 | for (unsigned i = 0 ; i < Num; ++i) { |
| 1935 | pDest = &pDest->AggregateVal[*IdxBegin]; |
| 1936 | ++IdxBegin; |
| 1937 | } |
| 1938 | // pDest points to the target value in the Dest now |
| 1939 | |
| 1940 | Type *IndexedType = ExtractValueInst::getIndexedType(Agg->getType(), I.getIndices()); |
| 1941 | |
| 1942 | switch (IndexedType->getTypeID()) { |
| 1943 | default: |
| 1944 | llvm_unreachable("Unhandled dest type for insertelement instruction"); |
| 1945 | break; |
| 1946 | case Type::IntegerTyID: |
| 1947 | pDest->IntVal = Src2.IntVal; |
| 1948 | break; |
| 1949 | case Type::FloatTyID: |
| 1950 | pDest->FloatVal = Src2.FloatVal; |
| 1951 | break; |
| 1952 | case Type::DoubleTyID: |
| 1953 | pDest->DoubleVal = Src2.DoubleVal; |
| 1954 | break; |
| 1955 | case Type::ArrayTyID: |
| 1956 | case Type::StructTyID: |
| 1957 | case Type::VectorTyID: |
| 1958 | pDest->AggregateVal = Src2.AggregateVal; |
| 1959 | break; |
| 1960 | case Type::PointerTyID: |
| 1961 | pDest->PointerVal = Src2.PointerVal; |
| 1962 | break; |
| 1963 | } |
| 1964 | |
| 1965 | SetValue(&I, Dest, SF); |
| 1966 | } |
| 1967 | |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 1968 | GenericValue Interpreter::getConstantExprValue (ConstantExpr *CE, |
| 1969 | ExecutionContext &SF) { |
| 1970 | switch (CE->getOpcode()) { |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 1971 | case Instruction::Trunc: |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 1972 | return executeTruncInst(CE->getOperand(0), CE->getType(), SF); |
| 1973 | case Instruction::ZExt: |
| 1974 | return executeZExtInst(CE->getOperand(0), CE->getType(), SF); |
| 1975 | case Instruction::SExt: |
| 1976 | return executeSExtInst(CE->getOperand(0), CE->getType(), SF); |
| 1977 | case Instruction::FPTrunc: |
| 1978 | return executeFPTruncInst(CE->getOperand(0), CE->getType(), SF); |
| 1979 | case Instruction::FPExt: |
| 1980 | return executeFPExtInst(CE->getOperand(0), CE->getType(), SF); |
| 1981 | case Instruction::UIToFP: |
| 1982 | return executeUIToFPInst(CE->getOperand(0), CE->getType(), SF); |
| 1983 | case Instruction::SIToFP: |
| 1984 | return executeSIToFPInst(CE->getOperand(0), CE->getType(), SF); |
| 1985 | case Instruction::FPToUI: |
| 1986 | return executeFPToUIInst(CE->getOperand(0), CE->getType(), SF); |
| 1987 | case Instruction::FPToSI: |
| 1988 | return executeFPToSIInst(CE->getOperand(0), CE->getType(), SF); |
| 1989 | case Instruction::PtrToInt: |
| 1990 | return executePtrToIntInst(CE->getOperand(0), CE->getType(), SF); |
| 1991 | case Instruction::IntToPtr: |
| 1992 | return executeIntToPtrInst(CE->getOperand(0), CE->getType(), SF); |
| 1993 | case Instruction::BitCast: |
| 1994 | return executeBitCastInst(CE->getOperand(0), CE->getType(), SF); |
| 1995 | case Instruction::GetElementPtr: |
| 1996 | return executeGEPOperation(CE->getOperand(0), gep_type_begin(CE), |
| 1997 | gep_type_end(CE), SF); |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 1998 | case Instruction::FCmp: |
| 1999 | case Instruction::ICmp: |
| 2000 | return executeCmpInst(CE->getPredicate(), |
| 2001 | getOperandValue(CE->getOperand(0), SF), |
| 2002 | getOperandValue(CE->getOperand(1), SF), |
| 2003 | CE->getOperand(0)->getType()); |
| 2004 | case Instruction::Select: |
| 2005 | return executeSelectInst(getOperandValue(CE->getOperand(0), SF), |
| 2006 | getOperandValue(CE->getOperand(1), SF), |
Elena Demikhovsky | 843657c | 2013-09-02 06:40:09 +0000 | [diff] [blame] | 2007 | getOperandValue(CE->getOperand(2), SF), |
| 2008 | CE->getOperand(0)->getType()); |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2009 | default : |
| 2010 | break; |
| 2011 | } |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 2012 | |
| 2013 | // The cases below here require a GenericValue parameter for the result |
| 2014 | // so we initialize one, compute it and then return it. |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 2015 | GenericValue Op0 = getOperandValue(CE->getOperand(0), SF); |
| 2016 | GenericValue Op1 = getOperandValue(CE->getOperand(1), SF); |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2017 | GenericValue Dest; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2018 | Type * Ty = CE->getOperand(0)->getType(); |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2019 | switch (CE->getOpcode()) { |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2020 | case Instruction::Add: Dest.IntVal = Op0.IntVal + Op1.IntVal; break; |
| 2021 | case Instruction::Sub: Dest.IntVal = Op0.IntVal - Op1.IntVal; break; |
| 2022 | case Instruction::Mul: Dest.IntVal = Op0.IntVal * Op1.IntVal; break; |
| 2023 | case Instruction::FAdd: executeFAddInst(Dest, Op0, Op1, Ty); break; |
| 2024 | case Instruction::FSub: executeFSubInst(Dest, Op0, Op1, Ty); break; |
| 2025 | case Instruction::FMul: executeFMulInst(Dest, Op0, Op1, Ty); break; |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 2026 | case Instruction::FDiv: executeFDivInst(Dest, Op0, Op1, Ty); break; |
| 2027 | case Instruction::FRem: executeFRemInst(Dest, Op0, Op1, Ty); break; |
| 2028 | case Instruction::SDiv: Dest.IntVal = Op0.IntVal.sdiv(Op1.IntVal); break; |
| 2029 | case Instruction::UDiv: Dest.IntVal = Op0.IntVal.udiv(Op1.IntVal); break; |
| 2030 | case Instruction::URem: Dest.IntVal = Op0.IntVal.urem(Op1.IntVal); break; |
| 2031 | case Instruction::SRem: Dest.IntVal = Op0.IntVal.srem(Op1.IntVal); break; |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 2032 | case Instruction::And: Dest.IntVal = Op0.IntVal & Op1.IntVal; break; |
| 2033 | case Instruction::Or: Dest.IntVal = Op0.IntVal | Op1.IntVal; break; |
| 2034 | case Instruction::Xor: Dest.IntVal = Op0.IntVal ^ Op1.IntVal; break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2035 | case Instruction::Shl: |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 2036 | Dest.IntVal = Op0.IntVal.shl(Op1.IntVal.getZExtValue()); |
| 2037 | break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2038 | case Instruction::LShr: |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 2039 | Dest.IntVal = Op0.IntVal.lshr(Op1.IntVal.getZExtValue()); |
| 2040 | break; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2041 | case Instruction::AShr: |
Reid Spencer | 40015aa | 2007-03-06 03:09:31 +0000 | [diff] [blame] | 2042 | Dest.IntVal = Op0.IntVal.ashr(Op1.IntVal.getZExtValue()); |
| 2043 | break; |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2044 | default: |
David Greene | 8121a81 | 2010-01-05 01:27:23 +0000 | [diff] [blame] | 2045 | dbgs() << "Unhandled ConstantExpr: " << *CE << "\n"; |
Ahmed Charles | 636a3d6 | 2012-02-19 11:37:01 +0000 | [diff] [blame] | 2046 | llvm_unreachable("Unhandled ConstantExpr"); |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2047 | } |
Reid Spencer | ec8c51c | 2007-03-03 08:38:04 +0000 | [diff] [blame] | 2048 | return Dest; |
Reid Spencer | 54c6e84 | 2007-03-03 06:22:22 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | GenericValue Interpreter::getOperandValue(Value *V, ExecutionContext &SF) { |
| 2052 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) { |
| 2053 | return getConstantExprValue(CE, SF); |
| 2054 | } else if (Constant *CPV = dyn_cast<Constant>(V)) { |
| 2055 | return getConstantValue(CPV); |
| 2056 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
| 2057 | return PTOGV(getPointerToGlobal(GV)); |
| 2058 | } else { |
| 2059 | return SF.Values[V]; |
| 2060 | } |
| 2061 | } |
| 2062 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2063 | //===----------------------------------------------------------------------===// |
| 2064 | // Dispatch and Execution Code |
| 2065 | //===----------------------------------------------------------------------===// |
| 2066 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2067 | //===----------------------------------------------------------------------===// |
Chris Lattner | 470754e | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 2068 | // callFunction - Execute the specified function... |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2069 | // |
Benjamin Kramer | bd7b1c8 | 2015-06-13 19:50:29 +0000 | [diff] [blame] | 2070 | void Interpreter::callFunction(Function *F, ArrayRef<GenericValue> ArgVals) { |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 2071 | assert((ECStack.empty() || !ECStack.back().Caller.getInstruction() || |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 2072 | ECStack.back().Caller.arg_size() == ArgVals.size()) && |
| 2073 | "Incorrect number of arguments passed into function call!"); |
Chris Lattner | a28e1f2 | 2003-09-17 17:26:22 +0000 | [diff] [blame] | 2074 | // Make a new stack frame... and fill it in. |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 2075 | ECStack.emplace_back(); |
Chris Lattner | a28e1f2 | 2003-09-17 17:26:22 +0000 | [diff] [blame] | 2076 | ExecutionContext &StackFrame = ECStack.back(); |
Chris Lattner | 470754e | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 2077 | StackFrame.CurFunction = F; |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 2078 | |
| 2079 | // Special handling for external functions. |
Reid Spencer | 5301e7c | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 2080 | if (F->isDeclaration()) { |
Brian Gaeke | 65cac90 | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 2081 | GenericValue Result = callExternalFunction (F, ArgVals); |
| 2082 | // Simulate a 'ret' instruction of the appropriate type. |
| 2083 | popStackAndReturnValueToCaller (F->getReturnType (), Result); |
| 2084 | return; |
| 2085 | } |
| 2086 | |
| 2087 | // Get pointers to first LLVM BB & Instruction in function. |
Duncan P. N. Exon Smith | c8f02e7 | 2015-10-13 17:33:41 +0000 | [diff] [blame] | 2088 | StackFrame.CurBB = &F->front(); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2089 | StackFrame.CurInst = StackFrame.CurBB->begin(); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2090 | |
Chris Lattner | 62b7fd1 | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 2091 | // Run through the function arguments and initialize their values... |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 2092 | assert((ArgVals.size() == F->arg_size() || |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 2093 | (ArgVals.size() > F->arg_size() && F->getFunctionType()->isVarArg()))&& |
Chris Lattner | 62b7fd1 | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 2094 | "Invalid number of values passed to function invocation!"); |
Chris Lattner | 22e9043 | 2003-05-08 16:06:52 +0000 | [diff] [blame] | 2095 | |
| 2096 | // Handle non-varargs arguments... |
Chris Lattner | 676d411 | 2001-09-10 04:49:44 +0000 | [diff] [blame] | 2097 | unsigned i = 0; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2098 | for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); |
Reid Spencer | c57be6c | 2007-04-16 21:50:40 +0000 | [diff] [blame] | 2099 | AI != E; ++AI, ++i) |
Duncan P. N. Exon Smith | c8f02e7 | 2015-10-13 17:33:41 +0000 | [diff] [blame] | 2100 | SetValue(&*AI, ArgVals[i], StackFrame); |
Chris Lattner | 22e9043 | 2003-05-08 16:06:52 +0000 | [diff] [blame] | 2101 | |
| 2102 | // Handle varargs arguments... |
| 2103 | StackFrame.VarArgs.assign(ArgVals.begin()+i, ArgVals.end()); |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2104 | } |
| 2105 | |
Reid Spencer | 65ba750 | 2007-05-16 02:05:13 +0000 | [diff] [blame] | 2106 | |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2107 | void Interpreter::run() { |
Brian Gaeke | 411281c | 2003-09-04 23:15:40 +0000 | [diff] [blame] | 2108 | while (!ECStack.empty()) { |
Brian Gaeke | e278c22 | 2003-10-24 19:59:01 +0000 | [diff] [blame] | 2109 | // Interpret a single instruction & increment the "PC". |
| 2110 | ExecutionContext &SF = ECStack.back(); // Current stack frame |
| 2111 | Instruction &I = *SF.CurInst++; // Increment before execute |
Misha Brukman | 91fb9ab | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 2112 | |
Brian Gaeke | e278c22 | 2003-10-24 19:59:01 +0000 | [diff] [blame] | 2113 | // Track the number of dynamic instructions executed. |
| 2114 | ++NumDynamicInsts; |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2115 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2116 | LLVM_DEBUG(dbgs() << "About to interpret: " << I); |
Brian Gaeke | e278c22 | 2003-10-24 19:59:01 +0000 | [diff] [blame] | 2117 | visit(I); // Dispatch to one of the visit* methods... |
Chris Lattner | d7ff578 | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 2118 | } |
| 2119 | } |