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

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

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: <sigh> upload only the one commit... Created 7 years, 2 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/arm/full-codegen-arm.cc » ('j') | src/objects.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 GenerateMakeCodeYoungAgainCommon(masm); \ 824 GenerateMakeCodeYoungAgainCommon(masm); \
825 } \ 825 } \
826 void Builtins::Generate_Make##C##CodeYoungAgainOddMarking( \ 826 void Builtins::Generate_Make##C##CodeYoungAgainOddMarking( \
827 MacroAssembler* masm) { \ 827 MacroAssembler* masm) { \
828 GenerateMakeCodeYoungAgainCommon(masm); \ 828 GenerateMakeCodeYoungAgainCommon(masm); \
829 } 829 }
830 CODE_AGE_LIST(DEFINE_CODE_AGE_BUILTIN_GENERATOR) 830 CODE_AGE_LIST(DEFINE_CODE_AGE_BUILTIN_GENERATOR)
831 #undef DEFINE_CODE_AGE_BUILTIN_GENERATOR 831 #undef DEFINE_CODE_AGE_BUILTIN_GENERATOR
832 832
833 833
834 void Builtins::Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm) {
835 // For now, as in GenerateMakeCodeYoungAgainCommon, we are relying on the fact
836 // that make_code_young doesn't do any garbage collection which allows us to
837 // save/restore the registers without worrying about which of them contain
838 // pointers.
839
840 // The following registers must be saved and restored when calling through to
841 // the runtime:
842 // r0 - contains return address (beginning of patch sequence)
843 // r1 - isolate
844 FrameScope scope(masm, StackFrame::MANUAL);
845 __ stm(db_w, sp, r0.bit() | r1.bit() | fp.bit() | lr.bit());
846 __ PrepareCallCFunction(1, 0, r2);
847 __ mov(r1, Operand(ExternalReference::isolate_address(masm->isolate())));
848 __ CallCFunction(ExternalReference::get_mark_code_as_executed_function(
849 masm->isolate()), 2);
850 __ ldm(ia_w, sp, r0.bit() | r1.bit() | fp.bit() | lr.bit());
851
852 // Perform prologue operations usually performed by the young code stub.
853 __ stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
854 __ add(fp, sp, Operand(2 * kPointerSize));
855
856 // Jump to point after the code-age stub.
857 __ add(r0, r0, Operand(kNoCodeAgeSequenceLength * Assembler::kInstrSize));
858 __ mov(pc, r0);
859 }
860
861
862 void Builtins::Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm) {
863 GenerateMakeCodeYoungAgainCommon(masm);
864 }
865
866
834 void Builtins::Generate_NotifyStubFailure(MacroAssembler* masm) { 867 void Builtins::Generate_NotifyStubFailure(MacroAssembler* masm) {
835 { 868 {
836 FrameScope scope(masm, StackFrame::INTERNAL); 869 FrameScope scope(masm, StackFrame::INTERNAL);
837 870
838 // Preserve registers across notification, this is important for compiled 871 // Preserve registers across notification, this is important for compiled
839 // stubs that tail call the runtime on deopts passing their parameters in 872 // stubs that tail call the runtime on deopts passing their parameters in
840 // registers. 873 // registers.
841 __ stm(db_w, sp, kJSCallerSaved | kCalleeSaved); 874 __ stm(db_w, sp, kJSCallerSaved | kCalleeSaved);
842 // Pass the function and deoptimization type to the runtime system. 875 // Pass the function and deoptimization type to the runtime system.
843 __ CallRuntime(Runtime::kNotifyStubFailure, 0); 876 __ CallRuntime(Runtime::kNotifyStubFailure, 0);
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 __ bind(&dont_adapt_arguments); 1471 __ bind(&dont_adapt_arguments);
1439 __ Jump(r3); 1472 __ Jump(r3);
1440 } 1473 }
1441 1474
1442 1475
1443 #undef __ 1476 #undef __
1444 1477
1445 } } // namespace v8::internal 1478 } } // namespace v8::internal
1446 1479
1447 #endif // V8_TARGET_ARCH_ARM 1480 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/full-codegen-arm.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698