OLD | NEW |
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 Loading... |
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 |
OLD | NEW |