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

Side by Side Diff: src/disassembler.cc

Issue 12702005: Use IsRuntimeEntry for RUNTIME_ENTRY comparison (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 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/assembler.cc ('k') | src/mips/assembler-mips-inl.h » ('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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 default: 275 default:
276 out.AddFormatted("minor: %d", minor_key); 276 out.AddFormatted("minor: %d", minor_key);
277 } 277 }
278 } 278 }
279 } else { 279 } else {
280 out.AddFormatted(" %s", Code::Kind2String(kind)); 280 out.AddFormatted(" %s", Code::Kind2String(kind));
281 } 281 }
282 if (rmode == RelocInfo::CODE_TARGET_WITH_ID) { 282 if (rmode == RelocInfo::CODE_TARGET_WITH_ID) {
283 out.AddFormatted(" (id = %d)", static_cast<int>(relocinfo.data())); 283 out.AddFormatted(" (id = %d)", static_cast<int>(relocinfo.data()));
284 } 284 }
285 } else if (rmode == RelocInfo::RUNTIME_ENTRY && 285 } else if (RelocInfo::IsRuntimeEntry(rmode) &&
286 isolate->deoptimizer_data() != NULL) { 286 isolate->deoptimizer_data() != NULL) {
287 // A runtime entry reloinfo might be a deoptimization bailout. 287 // A runtime entry reloinfo might be a deoptimization bailout.
288 Address addr = relocinfo.target_address(); 288 Address addr = relocinfo.target_address();
289 int id = Deoptimizer::GetDeoptimizationId(addr, Deoptimizer::EAGER); 289 int id = Deoptimizer::GetDeoptimizationId(addr, Deoptimizer::EAGER);
290 if (id == Deoptimizer::kNotDeoptimizationEntry) { 290 if (id == Deoptimizer::kNotDeoptimizationEntry) {
291 id = Deoptimizer::GetDeoptimizationId(addr, Deoptimizer::LAZY); 291 id = Deoptimizer::GetDeoptimizationId(addr, Deoptimizer::LAZY);
292 if (id == Deoptimizer::kNotDeoptimizationEntry) { 292 if (id == Deoptimizer::kNotDeoptimizationEntry) {
293 out.AddFormatted(" ;; %s", RelocInfo::RelocModeName(rmode)); 293 out.AddFormatted(" ;; %s", RelocInfo::RelocModeName(rmode));
294 } else { 294 } else {
295 out.AddFormatted(" ;; lazy deoptimization bailout %d", id); 295 out.AddFormatted(" ;; lazy deoptimization bailout %d", id);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 349
350 void Disassembler::Dump(FILE* f, byte* begin, byte* end) {} 350 void Disassembler::Dump(FILE* f, byte* begin, byte* end) {}
351 int Disassembler::Decode(Isolate* isolate, FILE* f, byte* begin, byte* end) { 351 int Disassembler::Decode(Isolate* isolate, FILE* f, byte* begin, byte* end) {
352 return 0; 352 return 0;
353 } 353 }
354 void Disassembler::Decode(FILE* f, Code* code) {} 354 void Disassembler::Decode(FILE* f, Code* code) {}
355 355
356 #endif // ENABLE_DISASSEMBLER 356 #endif // ENABLE_DISASSEMBLER
357 357
358 } } // namespace v8::internal 358 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/mips/assembler-mips-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698