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

Unified Diff: runtime/vm/snapshot.h

Issue 12303013: Simd128Float32, Simd128Mask, and Simd128Float32List additions for dart:scalarlist (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove commented out code used for testing Created 7 years, 10 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: runtime/vm/snapshot.h
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index 616235db0893a6f1801e3492f0ae986a2f9bc327..ea1214b5bb315c94fa59762f35a63be41c07278d 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -42,6 +42,8 @@ class RawClosureData;
class RawRedirectionData;
class RawFunction;
class RawGrowableObjectArray;
+class RawSimd128Float32;
+class RawSimd128Mask;
class RawImmutableArray;
class RawLanguageError;
class RawLibrary;
@@ -263,6 +265,9 @@ class SnapshotReader : public BaseReader {
RawScript* NewScript();
RawLiteralToken* NewLiteralToken();
RawGrowableObjectArray* NewGrowableObjectArray();
+ RawSimd128Float32* NewSimd128Float32(float v0, float v1, float v2, float v3);
+ RawSimd128Mask* NewSimd128Mask(uint32_t v0, uint32_t v1, uint32_t v2,
+ uint32_t v3);
RawApiError* NewApiError();
RawLanguageError* NewLanguageError();
RawObject* NewInteger(int64_t value);

Powered by Google App Engine
This is Rietveld 408576698