| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 } | 739 } |
| 740 | 740 |
| 741 enum SmiCodeGenerateHeapNumberResults { | 741 enum SmiCodeGenerateHeapNumberResults { |
| 742 ALLOW_HEAPNUMBER_RESULTS, | 742 ALLOW_HEAPNUMBER_RESULTS, |
| 743 NO_HEAPNUMBER_RESULTS | 743 NO_HEAPNUMBER_RESULTS |
| 744 }; | 744 }; |
| 745 | 745 |
| 746 private: | 746 private: |
| 747 Token::Value op_; | 747 Token::Value op_; |
| 748 OverwriteMode mode_; | 748 OverwriteMode mode_; |
| 749 bool platform_specific_bit_; // Indicates SSE3 on IA32, VFP2 on ARM. | 749 bool platform_specific_bit_; // Indicates SSE3 on IA32. |
| 750 | 750 |
| 751 // Operand type information determined at runtime. | 751 // Operand type information determined at runtime. |
| 752 BinaryOpIC::TypeInfo left_type_; | 752 BinaryOpIC::TypeInfo left_type_; |
| 753 BinaryOpIC::TypeInfo right_type_; | 753 BinaryOpIC::TypeInfo right_type_; |
| 754 BinaryOpIC::TypeInfo result_type_; | 754 BinaryOpIC::TypeInfo result_type_; |
| 755 | 755 |
| 756 virtual void PrintName(StringStream* stream); | 756 virtual void PrintName(StringStream* stream); |
| 757 | 757 |
| 758 // Minor key encoding in 19 bits TTTRRRLLLSOOOOOOOMM. | 758 // Minor key encoding in 19 bits TTTRRRLLLSOOOOOOOMM. |
| 759 class ModeBits: public BitField<OverwriteMode, 0, 2> {}; | 759 class ModeBits: public BitField<OverwriteMode, 0, 2> {}; |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1650 | 1650 |
| 1651 // The current function entry hook. | 1651 // The current function entry hook. |
| 1652 static FunctionEntryHook entry_hook_; | 1652 static FunctionEntryHook entry_hook_; |
| 1653 | 1653 |
| 1654 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); | 1654 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); |
| 1655 }; | 1655 }; |
| 1656 | 1656 |
| 1657 } } // namespace v8::internal | 1657 } } // namespace v8::internal |
| 1658 | 1658 |
| 1659 #endif // V8_CODE_STUBS_H_ | 1659 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |