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

Side by Side Diff: src/arm/ic-arm.cc

Issue 125044: Fix debugger after inlined keyed store change.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 6 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 | « no previous file | src/debug.cc » ('j') | src/debug.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 void LoadIC::ClearInlinedVersion(Address address) {} 496 void LoadIC::ClearInlinedVersion(Address address) {}
497 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) { 497 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
498 return false; 498 return false;
499 } 499 }
500 500
501 void KeyedLoadIC::ClearInlinedVersion(Address address) {} 501 void KeyedLoadIC::ClearInlinedVersion(Address address) {}
502 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) { 502 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
503 return false; 503 return false;
504 } 504 }
505 505
506 void KeyedStoreIC::ClearInlinedVersion(Address address) {}
507 void KeyedStoreIC::RestoreInlinedVersion(Address address) {}
508 bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
509 return false;
510 }
511
506 512
507 Object* KeyedLoadIC_Miss(Arguments args); 513 Object* KeyedLoadIC_Miss(Arguments args);
508 514
509 515
510 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { 516 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
511 Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss))); 517 Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss)));
512 } 518 }
513 519
514 520
515 void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) { 521 void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 794
789 // Perform tail call to the entry. 795 // Perform tail call to the entry.
790 __ TailCallRuntime(f, 3); 796 __ TailCallRuntime(f, 3);
791 } 797 }
792 798
793 799
794 #undef __ 800 #undef __
795 801
796 802
797 } } // namespace v8::internal 803 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/debug.cc » ('j') | src/debug.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698