OLD | NEW |
---|---|
1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- C++ -*---===// | 1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- C++ -*---===// |
2 // | 2 // |
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
6 // | 6 // |
7 // Modified by the Subzero authors. | 7 // Modified by the Subzero authors. |
8 // | 8 // |
9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
10 // | 10 // |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
108 llvm::SmallVector<intptr_t, 20> UnresolvedNearPositions; | 108 llvm::SmallVector<intptr_t, 20> UnresolvedNearPositions; |
109 | 109 |
110 template <class> friend class AssemblerX86Base; | 110 template <class> friend class AssemblerX86Base; |
111 }; | 111 }; |
112 | 112 |
113 template <class Machine> class AssemblerX86Base : public Assembler { | 113 template <class Machine> class AssemblerX86Base : public Assembler { |
114 AssemblerX86Base(const AssemblerX86Base &) = delete; | 114 AssemblerX86Base(const AssemblerX86Base &) = delete; |
115 AssemblerX86Base &operator=(const AssemblerX86Base &) = delete; | 115 AssemblerX86Base &operator=(const AssemblerX86Base &) = delete; |
116 | 116 |
117 protected: | 117 protected: |
118 AssemblerX86Base(AssemblerKind Kind, GlobalContext *Ctx, | 118 AssemblerX86Base(AssemblerKind Kind, bool use_far_branches) |
119 bool use_far_branches) | 119 : Assembler(Kind) { |
120 : Assembler(Kind, Ctx) { | |
121 // This mode is only needed and implemented for MIPS and ARM. | 120 // This mode is only needed and implemented for MIPS and ARM. |
122 assert(!use_far_branches); | 121 assert(!use_far_branches); |
123 (void)use_far_branches; | 122 (void)use_far_branches; |
124 } | 123 } |
125 | 124 |
126 public: | 125 public: |
127 using Traits = MachineTraits<Machine>; | 126 using Traits = MachineTraits<Machine>; |
128 | 127 |
129 ~AssemblerX86Base() override; | 128 ~AssemblerX86Base() override; |
130 | 129 |
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
947 template <typename RegType, typename T = Traits> | 946 template <typename RegType, typename T = Traits> |
948 typename std::enable_if<!T::Is64Bit, typename T::GPRRegister>::type | 947 typename std::enable_if<!T::Is64Bit, typename T::GPRRegister>::type |
949 gprEncoding(const RegType Reg) { | 948 gprEncoding(const RegType Reg) { |
950 return static_cast<typename T::GPRRegister>(Reg); | 949 return static_cast<typename T::GPRRegister>(Reg); |
951 } | 950 } |
952 | 951 |
953 template <typename RegType> | 952 template <typename RegType> |
954 bool is8BitRegisterRequiringRex(const Type Ty, const RegType Reg) { | 953 bool is8BitRegisterRequiringRex(const Type Ty, const RegType Reg) { |
955 static constexpr bool IsGPR = | 954 static constexpr bool IsGPR = |
956 std::is_same<typename std::decay<RegType>::type, | 955 std::is_same<typename std::decay<RegType>::type, |
957 typename Traits::ByteRegister>::value || | |
John
2015/10/28 12:48:06
you need to revive this
Jim Stichnoth
2015/10/28 14:03:55
Done. </shamecube>
| |
958 std::is_same<typename std::decay<RegType>::type, | |
959 typename Traits::GPRRegister>::value; | 956 typename Traits::GPRRegister>::value; |
960 | 957 |
961 return IsGPR && (Reg & 0x04) != 0 && (Reg & 0x08) == 0 && | 958 return IsGPR && (Reg & 0x04) != 0 && (Reg & 0x08) == 0 && |
962 isByteSizedType(Ty); | 959 isByteSizedType(Ty); |
963 } | 960 } |
964 | 961 |
965 // assembleAndEmitRex is used for determining which (if any) rex prefix | 962 // assembleAndEmitRex is used for determining which (if any) rex prefix |
966 // should be emitted for the current instruction. It allows different types | 963 // should be emitted for the current instruction. It allows different types |
967 // for Reg and Rm because they could be of different types (e.g., in mov[sz]x | 964 // for Reg and Rm because they could be of different types (e.g., in mov[sz]x |
968 // instructions.) If Addr is not nullptr, then Rm is ignored, and Rex.B is | 965 // instructions.) If Addr is not nullptr, then Rm is ignored, and Rex.B is |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1066 emitUint8(0x66); | 1063 emitUint8(0x66); |
1067 } | 1064 } |
1068 | 1065 |
1069 } // end of namespace X86Internal | 1066 } // end of namespace X86Internal |
1070 | 1067 |
1071 } // end of namespace Ice | 1068 } // end of namespace Ice |
1072 | 1069 |
1073 #include "IceAssemblerX86BaseImpl.h" | 1070 #include "IceAssemblerX86BaseImpl.h" |
1074 | 1071 |
1075 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H | 1072 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H |
OLD | NEW |