Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: src/IceInstX8632.h

Issue 597643002: Handle a few more instructions in assembler (cmov, cdq, cmpxchg, xadd, xchg). (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: consistency Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceInstX8632.cpp » ('j') | src/assembler_ia32.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceInstX8632.h - Low-level x86 instructions --*- C++ -*-===// 1 //===- subzero/src/IceInstX8632.h - Low-level x86 instructions --*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file declares the InstX8632 and OperandX8632 classes and 10 // This file declares the InstX8632 and OperandX8632 classes and
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 888
889 // Conditional move instruction. 889 // Conditional move instruction.
890 class InstX8632Cmov : public InstX8632 { 890 class InstX8632Cmov : public InstX8632 {
891 public: 891 public:
892 static InstX8632Cmov *create(Cfg *Func, Variable *Dest, Operand *Source, 892 static InstX8632Cmov *create(Cfg *Func, Variable *Dest, Operand *Source,
893 CondX86::BrCond Cond) { 893 CondX86::BrCond Cond) {
894 return new (Func->allocate<InstX8632Cmov>()) 894 return new (Func->allocate<InstX8632Cmov>())
895 InstX8632Cmov(Func, Dest, Source, Cond); 895 InstX8632Cmov(Func, Dest, Source, Cond);
896 } 896 }
897 virtual void emit(const Cfg *Func) const; 897 virtual void emit(const Cfg *Func) const;
898 virtual void emitIAS(const Cfg *Func) const;
898 virtual void dump(const Cfg *Func) const; 899 virtual void dump(const Cfg *Func) const;
899 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmov); } 900 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmov); }
900 901
901 private: 902 private:
902 InstX8632Cmov(Cfg *Func, Variable *Dest, Operand *Source, 903 InstX8632Cmov(Cfg *Func, Variable *Dest, Operand *Source,
903 CondX86::BrCond Cond); 904 CondX86::BrCond Cond);
904 InstX8632Cmov(const InstX8632Cmov &) LLVM_DELETED_FUNCTION; 905 InstX8632Cmov(const InstX8632Cmov &) LLVM_DELETED_FUNCTION;
905 InstX8632Cmov &operator=(const InstX8632Cmov &) LLVM_DELETED_FUNCTION; 906 InstX8632Cmov &operator=(const InstX8632Cmov &) LLVM_DELETED_FUNCTION;
906 virtual ~InstX8632Cmov() {} 907 virtual ~InstX8632Cmov() {}
907 908
(...skipping 30 matching lines...) Expand all
938 // <dest> can be a register or memory, while <desired> must be a register. 939 // <dest> can be a register or memory, while <desired> must be a register.
939 // It is the user's responsiblity to mark eax with a FakeDef. 940 // It is the user's responsiblity to mark eax with a FakeDef.
940 class InstX8632Cmpxchg : public InstX8632Lockable { 941 class InstX8632Cmpxchg : public InstX8632Lockable {
941 public: 942 public:
942 static InstX8632Cmpxchg *create(Cfg *Func, Operand *DestOrAddr, Variable *Eax, 943 static InstX8632Cmpxchg *create(Cfg *Func, Operand *DestOrAddr, Variable *Eax,
943 Variable *Desired, bool Locked) { 944 Variable *Desired, bool Locked) {
944 return new (Func->allocate<InstX8632Cmpxchg>()) 945 return new (Func->allocate<InstX8632Cmpxchg>())
945 InstX8632Cmpxchg(Func, DestOrAddr, Eax, Desired, Locked); 946 InstX8632Cmpxchg(Func, DestOrAddr, Eax, Desired, Locked);
946 } 947 }
947 virtual void emit(const Cfg *Func) const; 948 virtual void emit(const Cfg *Func) const;
949 virtual void emitIAS(const Cfg *Func) const;
948 virtual void dump(const Cfg *Func) const; 950 virtual void dump(const Cfg *Func) const;
949 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmpxchg); } 951 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmpxchg); }
950 952
951 private: 953 private:
952 InstX8632Cmpxchg(Cfg *Func, Operand *DestOrAddr, Variable *Eax, 954 InstX8632Cmpxchg(Cfg *Func, Operand *DestOrAddr, Variable *Eax,
953 Variable *Desired, bool Locked); 955 Variable *Desired, bool Locked);
954 InstX8632Cmpxchg(const InstX8632Cmpxchg &) LLVM_DELETED_FUNCTION; 956 InstX8632Cmpxchg(const InstX8632Cmpxchg &) LLVM_DELETED_FUNCTION;
955 InstX8632Cmpxchg &operator=(const InstX8632Cmpxchg &) LLVM_DELETED_FUNCTION; 957 InstX8632Cmpxchg &operator=(const InstX8632Cmpxchg &) LLVM_DELETED_FUNCTION;
956 virtual ~InstX8632Cmpxchg() {} 958 virtual ~InstX8632Cmpxchg() {}
957 }; 959 };
958 960
959 // Cmpxchg8b instruction - cmpxchg8b <m64> will compare if <m64> 961 // Cmpxchg8b instruction - cmpxchg8b <m64> will compare if <m64>
960 // equals edx:eax. If so, the ZF is set and ecx:ebx is stored in <m64>. 962 // equals edx:eax. If so, the ZF is set and ecx:ebx is stored in <m64>.
961 // If not, ZF is cleared and <m64> is copied to edx:eax. 963 // If not, ZF is cleared and <m64> is copied to edx:eax.
962 // The caller is responsible for inserting FakeDefs to mark edx 964 // The caller is responsible for inserting FakeDefs to mark edx
963 // and eax as modified. 965 // and eax as modified.
964 // <m64> must be a memory operand. 966 // <m64> must be a memory operand.
965 class InstX8632Cmpxchg8b : public InstX8632Lockable { 967 class InstX8632Cmpxchg8b : public InstX8632Lockable {
966 public: 968 public:
967 static InstX8632Cmpxchg8b *create(Cfg *Func, OperandX8632 *Dest, 969 static InstX8632Cmpxchg8b *create(Cfg *Func, OperandX8632Mem *Dest,
968 Variable *Edx, Variable *Eax, Variable *Ecx, 970 Variable *Edx, Variable *Eax, Variable *Ecx,
969 Variable *Ebx, bool Locked) { 971 Variable *Ebx, bool Locked) {
970 return new (Func->allocate<InstX8632Cmpxchg8b>()) 972 return new (Func->allocate<InstX8632Cmpxchg8b>())
971 InstX8632Cmpxchg8b(Func, Dest, Edx, Eax, Ecx, Ebx, Locked); 973 InstX8632Cmpxchg8b(Func, Dest, Edx, Eax, Ecx, Ebx, Locked);
972 } 974 }
973 virtual void emit(const Cfg *Func) const; 975 virtual void emit(const Cfg *Func) const;
976 virtual void emitIAS(const Cfg *Func) const;
974 virtual void dump(const Cfg *Func) const; 977 virtual void dump(const Cfg *Func) const;
975 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmpxchg8b); } 978 static bool classof(const Inst *Inst) { return isClassof(Inst, Cmpxchg8b); }
976 979
977 private: 980 private:
978 InstX8632Cmpxchg8b(Cfg *Func, OperandX8632 *Dest, Variable *Edx, 981 InstX8632Cmpxchg8b(Cfg *Func, OperandX8632Mem *Dest, Variable *Edx,
979 Variable *Eax, Variable *Ecx, Variable *Ebx, bool Locked); 982 Variable *Eax, Variable *Ecx, Variable *Ebx, bool Locked);
980 InstX8632Cmpxchg8b(const InstX8632Cmpxchg8b &) LLVM_DELETED_FUNCTION; 983 InstX8632Cmpxchg8b(const InstX8632Cmpxchg8b &) LLVM_DELETED_FUNCTION;
981 InstX8632Cmpxchg8b & 984 InstX8632Cmpxchg8b &
982 operator=(const InstX8632Cmpxchg8b &) LLVM_DELETED_FUNCTION; 985 operator=(const InstX8632Cmpxchg8b &) LLVM_DELETED_FUNCTION;
983 virtual ~InstX8632Cmpxchg8b() {} 986 virtual ~InstX8632Cmpxchg8b() {}
984 }; 987 };
985 988
986 // Cvt instruction - wrapper for cvtsX2sY where X and Y are in {s,d,i} 989 // Cvt instruction - wrapper for cvtsX2sY where X and Y are in {s,d,i}
987 // as appropriate. s=float, d=double, i=int. X and Y are determined 990 // as appropriate. s=float, d=double, i=int. X and Y are determined
988 // from dest/src types. Sign and zero extension on the integer 991 // from dest/src types. Sign and zero extension on the integer
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 // Both the dest and source are updated. The caller should then insert a 1315 // Both the dest and source are updated. The caller should then insert a
1313 // FakeDef to reflect the second udpate. 1316 // FakeDef to reflect the second udpate.
1314 class InstX8632Xadd : public InstX8632Lockable { 1317 class InstX8632Xadd : public InstX8632Lockable {
1315 public: 1318 public:
1316 static InstX8632Xadd *create(Cfg *Func, Operand *Dest, Variable *Source, 1319 static InstX8632Xadd *create(Cfg *Func, Operand *Dest, Variable *Source,
1317 bool Locked) { 1320 bool Locked) {
1318 return new (Func->allocate<InstX8632Xadd>()) 1321 return new (Func->allocate<InstX8632Xadd>())
1319 InstX8632Xadd(Func, Dest, Source, Locked); 1322 InstX8632Xadd(Func, Dest, Source, Locked);
1320 } 1323 }
1321 virtual void emit(const Cfg *Func) const; 1324 virtual void emit(const Cfg *Func) const;
1325 virtual void emitIAS(const Cfg *Func) const;
1322 virtual void dump(const Cfg *Func) const; 1326 virtual void dump(const Cfg *Func) const;
1323 static bool classof(const Inst *Inst) { return isClassof(Inst, Xadd); } 1327 static bool classof(const Inst *Inst) { return isClassof(Inst, Xadd); }
1324 1328
1325 private: 1329 private:
1326 InstX8632Xadd(Cfg *Func, Operand *Dest, Variable *Source, bool Locked); 1330 InstX8632Xadd(Cfg *Func, Operand *Dest, Variable *Source, bool Locked);
1327 InstX8632Xadd(const InstX8632Xadd &) LLVM_DELETED_FUNCTION; 1331 InstX8632Xadd(const InstX8632Xadd &) LLVM_DELETED_FUNCTION;
1328 InstX8632Xadd &operator=(const InstX8632Xadd &) LLVM_DELETED_FUNCTION; 1332 InstX8632Xadd &operator=(const InstX8632Xadd &) LLVM_DELETED_FUNCTION;
1329 virtual ~InstX8632Xadd() {} 1333 virtual ~InstX8632Xadd() {}
1330 }; 1334 };
1331 1335
1332 // Exchange instruction. Exchanges the first operand (destination 1336 // Exchange instruction. Exchanges the first operand (destination
1333 // operand) with the second operand (source operand). At least one of 1337 // operand) with the second operand (source operand). At least one of
1334 // the operands must be a register (and the other can be reg or mem). 1338 // the operands must be a register (and the other can be reg or mem).
1335 // Both the Dest and Source are updated. If there is a memory operand, 1339 // Both the Dest and Source are updated. If there is a memory operand,
1336 // then the instruction is automatically "locked" without the need for 1340 // then the instruction is automatically "locked" without the need for
1337 // a lock prefix. 1341 // a lock prefix.
1338 class InstX8632Xchg : public InstX8632 { 1342 class InstX8632Xchg : public InstX8632 {
1339 public: 1343 public:
1340 static InstX8632Xchg *create(Cfg *Func, Operand *Dest, Variable *Source) { 1344 static InstX8632Xchg *create(Cfg *Func, Operand *Dest, Variable *Source) {
1341 return new (Func->allocate<InstX8632Xchg>()) 1345 return new (Func->allocate<InstX8632Xchg>())
1342 InstX8632Xchg(Func, Dest, Source); 1346 InstX8632Xchg(Func, Dest, Source);
1343 } 1347 }
1344 virtual void emit(const Cfg *Func) const; 1348 virtual void emit(const Cfg *Func) const;
1349 virtual void emitIAS(const Cfg *Func) const;
1345 virtual void dump(const Cfg *Func) const; 1350 virtual void dump(const Cfg *Func) const;
1346 static bool classof(const Inst *Inst) { return isClassof(Inst, Xchg); } 1351 static bool classof(const Inst *Inst) { return isClassof(Inst, Xchg); }
1347 1352
1348 private: 1353 private:
1349 InstX8632Xchg(Cfg *Func, Operand *Dest, Variable *Source); 1354 InstX8632Xchg(Cfg *Func, Operand *Dest, Variable *Source);
1350 InstX8632Xchg(const InstX8632Xchg &) LLVM_DELETED_FUNCTION; 1355 InstX8632Xchg(const InstX8632Xchg &) LLVM_DELETED_FUNCTION;
1351 InstX8632Xchg &operator=(const InstX8632Xchg &) LLVM_DELETED_FUNCTION; 1356 InstX8632Xchg &operator=(const InstX8632Xchg &) LLVM_DELETED_FUNCTION;
1352 virtual ~InstX8632Xchg() {} 1357 virtual ~InstX8632Xchg() {}
1353 }; 1358 };
1354 1359
(...skipping 16 matching lines...) Expand all
1371 template <> void InstX8632Pextr::emit(const Cfg *Func) const; 1376 template <> void InstX8632Pextr::emit(const Cfg *Func) const;
1372 template <> void InstX8632Pinsr::emit(const Cfg *Func) const; 1377 template <> void InstX8632Pinsr::emit(const Cfg *Func) const;
1373 template <> void InstX8632Pmull::emit(const Cfg *Func) const; 1378 template <> void InstX8632Pmull::emit(const Cfg *Func) const;
1374 template <> void InstX8632Pmuludq::emit(const Cfg *Func) const; 1379 template <> void InstX8632Pmuludq::emit(const Cfg *Func) const;
1375 template <> void InstX8632Psll::emit(const Cfg *Func) const; 1380 template <> void InstX8632Psll::emit(const Cfg *Func) const;
1376 template <> void InstX8632Psra::emit(const Cfg *Func) const; 1381 template <> void InstX8632Psra::emit(const Cfg *Func) const;
1377 template <> void InstX8632Psub::emit(const Cfg *Func) const; 1382 template <> void InstX8632Psub::emit(const Cfg *Func) const;
1378 template <> void InstX8632Sqrtss::emit(const Cfg *Func) const; 1383 template <> void InstX8632Sqrtss::emit(const Cfg *Func) const;
1379 template <> void InstX8632Subss::emit(const Cfg *Func) const; 1384 template <> void InstX8632Subss::emit(const Cfg *Func) const;
1380 1385
1386 template <> void InstX8632Cbwdq::emitIAS(const Cfg *Func) const;
1387
1381 } // end of namespace Ice 1388 } // end of namespace Ice
1382 1389
1383 #endif // SUBZERO_SRC_ICEINSTX8632_H 1390 #endif // SUBZERO_SRC_ICEINSTX8632_H
OLDNEW
« no previous file with comments | « no previous file | src/IceInstX8632.cpp » ('j') | src/assembler_ia32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698