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

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

Issue 11864013: Make HCheckPrototypeMaps compatible with parallel recompilation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 7 years, 11 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/lithium-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 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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 return ""; 1198 return "";
1199 } 1199 }
1200 1200
1201 void HCheckInstanceType::PrintDataTo(StringStream* stream) { 1201 void HCheckInstanceType::PrintDataTo(StringStream* stream) {
1202 stream->Add("%s ", GetCheckName()); 1202 stream->Add("%s ", GetCheckName());
1203 HUnaryOperation::PrintDataTo(stream); 1203 HUnaryOperation::PrintDataTo(stream);
1204 } 1204 }
1205 1205
1206 1206
1207 void HCheckPrototypeMaps::PrintDataTo(StringStream* stream) { 1207 void HCheckPrototypeMaps::PrintDataTo(StringStream* stream) {
1208 stream->Add("[receiver_prototype=%p,holder=%p]", *prototype(), *holder()); 1208 stream->Add("[receiver_prototype=%p,holder=%p]",
1209 *prototypes_.first(), *prototypes_.last());
1209 } 1210 }
1210 1211
1211 1212
1212 void HCallStub::PrintDataTo(StringStream* stream) { 1213 void HCallStub::PrintDataTo(StringStream* stream) {
1213 stream->Add("%s ", 1214 stream->Add("%s ",
1214 CodeStub::MajorName(major_key_, false)); 1215 CodeStub::MajorName(major_key_, false));
1215 HUnaryCall::PrintDataTo(stream); 1216 HUnaryCall::PrintDataTo(stream);
1216 } 1217 }
1217 1218
1218 1219
(...skipping 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after
2804 2805
2805 2806
2806 void HCheckFunction::Verify() { 2807 void HCheckFunction::Verify() {
2807 HInstruction::Verify(); 2808 HInstruction::Verify();
2808 ASSERT(HasNoUses()); 2809 ASSERT(HasNoUses());
2809 } 2810 }
2810 2811
2811 #endif 2812 #endif
2812 2813
2813 } } // namespace v8::internal 2814 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698