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

Unified 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: Implement changes mentioned in comments. Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index 02e85c76854df1ade16f3f62de2a317209822e19..be63ff6c7054ea933103972702808c0842b86a37 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -237,6 +237,70 @@ void ConstantRelocatable::dump(GlobalContext *Ctx) const {
Str << "+" << Offset;
}
+namespace {
+
+// Read an item of type T and return it. Advance the buffer pointer
+// by the size of T.
+template <typename T> T convertAndAdvance(const char *&Src) {
+ T Dest;
+ std::memcpy(&Dest, Src, sizeof(T));
+ Src += sizeof(T);
+ return Dest;
+}
+
+} // end anonymous namespace
+
+template <> void ConstantVector::dump(GlobalContext *Ctx) const {
+ Ostream &Str = Ctx->getStrDump();
+
+ Type Ty = getType();
+ const char *Window = Value.data();
+
+ Type ElementType = typeElementType(Ty);
+ size_t NumElements = typeNumElements(Ty);
+
+ assert(Value.size() == VECT128_BYTES);
+ assert(typeElementType(Ty) != IceType_i1);
+
+ Str << "<";
+ for (unsigned I = 0; I < NumElements; ++I) {
+ if (I > 0)
+ Str << ", ";
+ Str << ElementType << " ";
+ switch (ElementType) {
+ default:
+ llvm_unreachable("Unknown element type");
+ break;
+ case IceType_i8:
+ Str << (unsigned)convertAndAdvance<uint8_t>(Window);
+ break;
+ case IceType_i16:
+ Str << convertAndAdvance<uint16_t>(Window);
+ break;
+ case IceType_i32:
+ Str << convertAndAdvance<uint32_t>(Window);
+ break;
+ case IceType_f32:
+ Str << convertAndAdvance<float>(Window);
+ break;
+ }
+ }
+ assert(Window == Value.data() + VECT128_BYTES);
+ Str << ">";
+}
+
+template <> void ConstantBitVector::dump(GlobalContext *Ctx) const {
+ Ostream &Str = Ctx->getStrDump();
+ unsigned NumElements = typeNumElements(getType());
+ Str << "<";
+ for (unsigned I = 0; I < NumElements; ++I) {
+ if (I > 0)
+ Str << ", ";
+ Str << "i1 " << (Value[I] ? "1" : "0");
+ }
+ Str << ">";
+}
+
void LiveRange::dump(Ostream &Str) const {
Str << "(weight=" << Weight << ") ";
for (RangeType::const_iterator I = Range.begin(), E = Range.end(); I != E;
« src/IceInstX8632.cpp ('K') | « src/IceOperand.h ('k') | src/IceTargetLoweringX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698