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

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: 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
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 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 return ""; 1186 return "";
1187 } 1187 }
1188 1188
1189 void HCheckInstanceType::PrintDataTo(StringStream* stream) { 1189 void HCheckInstanceType::PrintDataTo(StringStream* stream) {
1190 stream->Add("%s ", GetCheckName()); 1190 stream->Add("%s ", GetCheckName());
1191 HUnaryOperation::PrintDataTo(stream); 1191 HUnaryOperation::PrintDataTo(stream);
1192 } 1192 }
1193 1193
1194 1194
1195 void HCheckPrototypeMaps::PrintDataTo(StringStream* stream) { 1195 void HCheckPrototypeMaps::PrintDataTo(StringStream* stream) {
1196 stream->Add("[receiver_prototype=%p,holder=%p]", *prototype(), *holder()); 1196 stream->Add("[receiver_prototype=%p,holder=%p]",
1197 *prototypes_.first(), *prototypes_.last());
1197 } 1198 }
1198 1199
1199 1200
1200 void HCallStub::PrintDataTo(StringStream* stream) { 1201 void HCallStub::PrintDataTo(StringStream* stream) {
1201 stream->Add("%s ", 1202 stream->Add("%s ",
1202 CodeStub::MajorName(major_key_, false)); 1203 CodeStub::MajorName(major_key_, false));
1203 HUnaryCall::PrintDataTo(stream); 1204 HUnaryCall::PrintDataTo(stream);
1204 } 1205 }
1205 1206
1206 1207
(...skipping 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after
2792 2793
2793 2794
2794 void HCheckFunction::Verify() { 2795 void HCheckFunction::Verify() {
2795 HInstruction::Verify(); 2796 HInstruction::Verify();
2796 ASSERT(HasNoUses()); 2797 ASSERT(HasNoUses());
2797 } 2798 }
2798 2799
2799 #endif 2800 #endif
2800 2801
2801 } } // namespace v8::internal 2802 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698