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

Side by Side Diff: src/IceInstARM32.h

Issue 1596613002: Clean up handling of ARM IR instruction "mov". (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. Created 4 years, 11 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 | « src/IceAssemblerARM32.cpp ('k') | src/IceInstARM32.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===// 1 //===- subzero/src/IceInstARM32.h - ARM32 machine 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 /// \file 10 /// \file
(...skipping 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 1333
1334 private: 1334 private:
1335 InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src, 1335 InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src,
1336 CondARM32::Cond Predicate); 1336 CondARM32::Cond Predicate);
1337 1337
1338 void emitMultiDestSingleSource(const Cfg *Func) const; 1338 void emitMultiDestSingleSource(const Cfg *Func) const;
1339 void emitSingleDestMultiSource(const Cfg *Func) const; 1339 void emitSingleDestMultiSource(const Cfg *Func) const;
1340 void emitSingleDestSingleSource(const Cfg *Func) const; 1340 void emitSingleDestSingleSource(const Cfg *Func) const;
1341 1341
1342 void emitIASSingleDestSingleSource(const Cfg *Func) const; 1342 void emitIASSingleDestSingleSource(const Cfg *Func) const;
1343 void emitIASCoreVFPMove(const Cfg *Func) const;
1343 1344
1344 Variable *DestHi = nullptr; 1345 Variable *DestHi = nullptr;
1345 }; 1346 };
1346 1347
1347 class InstARM32Vcmp final : public InstARM32Pred { 1348 class InstARM32Vcmp final : public InstARM32Pred {
1348 InstARM32Vcmp() = delete; 1349 InstARM32Vcmp() = delete;
1349 InstARM32Vcmp(const InstARM32Vcmp &) = delete; 1350 InstARM32Vcmp(const InstARM32Vcmp &) = delete;
1350 InstARM32Vcmp &operator=(const InstARM32Vcmp &) = delete; 1351 InstARM32Vcmp &operator=(const InstARM32Vcmp &) = delete;
1351 1352
1352 public: 1353 public:
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1432 // violations and link errors. 1433 // violations and link errors.
1433 1434
1434 template <> void InstARM32Ldr::emit(const Cfg *Func) const; 1435 template <> void InstARM32Ldr::emit(const Cfg *Func) const;
1435 template <> void InstARM32Movw::emit(const Cfg *Func) const; 1436 template <> void InstARM32Movw::emit(const Cfg *Func) const;
1436 template <> void InstARM32Movt::emit(const Cfg *Func) const; 1437 template <> void InstARM32Movt::emit(const Cfg *Func) const;
1437 1438
1438 } // end of namespace ARM32 1439 } // end of namespace ARM32
1439 } // end of namespace Ice 1440 } // end of namespace Ice
1440 1441
1441 #endif // SUBZERO_SRC_ICEINSTARM32_H 1442 #endif // SUBZERO_SRC_ICEINSTARM32_H
OLDNEW
« no previous file with comments | « src/IceAssemblerARM32.cpp ('k') | src/IceInstARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698