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

Side by Side Diff: src/ia32/full-codegen-ia32.cc

Issue 6815029: Merge (7180:7265] from bleeding_edge to the experimental/gc branch.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 8 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 | « src/ia32/disasm-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // Receiver is just before the parameters on the caller's stack. 190 // Receiver is just before the parameters on the caller's stack.
191 int offset = scope()->num_parameters() * kPointerSize; 191 int offset = scope()->num_parameters() * kPointerSize;
192 __ lea(edx, 192 __ lea(edx,
193 Operand(ebp, StandardFrameConstants::kCallerSPOffset + offset)); 193 Operand(ebp, StandardFrameConstants::kCallerSPOffset + offset));
194 __ push(edx); 194 __ push(edx);
195 __ push(Immediate(Smi::FromInt(scope()->num_parameters()))); 195 __ push(Immediate(Smi::FromInt(scope()->num_parameters())));
196 // Arguments to ArgumentsAccessStub: 196 // Arguments to ArgumentsAccessStub:
197 // function, receiver address, parameter count. 197 // function, receiver address, parameter count.
198 // The stub will rewrite receiver and parameter count if the previous 198 // The stub will rewrite receiver and parameter count if the previous
199 // stack frame was an arguments adapter frame. 199 // stack frame was an arguments adapter frame.
200 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT); 200 ArgumentsAccessStub stub(
201 is_strict_mode() ? ArgumentsAccessStub::NEW_STRICT
202 : ArgumentsAccessStub::NEW_NON_STRICT);
201 __ CallStub(&stub); 203 __ CallStub(&stub);
202 204
203 Variable* arguments_shadow = scope()->arguments_shadow(); 205 Variable* arguments_shadow = scope()->arguments_shadow();
204 if (arguments_shadow != NULL) { 206 if (arguments_shadow != NULL) {
205 __ mov(ecx, eax); // Duplicate result. 207 __ mov(ecx, eax); // Duplicate result.
206 Move(arguments_shadow->AsSlot(), ecx, ebx, edx); 208 Move(arguments_shadow->AsSlot(), ecx, ebx, edx);
207 } 209 }
208 Move(arguments->AsSlot(), eax, ebx, edx); 210 Move(arguments->AsSlot(), eax, ebx, edx);
209 } 211 }
210 212
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info, 1013 void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info,
1012 bool pretenure) { 1014 bool pretenure) {
1013 // Use the fast case closure allocation code that allocates in new 1015 // Use the fast case closure allocation code that allocates in new
1014 // space for nested functions that don't need literals cloning. If 1016 // space for nested functions that don't need literals cloning. If
1015 // we're running with the --always-opt or the --prepare-always-opt 1017 // we're running with the --always-opt or the --prepare-always-opt
1016 // flag, we need to use the runtime function so that the new function 1018 // flag, we need to use the runtime function so that the new function
1017 // we are creating here gets a chance to have its code optimized and 1019 // we are creating here gets a chance to have its code optimized and
1018 // doesn't just get a copy of the existing unoptimized code. 1020 // doesn't just get a copy of the existing unoptimized code.
1019 if (!FLAG_always_opt && 1021 if (!FLAG_always_opt &&
1020 !FLAG_prepare_always_opt && 1022 !FLAG_prepare_always_opt &&
1023 !pretenure &&
1021 scope()->is_function_scope() && 1024 scope()->is_function_scope() &&
1022 info->num_literals() == 0 && 1025 info->num_literals() == 0) {
1023 !pretenure) { 1026 FastNewClosureStub stub(info->strict_mode() ? kStrictMode : kNonStrictMode);
1024 FastNewClosureStub stub;
1025 __ push(Immediate(info)); 1027 __ push(Immediate(info));
1026 __ CallStub(&stub); 1028 __ CallStub(&stub);
1027 } else { 1029 } else {
1028 __ push(esi); 1030 __ push(esi);
1029 __ push(Immediate(info)); 1031 __ push(Immediate(info));
1030 __ push(Immediate(pretenure 1032 __ push(Immediate(pretenure
1031 ? Factory::true_value() 1033 ? Factory::true_value()
1032 : Factory::false_value())); 1034 : Factory::false_value()));
1033 __ CallRuntime(Runtime::kNewClosure, 3); 1035 __ CallRuntime(Runtime::kNewClosure, 3);
1034 } 1036 }
(...skipping 3231 matching lines...) Expand 10 before | Expand all | Expand 10 after
4266 // And return. 4268 // And return.
4267 __ ret(0); 4269 __ ret(0);
4268 } 4270 }
4269 4271
4270 4272
4271 #undef __ 4273 #undef __
4272 4274
4273 } } // namespace v8::internal 4275 } } // namespace v8::internal
4274 4276
4275 #endif // V8_TARGET_ARCH_IA32 4277 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/disasm-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698