| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 // jcc instructions (je, ja, jae, jb, jbe, je, and jz). | 775 // jcc instructions (je, ja, jae, jb, jbe, je, and jz). |
| 776 void FCmp(); | 776 void FCmp(); |
| 777 | 777 |
| 778 void ClampUint8(Register reg); | 778 void ClampUint8(Register reg); |
| 779 | 779 |
| 780 void ClampDoubleToUint8(XMMRegister input_reg, | 780 void ClampDoubleToUint8(XMMRegister input_reg, |
| 781 XMMRegister temp_xmm_reg, | 781 XMMRegister temp_xmm_reg, |
| 782 Register result_reg, | 782 Register result_reg, |
| 783 Register temp_reg); | 783 Register temp_reg); |
| 784 | 784 |
| 785 void LoadInstanceDescriptors(Register map, Register descriptors); |
| 786 |
| 785 // Abort execution if argument is not a number. Used in debug code. | 787 // Abort execution if argument is not a number. Used in debug code. |
| 786 void AbortIfNotNumber(Register object); | 788 void AbortIfNotNumber(Register object); |
| 787 | 789 |
| 788 // Abort execution if argument is a smi. Used in debug code. | 790 // Abort execution if argument is a smi. Used in debug code. |
| 789 void AbortIfSmi(Register object); | 791 void AbortIfSmi(Register object); |
| 790 | 792 |
| 791 // Abort execution if argument is not a smi. Used in debug code. | 793 // Abort execution if argument is not a smi. Used in debug code. |
| 792 void AbortIfNotSmi(Register object); | 794 void AbortIfNotSmi(Register object); |
| 793 void AbortIfNotSmi(const Operand& object); | 795 void AbortIfNotSmi(const Operand& object); |
| 794 | 796 |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1270 masm->popfd(); \ | 1272 masm->popfd(); \ |
| 1271 } \ | 1273 } \ |
| 1272 masm-> | 1274 masm-> |
| 1273 #else | 1275 #else |
| 1274 #define ACCESS_MASM(masm) masm-> | 1276 #define ACCESS_MASM(masm) masm-> |
| 1275 #endif | 1277 #endif |
| 1276 | 1278 |
| 1277 } } // namespace v8::internal | 1279 } } // namespace v8::internal |
| 1278 | 1280 |
| 1279 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1281 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
| OLD | NEW |