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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // Actual value of root register is offset from the root array's start | 46 // Actual value of root register is offset from the root array's start |
47 // to take advantage of negitive 8-bit displacement values. | 47 // to take advantage of negitive 8-bit displacement values. |
48 const int kRootRegisterBias = 128; | 48 const int kRootRegisterBias = 128; |
49 | 49 |
50 // Convenience for platform-independent signatures. | 50 // Convenience for platform-independent signatures. |
51 typedef Operand MemOperand; | 51 typedef Operand MemOperand; |
52 | 52 |
53 enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET }; | 53 enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET }; |
54 enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK }; | 54 enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK }; |
55 | 55 |
| 56 enum SmiOperationConstraint { |
| 57 PRESERVE_SOURCE_REGISTER, |
| 58 BAILOUT_ON_NO_OVERFLOW, |
| 59 BAILOUT_ON_OVERFLOW, |
| 60 NUMBER_OF_CONSTRAINTS |
| 61 }; |
| 62 |
| 63 STATIC_ASSERT(NUMBER_OF_CONSTRAINTS <= 8); |
| 64 |
| 65 class SmiOperationExecutionMode : public EnumSet<SmiOperationConstraint, byte> { |
| 66 public: |
| 67 SmiOperationExecutionMode() : EnumSet<SmiOperationConstraint, byte>(0) { } |
| 68 explicit SmiOperationExecutionMode(byte bits) |
| 69 : EnumSet<SmiOperationConstraint, byte>(bits) { } |
| 70 }; |
| 71 |
56 bool AreAliased(Register r1, Register r2, Register r3, Register r4); | 72 bool AreAliased(Register r1, Register r2, Register r3, Register r4); |
57 | 73 |
58 // Forward declaration. | 74 // Forward declaration. |
59 class JumpTarget; | 75 class JumpTarget; |
60 | 76 |
61 struct SmiIndex { | 77 struct SmiIndex { |
62 SmiIndex(Register index_register, ScaleFactor scale) | 78 SmiIndex(Register index_register, ScaleFactor scale) |
63 : reg(index_register), | 79 : reg(index_register), |
64 scale(scale) {} | 80 scale(scale) {} |
65 Register reg; | 81 Register reg; |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 | 554 |
539 // Add an integer constant to a tagged smi, giving a tagged smi as result. | 555 // Add an integer constant to a tagged smi, giving a tagged smi as result. |
540 // No overflow testing on the result is done. | 556 // No overflow testing on the result is done. |
541 void SmiAddConstant(const Operand& dst, Smi* constant); | 557 void SmiAddConstant(const Operand& dst, Smi* constant); |
542 | 558 |
543 // Add an integer constant to a tagged smi, giving a tagged smi as result, | 559 // Add an integer constant to a tagged smi, giving a tagged smi as result, |
544 // or jumping to a label if the result cannot be represented by a smi. | 560 // or jumping to a label if the result cannot be represented by a smi. |
545 void SmiAddConstant(Register dst, | 561 void SmiAddConstant(Register dst, |
546 Register src, | 562 Register src, |
547 Smi* constant, | 563 Smi* constant, |
548 Label* on_not_smi_result, | 564 SmiOperationExecutionMode mode, |
| 565 Label* bailout_label, |
549 Label::Distance near_jump = Label::kFar); | 566 Label::Distance near_jump = Label::kFar); |
550 | 567 |
551 // Subtract an integer constant from a tagged smi, giving a tagged smi as | 568 // Subtract an integer constant from a tagged smi, giving a tagged smi as |
552 // result. No testing on the result is done. Sets the N and Z flags | 569 // result. No testing on the result is done. Sets the N and Z flags |
553 // based on the value of the resulting integer. | 570 // based on the value of the resulting integer. |
554 void SmiSubConstant(Register dst, Register src, Smi* constant); | 571 void SmiSubConstant(Register dst, Register src, Smi* constant); |
555 | 572 |
556 // Subtract an integer constant from a tagged smi, giving a tagged smi as | 573 // Subtract an integer constant from a tagged smi, giving a tagged smi as |
557 // result, or jumping to a label if the result cannot be represented by a smi. | 574 // result, or jumping to a label if the result cannot be represented by a smi. |
558 void SmiSubConstant(Register dst, | 575 void SmiSubConstant(Register dst, |
559 Register src, | 576 Register src, |
560 Smi* constant, | 577 Smi* constant, |
561 Label* on_not_smi_result, | 578 SmiOperationExecutionMode mode, |
| 579 Label* bailout_label, |
562 Label::Distance near_jump = Label::kFar); | 580 Label::Distance near_jump = Label::kFar); |
563 | 581 |
564 // Negating a smi can give a negative zero or too large positive value. | 582 // Negating a smi can give a negative zero or too large positive value. |
565 // NOTICE: This operation jumps on success, not failure! | 583 // NOTICE: This operation jumps on success, not failure! |
566 void SmiNeg(Register dst, | 584 void SmiNeg(Register dst, |
567 Register src, | 585 Register src, |
568 Label* on_smi_result, | 586 Label* on_smi_result, |
569 Label::Distance near_jump = Label::kFar); | 587 Label::Distance near_jump = Label::kFar); |
570 | 588 |
571 // Adds smi values and return the result as a smi. | 589 // Adds smi values and return the result as a smi. |
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1583 masm->popfq(); \ | 1601 masm->popfq(); \ |
1584 } \ | 1602 } \ |
1585 masm-> | 1603 masm-> |
1586 #else | 1604 #else |
1587 #define ACCESS_MASM(masm) masm-> | 1605 #define ACCESS_MASM(masm) masm-> |
1588 #endif | 1606 #endif |
1589 | 1607 |
1590 } } // namespace v8::internal | 1608 } } // namespace v8::internal |
1591 | 1609 |
1592 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1610 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |