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

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

Issue 21340002: Generate a custom OSR entrypoint for OSR compiles on all platforms, and transition to optimized cod… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remerge with recent changes. Created 7 years, 3 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1484 } 1484 }
1485 1485
1486 1486
1487 void HCallStub::PrintDataTo(StringStream* stream) { 1487 void HCallStub::PrintDataTo(StringStream* stream) {
1488 stream->Add("%s ", 1488 stream->Add("%s ",
1489 CodeStub::MajorName(major_key_, false)); 1489 CodeStub::MajorName(major_key_, false));
1490 HUnaryCall::PrintDataTo(stream); 1490 HUnaryCall::PrintDataTo(stream);
1491 } 1491 }
1492 1492
1493 1493
1494 void HUnknownOSRValue::PrintDataTo(StringStream* stream) {
1495 // TODO(titzer): Implement me!
Michael Starzinger 2013/09/09 15:34:44 Hmm, can we, implement this? It was implemented be
1496 }
1497
1498
1494 void HInstanceOf::PrintDataTo(StringStream* stream) { 1499 void HInstanceOf::PrintDataTo(StringStream* stream) {
1495 left()->PrintNameTo(stream); 1500 left()->PrintNameTo(stream);
1496 stream->Add(" "); 1501 stream->Add(" ");
1497 right()->PrintNameTo(stream); 1502 right()->PrintNameTo(stream);
1498 stream->Add(" "); 1503 stream->Add(" ");
1499 context()->PrintNameTo(stream); 1504 context()->PrintNameTo(stream);
1500 } 1505 }
1501 1506
1502 1507
1503 Range* HValue::InferRange(Zone* zone) { 1508 Range* HValue::InferRange(Zone* zone) {
(...skipping 2724 matching lines...) Expand 10 before | Expand all | Expand 10 after
4228 break; 4233 break;
4229 case kExternalMemory: 4234 case kExternalMemory:
4230 stream->Add("[external-memory]"); 4235 stream->Add("[external-memory]");
4231 break; 4236 break;
4232 } 4237 }
4233 4238
4234 stream->Add("@%d", offset()); 4239 stream->Add("@%d", offset());
4235 } 4240 }
4236 4241
4237 } } // namespace v8::internal 4242 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698