| 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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 } | 763 } |
| 764 | 764 |
| 765 enum SmiCodeGenerateHeapNumberResults { | 765 enum SmiCodeGenerateHeapNumberResults { |
| 766 ALLOW_HEAPNUMBER_RESULTS, | 766 ALLOW_HEAPNUMBER_RESULTS, |
| 767 NO_HEAPNUMBER_RESULTS | 767 NO_HEAPNUMBER_RESULTS |
| 768 }; | 768 }; |
| 769 | 769 |
| 770 private: | 770 private: |
| 771 Token::Value op_; | 771 Token::Value op_; |
| 772 OverwriteMode mode_; | 772 OverwriteMode mode_; |
| 773 bool platform_specific_bit_; // Indicates SSE3 on IA32, VFP2 on ARM. | 773 bool platform_specific_bit_; // Indicates SSE3 on IA32. |
| 774 | 774 |
| 775 // Operand type information determined at runtime. | 775 // Operand type information determined at runtime. |
| 776 BinaryOpIC::TypeInfo left_type_; | 776 BinaryOpIC::TypeInfo left_type_; |
| 777 BinaryOpIC::TypeInfo right_type_; | 777 BinaryOpIC::TypeInfo right_type_; |
| 778 BinaryOpIC::TypeInfo result_type_; | 778 BinaryOpIC::TypeInfo result_type_; |
| 779 | 779 |
| 780 virtual void PrintName(StringStream* stream); | 780 virtual void PrintName(StringStream* stream); |
| 781 | 781 |
| 782 // Minor key encoding in 19 bits TTTRRRLLLSOOOOOOOMM. | 782 // Minor key encoding in 19 bits TTTRRRLLLSOOOOOOOMM. |
| 783 class ModeBits: public BitField<OverwriteMode, 0, 2> {}; | 783 class ModeBits: public BitField<OverwriteMode, 0, 2> {}; |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 | 1681 |
| 1682 // The current function entry hook. | 1682 // The current function entry hook. |
| 1683 static FunctionEntryHook entry_hook_; | 1683 static FunctionEntryHook entry_hook_; |
| 1684 | 1684 |
| 1685 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); | 1685 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); |
| 1686 }; | 1686 }; |
| 1687 | 1687 |
| 1688 } } // namespace v8::internal | 1688 } } // namespace v8::internal |
| 1689 | 1689 |
| 1690 #endif // V8_CODE_STUBS_H_ | 1690 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |