| OLD | NEW |
| 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 4346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4357 | 4357 |
| 4358 default: | 4358 default: |
| 4359 UNREACHABLE(); | 4359 UNREACHABLE(); |
| 4360 } | 4360 } |
| 4361 } | 4361 } |
| 4362 | 4362 |
| 4363 | 4363 |
| 4364 void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr, | 4364 void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr, |
| 4365 const char* comment) { | 4365 const char* comment) { |
| 4366 Comment cmt(masm_, comment); | 4366 Comment cmt(masm_, comment); |
| 4367 bool can_overwrite = expr->expression()->ResultOverwriteAllowed(); | 4367 UnaryOpStub stub(expr->op()); |
| 4368 UnaryOverwriteMode overwrite = | |
| 4369 can_overwrite ? UNARY_OVERWRITE : UNARY_NO_OVERWRITE; | |
| 4370 UnaryOpStub stub(expr->op(), overwrite); | |
| 4371 // UnaryOpStub expects the argument to be in the | 4368 // UnaryOpStub expects the argument to be in the |
| 4372 // accumulator register eax. | 4369 // accumulator register eax. |
| 4373 VisitForAccumulatorValue(expr->expression()); | 4370 VisitForAccumulatorValue(expr->expression()); |
| 4374 SetSourcePosition(expr->position()); | 4371 SetSourcePosition(expr->position()); |
| 4375 CallIC(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, | 4372 CallIC(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, |
| 4376 expr->UnaryOperationFeedbackId()); | 4373 expr->UnaryOperationFeedbackId()); |
| 4377 context()->Plug(eax); | 4374 context()->Plug(eax); |
| 4378 } | 4375 } |
| 4379 | 4376 |
| 4380 | 4377 |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4919 *stack_depth = 0; | 4916 *stack_depth = 0; |
| 4920 *context_length = 0; | 4917 *context_length = 0; |
| 4921 return previous_; | 4918 return previous_; |
| 4922 } | 4919 } |
| 4923 | 4920 |
| 4924 #undef __ | 4921 #undef __ |
| 4925 | 4922 |
| 4926 } } // namespace v8::internal | 4923 } } // namespace v8::internal |
| 4927 | 4924 |
| 4928 #endif // V8_TARGET_ARCH_IA32 | 4925 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |