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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 explicit LNumberTagI(LOperand* value) { | 1429 explicit LNumberTagI(LOperand* value) { |
1430 inputs_[0] = value; | 1430 inputs_[0] = value; |
1431 } | 1431 } |
1432 | 1432 |
1433 DECLARE_CONCRETE_INSTRUCTION(NumberTagI, "number-tag-i") | 1433 DECLARE_CONCRETE_INSTRUCTION(NumberTagI, "number-tag-i") |
1434 }; | 1434 }; |
1435 | 1435 |
1436 | 1436 |
1437 class LNumberTagD: public LTemplateInstruction<1, 1, 1> { | 1437 class LNumberTagD: public LTemplateInstruction<1, 1, 1> { |
1438 public: | 1438 public: |
1439 explicit LNumberTagD(LOperand* value, LOperand* temp) { | 1439 LNumberTagD(LOperand* value, LOperand* temp) { |
1440 inputs_[0] = value; | 1440 inputs_[0] = value; |
1441 temps_[0] = temp; | 1441 temps_[0] = temp; |
1442 } | 1442 } |
1443 | 1443 |
1444 DECLARE_CONCRETE_INSTRUCTION(NumberTagD, "number-tag-d") | 1444 DECLARE_CONCRETE_INSTRUCTION(NumberTagD, "number-tag-d") |
1445 }; | 1445 }; |
1446 | 1446 |
1447 | 1447 |
1448 // Sometimes truncating conversion from a tagged value to an int32. | 1448 // Sometimes truncating conversion from a tagged value to an int32. |
1449 class LDoubleToI: public LTemplateInstruction<1, 1, 1> { | 1449 class LDoubleToI: public LTemplateInstruction<1, 1, 1> { |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2018 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2018 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2019 }; | 2019 }; |
2020 | 2020 |
2021 #undef DECLARE_HYDROGEN_ACCESSOR | 2021 #undef DECLARE_HYDROGEN_ACCESSOR |
2022 #undef DECLARE_INSTRUCTION | 2022 #undef DECLARE_INSTRUCTION |
2023 #undef DECLARE_CONCRETE_INSTRUCTION | 2023 #undef DECLARE_CONCRETE_INSTRUCTION |
2024 | 2024 |
2025 } } // namespace v8::internal | 2025 } } // namespace v8::internal |
2026 | 2026 |
2027 #endif // V8_IA32_LITHIUM_IA32_H_ | 2027 #endif // V8_IA32_LITHIUM_IA32_H_ |
OLD | NEW |