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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 6676065: Merge revision 7239 (=-7215, -7212) to trunk (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 1223
1224 void HStorePixelArrayElement::PrintDataTo(StringStream* stream) { 1224 void HStorePixelArrayElement::PrintDataTo(StringStream* stream) {
1225 external_pointer()->PrintNameTo(stream); 1225 external_pointer()->PrintNameTo(stream);
1226 stream->Add("["); 1226 stream->Add("[");
1227 key()->PrintNameTo(stream); 1227 key()->PrintNameTo(stream);
1228 stream->Add("] = "); 1228 stream->Add("] = ");
1229 value()->PrintNameTo(stream); 1229 value()->PrintNameTo(stream);
1230 } 1230 }
1231 1231
1232 1232
1233 void HLoadGlobalCell::PrintDataTo(StringStream* stream) { 1233 void HLoadGlobal::PrintDataTo(StringStream* stream) {
1234 stream->Add("[%p]", *cell()); 1234 stream->Add("[%p]", *cell());
1235 if (check_hole_value()) stream->Add(" (deleteable/read-only)"); 1235 if (check_hole_value()) stream->Add(" (deleteable/read-only)");
1236 } 1236 }
1237 1237
1238 1238
1239 void HLoadGlobalGeneric::PrintDataTo(StringStream* stream) {
1240 stream->Add("%o ", *name());
1241 }
1242
1243
1244 void HStoreGlobal::PrintDataTo(StringStream* stream) { 1239 void HStoreGlobal::PrintDataTo(StringStream* stream) {
1245 stream->Add("[%p] = ", *cell()); 1240 stream->Add("[%p] = ", *cell());
1246 value()->PrintNameTo(stream); 1241 value()->PrintNameTo(stream);
1247 } 1242 }
1248 1243
1249 1244
1250 void HLoadContextSlot::PrintDataTo(StringStream* stream) { 1245 void HLoadContextSlot::PrintDataTo(StringStream* stream) {
1251 value()->PrintNameTo(stream); 1246 value()->PrintNameTo(stream);
1252 stream->Add("[%d]", slot_index()); 1247 stream->Add("[%d]", slot_index());
1253 } 1248 }
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 1507
1513 1508
1514 void HCheckPrototypeMaps::Verify() { 1509 void HCheckPrototypeMaps::Verify() {
1515 HInstruction::Verify(); 1510 HInstruction::Verify();
1516 ASSERT(HasNoUses()); 1511 ASSERT(HasNoUses());
1517 } 1512 }
1518 1513
1519 #endif 1514 #endif
1520 1515
1521 } } // namespace v8::internal 1516 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698