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

Side by Side Diff: src/builtins.cc

Issue 13284: Fixed Linux build by removing unused code. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years 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 | no next file » | no next file with comments »
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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { 572 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) {
573 Debug::GenerateKeyedLoadICDebugBreak(masm); 573 Debug::GenerateKeyedLoadICDebugBreak(masm);
574 } 574 }
575 575
576 576
577 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { 577 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) {
578 Debug::GenerateKeyedStoreICDebugBreak(masm); 578 Debug::GenerateKeyedStoreICDebugBreak(masm);
579 } 579 }
580 580
581 581
582 static void Generate_CallIC_DebugBreak(MacroAssembler* masm) {
583 Debug::GenerateCallICDebugBreak(masm);
584 }
585
586
587 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { 582 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) {
588 Debug::GenerateConstructCallDebugBreak(masm); 583 Debug::GenerateConstructCallDebugBreak(masm);
589 } 584 }
590 585
591 586
592 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 587 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
593 Debug::GenerateReturnDebugBreak(masm); 588 Debug::GenerateReturnDebugBreak(masm);
594 } 589 }
595 590
596 591
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 if (entry->contains(pc)) { 735 if (entry->contains(pc)) {
741 return names_[i]; 736 return names_[i];
742 } 737 }
743 } 738 }
744 } 739 }
745 return NULL; 740 return NULL;
746 } 741 }
747 742
748 743
749 } } // namespace v8::internal 744 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698