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

Side by Side Diff: src/objects.cc

Issue 16381006: Change PC for OSR entries to point to something more sensible (i.e. the first UnknownOsrValue), rem… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add --always-osr flag. Created 7 years, 5 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/mips/lithium-mips.cc ('k') | src/runtime-profiler.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 10430 matching lines...) Expand 10 before | Expand all | Expand 10 after
10441 case Translation::SETTER_STUB_FRAME: { 10441 case Translation::SETTER_STUB_FRAME: {
10442 int function_id = iterator.Next(); 10442 int function_id = iterator.Next();
10443 JSFunction* function = 10443 JSFunction* function =
10444 JSFunction::cast(LiteralArray()->get(function_id)); 10444 JSFunction::cast(LiteralArray()->get(function_id));
10445 PrintF(out, "{function="); 10445 PrintF(out, "{function=");
10446 function->PrintName(out); 10446 function->PrintName(out);
10447 PrintF(out, "}"); 10447 PrintF(out, "}");
10448 break; 10448 break;
10449 } 10449 }
10450 10450
10451 case Translation::DUPLICATE:
10452 break;
10453
10454 case Translation::REGISTER: { 10451 case Translation::REGISTER: {
10455 int reg_code = iterator.Next(); 10452 int reg_code = iterator.Next();
10456 PrintF(out, "{input=%s}", converter.NameOfCPURegister(reg_code)); 10453 PrintF(out, "{input=%s}", converter.NameOfCPURegister(reg_code));
10457 break; 10454 break;
10458 } 10455 }
10459 10456
10460 case Translation::INT32_REGISTER: { 10457 case Translation::INT32_REGISTER: {
10461 int reg_code = iterator.Next(); 10458 int reg_code = iterator.Next();
10462 PrintF(out, "{input=%s}", converter.NameOfCPURegister(reg_code)); 10459 PrintF(out, "{input=%s}", converter.NameOfCPURegister(reg_code));
10463 break; 10460 break;
(...skipping 5291 matching lines...) Expand 10 before | Expand all | Expand 10 after
15755 return static_cast<Type*>(type_raw()); 15752 return static_cast<Type*>(type_raw());
15756 } 15753 }
15757 15754
15758 15755
15759 void PropertyCell::set_type(Type* type, WriteBarrierMode ignored) { 15756 void PropertyCell::set_type(Type* type, WriteBarrierMode ignored) {
15760 set_type_raw(type, ignored); 15757 set_type_raw(type, ignored);
15761 } 15758 }
15762 15759
15763 15760
15764 } } // namespace v8::internal 15761 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/runtime-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698