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

Side by Side Diff: src/ia32/virtual-frame-ia32.cc

Issue 647018: Introduce 'trivial' expressions, use them for this property assignments. (Closed)
Patch Set: Created 10 years, 10 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
« no previous file with comments | « src/ia32/virtual-frame-ia32.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 1168
1169 1169
1170 void VirtualFrame::EmitPush(Immediate immediate, NumberInfo::Type info) { 1170 void VirtualFrame::EmitPush(Immediate immediate, NumberInfo::Type info) {
1171 ASSERT(stack_pointer_ == element_count() - 1); 1171 ASSERT(stack_pointer_ == element_count() - 1);
1172 elements_.Add(FrameElement::MemoryElement(info)); 1172 elements_.Add(FrameElement::MemoryElement(info));
1173 stack_pointer_++; 1173 stack_pointer_++;
1174 __ push(immediate); 1174 __ push(immediate);
1175 } 1175 }
1176 1176
1177 1177
1178 void VirtualFrame::Push(Expression* expr) {
1179 ASSERT(expr->IsTrivial());
1180
1181 Literal* lit = expr->AsLiteral();
1182 if (lit != NULL) {
1183 Push(lit->handle());
1184 return;
1185 }
1186
1187 VariableProxy* proxy = expr->AsVariableProxy();
1188 if (proxy != NULL && proxy->is_this()) {
1189 PushParameterAt(-1);
1190 return;
1191 }
1192
1193 UNREACHABLE();
1194 }
1195
1196
1178 #undef __ 1197 #undef __
1179 1198
1180 } } // namespace v8::internal 1199 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ia32/virtual-frame-ia32.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698