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 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 // Non-smi: call stub leaving result in accumulator register. | 1402 // Non-smi: call stub leaving result in accumulator register. |
1403 __ CallStub(&stub); | 1403 __ CallStub(&stub); |
1404 __ b(&done); | 1404 __ b(&done); |
1405 // Perform operation directly on Smis. | 1405 // Perform operation directly on Smis. |
1406 __ bind(&smi); | 1406 __ bind(&smi); |
1407 __ mvn(result_register(), Operand(result_register())); | 1407 __ mvn(result_register(), Operand(result_register())); |
1408 // Bit-clear inverted smi-tag. | 1408 // Bit-clear inverted smi-tag. |
1409 __ bic(result_register(), result_register(), Operand(kSmiTagMask)); | 1409 __ bic(result_register(), result_register(), Operand(kSmiTagMask)); |
1410 __ bind(&done); | 1410 __ bind(&done); |
1411 Apply(context_, result_register()); | 1411 Apply(context_, result_register()); |
| 1412 break; |
1412 } | 1413 } |
1413 | 1414 |
1414 default: | 1415 default: |
1415 UNREACHABLE(); | 1416 UNREACHABLE(); |
1416 } | 1417 } |
1417 } | 1418 } |
1418 | 1419 |
1419 | 1420 |
1420 void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { | 1421 void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
1421 Comment cmnt(masm_, "[ CountOperation"); | 1422 Comment cmnt(masm_, "[ CountOperation"); |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1760 __ pop(result_register()); | 1761 __ pop(result_register()); |
1761 ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize); | 1762 ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize); |
1762 __ mov(r1, Operand(r1, ASR, 1)); // Un-smi-tag value. | 1763 __ mov(r1, Operand(r1, ASR, 1)); // Un-smi-tag value. |
1763 __ add(pc, r1, Operand(masm_->CodeObject())); | 1764 __ add(pc, r1, Operand(masm_->CodeObject())); |
1764 } | 1765 } |
1765 | 1766 |
1766 | 1767 |
1767 #undef __ | 1768 #undef __ |
1768 | 1769 |
1769 } } // namespace v8::internal | 1770 } } // namespace v8::internal |
OLD | NEW |