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

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

Issue 7085034: Reapply change to Pass undefined to JS builtins when called with (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | « src/x64/builtins-x64.cc ('k') | src/x64/lithium-codegen-x64.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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 SetFunctionPosition(function()); 124 SetFunctionPosition(function());
125 Comment cmnt(masm_, "[ function compiled by full code generator"); 125 Comment cmnt(masm_, "[ function compiled by full code generator");
126 126
127 #ifdef DEBUG 127 #ifdef DEBUG
128 if (strlen(FLAG_stop_at) > 0 && 128 if (strlen(FLAG_stop_at) > 0 &&
129 info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) { 129 info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
130 __ int3(); 130 __ int3();
131 } 131 }
132 #endif 132 #endif
133 133
134 // Strict mode functions need to replace the receiver with undefined 134 // Strict mode functions and builtins need to replace the receiver
135 // when called as functions (without an explicit receiver 135 // with undefined when called as functions (without an explicit
136 // object). rcx is zero for method calls and non-zero for function 136 // receiver object). rcx is zero for method calls and non-zero for
137 // calls. 137 // function calls.
138 if (info->is_strict_mode()) { 138 if (info->is_strict_mode() || info->is_native()) {
139 Label ok; 139 Label ok;
140 __ testq(rcx, rcx); 140 __ testq(rcx, rcx);
141 __ j(zero, &ok, Label::kNear); 141 __ j(zero, &ok, Label::kNear);
142 // +1 for return address. 142 // +1 for return address.
143 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize; 143 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize;
144 __ LoadRoot(kScratchRegister, Heap::kUndefinedValueRootIndex); 144 __ LoadRoot(kScratchRegister, Heap::kUndefinedValueRootIndex);
145 __ movq(Operand(rsp, receiver_offset), kScratchRegister); 145 __ movq(Operand(rsp, receiver_offset), kScratchRegister);
146 __ bind(&ok); 146 __ bind(&ok);
147 } 147 }
148 148
(...skipping 4161 matching lines...) Expand 10 before | Expand all | Expand 10 after
4310 __ ret(0); 4310 __ ret(0);
4311 } 4311 }
4312 4312
4313 4313
4314 #undef __ 4314 #undef __
4315 4315
4316 4316
4317 } } // namespace v8::internal 4317 } } // namespace v8::internal
4318 4318
4319 #endif // V8_TARGET_ARCH_X64 4319 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/builtins-x64.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698