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

Unified Diff: src/arm/simulator-arm.cc

Issue 12367002: ARM backend support for pld (preload data) instruction Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: 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: src/arm/simulator-arm.cc
===================================================================
--- src/arm/simulator-arm.cc (revision 13713)
+++ src/arm/simulator-arm.cc (working copy)
@@ -3248,7 +3248,9 @@
PrintF(" 0x%08x %s\n", reinterpret_cast<intptr_t>(instr), buffer.start());
}
if (instr->ConditionField() == kSpecialCondition) {
- UNIMPLEMENTED();
+ if (!instr->IsPld()) {
Sven Panne 2013/02/28 07:36:11 Hmmm, shouldn't we at least do the load here in th
danno 2013/02/28 07:53:55 I'm not sure that's the right thing to do. From A
+ UNIMPLEMENTED();
+ }
} else if (ConditionallyExecute(instr)) {
switch (instr->TypeValue()) {
case 0:

Powered by Google App Engine
This is Rietveld 408576698