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

Side by Side Diff: src/arm/code-stubs-arm.cc

Issue 16950004: Reduce the amount of full code generated to fill out array literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/arm/full-codegen-arm.cc » ('j') | src/hydrogen.cc » ('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 7044 matching lines...) Expand 10 before | Expand all | Expand 10 after
7055 7055
7056 __ bind(&need_incremental); 7056 __ bind(&need_incremental);
7057 7057
7058 // Fall through when we need to inform the incremental marker. 7058 // Fall through when we need to inform the incremental marker.
7059 } 7059 }
7060 7060
7061 7061
7062 void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) { 7062 void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
7063 // ----------- S t a t e ------------- 7063 // ----------- S t a t e -------------
7064 // -- r0 : element value to store 7064 // -- r0 : element value to store
7065 // -- r1 : array literal
7066 // -- r2 : map of array literal
7067 // -- r3 : element index as smi 7065 // -- r3 : element index as smi
7068 // -- r4 : array literal index in function as smi 7066 // -- sp[0] : array literal index in function as smi
7067 // -- sp[4] : array literal
7068 // clobbers r1, r2, r4
7069 // ----------------------------------- 7069 // -----------------------------------
7070 7070
7071 Label element_done; 7071 Label element_done;
7072 Label double_elements; 7072 Label double_elements;
7073 Label smi_element; 7073 Label smi_element;
7074 Label slow_elements; 7074 Label slow_elements;
7075 Label fast_elements; 7075 Label fast_elements;
7076 7076
7077 // Get array literal index, array literal and its map.
7078 __ ldr(r4, MemOperand(sp, 0 * kPointerSize));
7079 __ ldr(r1, MemOperand(sp, 1 * kPointerSize));
7080 __ ldr(r2, FieldMemOperand(r1, JSObject::kMapOffset));
7081
7077 __ CheckFastElements(r2, r5, &double_elements); 7082 __ CheckFastElements(r2, r5, &double_elements);
7078 // FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS 7083 // FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS
7079 __ JumpIfSmi(r0, &smi_element); 7084 __ JumpIfSmi(r0, &smi_element);
7080 __ CheckFastSmiElements(r2, r5, &fast_elements); 7085 __ CheckFastSmiElements(r2, r5, &fast_elements);
7081 7086
7082 // Store into the array literal requires a elements transition. Call into 7087 // Store into the array literal requires a elements transition. Call into
7083 // the runtime. 7088 // the runtime.
7084 __ bind(&slow_elements); 7089 __ bind(&slow_elements);
7085 // call. 7090 // call.
7086 __ Push(r1, r3, r0); 7091 __ Push(r1, r3, r0);
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
7490 __ Jump(generic_construct_stub, RelocInfo::CODE_TARGET); 7495 __ Jump(generic_construct_stub, RelocInfo::CODE_TARGET);
7491 } 7496 }
7492 } 7497 }
7493 7498
7494 7499
7495 #undef __ 7500 #undef __
7496 7501
7497 } } // namespace v8::internal 7502 } } // namespace v8::internal
7498 7503
7499 #endif // V8_TARGET_ARCH_ARM 7504 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/full-codegen-arm.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698