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

Side by Side Diff: src/mips/builtins-mips.cc

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Reupload due to weird codereview site error Created 7 years, 3 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 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 static void GenerateMakeCodeYoungAgainCommon(MacroAssembler* masm) { 876 static void GenerateMakeCodeYoungAgainCommon(MacroAssembler* masm) {
877 // For now, we are relying on the fact that make_code_young doesn't do any 877 // For now, we are relying on the fact that make_code_young doesn't do any
878 // garbage collection which allows us to save/restore the registers without 878 // garbage collection which allows us to save/restore the registers without
879 // worrying about which of them contain pointers. We also don't build an 879 // worrying about which of them contain pointers. We also don't build an
880 // internal frame to make the code faster, since we shouldn't have to do stack 880 // internal frame to make the code faster, since we shouldn't have to do stack
881 // crawls in MakeCodeYoung. This seems a bit fragile. 881 // crawls in MakeCodeYoung. This seems a bit fragile.
882 882
883 __ mov(a0, ra); 883 __ mov(a0, ra);
884 // Adjust a0 to point to the head of the PlatformCodeAge sequence 884 // Adjust a0 to point to the head of the PlatformCodeAge sequence
885 __ Subu(a0, a0, 885 __ Subu(a0, a0,
886 Operand((kNoCodeAgeSequenceLength - 1) * Assembler::kInstrSize)); 886 Operand((kCodeAgeSequenceLength - 1) * Assembler::kInstrSize));
887 // Restore the original return address of the function 887 // Restore the original return address of the function
888 __ mov(ra, at); 888 __ mov(ra, at);
889 889
890 // The following registers must be saved and restored when calling through to 890 // The following registers must be saved and restored when calling through to
891 // the runtime: 891 // the runtime:
892 // a0 - contains return address (beginning of patch sequence) 892 // a0 - contains return address (beginning of patch sequence)
893 // a1 - function object 893 // a1 - function object
894 RegList saved_regs = 894 RegList saved_regs =
895 (a0.bit() | a1.bit() | ra.bit() | fp.bit()) & ~sp.bit(); 895 (a0.bit() | a1.bit() | ra.bit() | fp.bit()) & ~sp.bit();
896 FrameScope scope(masm, StackFrame::MANUAL); 896 FrameScope scope(masm, StackFrame::MANUAL);
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 __ bind(&dont_adapt_arguments); 1523 __ bind(&dont_adapt_arguments);
1524 __ Jump(a3); 1524 __ Jump(a3);
1525 } 1525 }
1526 1526
1527 1527
1528 #undef __ 1528 #undef __
1529 1529
1530 } } // namespace v8::internal 1530 } } // namespace v8::internal
1531 1531
1532 #endif // V8_TARGET_ARCH_MIPS 1532 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698