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

Unified Diff: runtime/vm/code_patcher_arm.cc

Issue 10010029: When checking against non-parametrized types use a cache to hold result tuples (class, result). Tha… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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/code_patcher_arm.cc
===================================================================
--- runtime/vm/code_patcher_arm.cc (revision 6245)
+++ runtime/vm/code_patcher_arm.cc (working copy)
@@ -62,6 +62,18 @@
return NULL;
}
+RawArray* CodePatcher::GetTypeTestArray(uword instruction_address) {
+ UNIMPLEMENTED();
+ return NULL;
+}
+
+
+void CodePatcher::SetTypeTestArray(uword instruction_address,
+ const Array& value) {
+ UNIMPLEMENTED(); // Untested.
regis 2012/04/06 00:44:01 I hope the UNIMPLEMENTED() is tested by now ;-)
srdjan 2012/04/06 15:58:34 :-). Removed comment.
+}
+
+
} // namespace dart
#endif // defined TARGET_ARCH_ARM

Powered by Google App Engine
This is Rietveld 408576698