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

Unified Diff: runtime/vm/intrinsifier.h

Issue 11074016: Intrinsify writing to Uint8 and Int8 arrays on IA32. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Comments, fixed signed check, and tests. Created 8 years, 2 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
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_ia32.cc » ('j') | runtime/vm/intrinsifier_ia32.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.h
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h
index cd8f7ff1ef7564a22023d3a5baf5c207a54c420b..86423057307101b4a1079bef35f663f06c715843 100644
--- a/runtime/vm/intrinsifier.h
+++ b/runtime/vm/intrinsifier.h
@@ -80,7 +80,9 @@ namespace dart {
V(StringBase, isEmpty, String_isEmpty) \
V(_ByteArrayBase, get:length, ByteArrayBase_getLength) \
V(_Int8Array, [], Int8Array_getIndexed) \
+ V(_Int8Array, []=, Int8Array_setIndexed) \
V(_Uint8Array, [], Uint8Array_getIndexed) \
+ V(_Uint8Array, []=, Uint8Array_setIndexed) \
V(_Int16Array, [], Int16Array_getIndexed) \
V(_Uint16Array, [], Uint16Array_getIndexed) \
V(_Int32Array, [], Int32Array_getIndexed) \
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_ia32.cc » ('j') | runtime/vm/intrinsifier_ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698