Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: src/IceOperand.cpp

Issue 353553004: Add support for vector types and vector constants. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: 1) Remove StringList. 2) Assign redundant assign TODO to stichnot. 3) Fix RUN line. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceOperand.cpp - High-level operand implementation -----===// 1 //===- subzero/src/IceOperand.cpp - High-level operand implementation -----===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file implements the Operand class and its target-independent 10 // This file implements the Operand class and its target-independent
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 } 230 }
231 } 231 }
232 232
233 void ConstantRelocatable::dump(GlobalContext *Ctx) const { 233 void ConstantRelocatable::dump(GlobalContext *Ctx) const {
234 Ostream &Str = Ctx->getStrDump(); 234 Ostream &Str = Ctx->getStrDump();
235 Str << "@" << Name; 235 Str << "@" << Name;
236 if (Offset) 236 if (Offset)
237 Str << "+" << Offset; 237 Str << "+" << Offset;
238 } 238 }
239 239
240 namespace {
241
242 // Read an item of type T and return it. Advance the buffer pointer
243 // by the size of T.
244 template <typename T> T convertAndAdvance(const char *&Src) {
245 T Dest;
246 std::memcpy(&Dest, Src, sizeof(T));
247 Src += sizeof(T);
248 return Dest;
249 }
250
251 } // end anonymous namespace
252
253 template <> void ConstantVector::dump(GlobalContext *Ctx) const {
254 Ostream &Str = Ctx->getStrDump();
255
256 Type Ty = getType();
257 const char *Window = Value.data();
258
259 Type ElementType = typeElementType(Ty);
260 size_t NumElements = typeNumElements(Ty);
261
262 assert(Value.size() == VECT128_BYTES);
263 assert(typeElementType(Ty) != IceType_i1);
264
265 Str << "<";
266 for (unsigned I = 0; I < NumElements; ++I) {
267 if (I > 0)
268 Str << ", ";
269 Str << ElementType << " ";
270 switch (ElementType) {
271 default:
272 llvm_unreachable("Unknown element type");
273 break;
274 case IceType_i8:
275 Str << (unsigned)convertAndAdvance<uint8_t>(Window);
276 break;
277 case IceType_i16:
278 Str << convertAndAdvance<uint16_t>(Window);
279 break;
280 case IceType_i32:
281 Str << convertAndAdvance<uint32_t>(Window);
282 break;
283 case IceType_f32:
284 Str << convertAndAdvance<float>(Window);
285 break;
286 }
287 }
288 assert(Window == Value.data() + VECT128_BYTES);
289 Str << ">";
290 }
291
292 template <> void ConstantBitVector::dump(GlobalContext *Ctx) const {
293 Ostream &Str = Ctx->getStrDump();
294 unsigned NumElements = typeNumElements(getType());
295 Str << "<";
296 for (unsigned I = 0; I < NumElements; ++I) {
297 if (I > 0)
298 Str << ", ";
299 Str << "i1 " << (Value[I] ? "1" : "0");
300 }
301 Str << ">";
302 }
303
240 void LiveRange::dump(Ostream &Str) const { 304 void LiveRange::dump(Ostream &Str) const {
241 Str << "(weight=" << Weight << ") "; 305 Str << "(weight=" << Weight << ") ";
242 for (RangeType::const_iterator I = Range.begin(), E = Range.end(); I != E; 306 for (RangeType::const_iterator I = Range.begin(), E = Range.end(); I != E;
243 ++I) { 307 ++I) {
244 if (I != Range.begin()) 308 if (I != Range.begin())
245 Str << ", "; 309 Str << ", ";
246 Str << "[" << (*I).first << ":" << (*I).second << ")"; 310 Str << "[" << (*I).first << ":" << (*I).second << ")";
247 } 311 }
248 } 312 }
249 313
250 Ostream &operator<<(Ostream &Str, const LiveRange &L) { 314 Ostream &operator<<(Ostream &Str, const LiveRange &L) {
251 L.dump(Str); 315 L.dump(Str);
252 return Str; 316 return Str;
253 } 317 }
254 318
255 Ostream &operator<<(Ostream &Str, const RegWeight &W) { 319 Ostream &operator<<(Ostream &Str, const RegWeight &W) {
256 if (W.getWeight() == RegWeight::Inf) 320 if (W.getWeight() == RegWeight::Inf)
257 Str << "Inf"; 321 Str << "Inf";
258 else 322 else
259 Str << W.getWeight(); 323 Str << W.getWeight();
260 return Str; 324 return Str;
261 } 325 }
262 326
263 } // end of namespace Ice 327 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698