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

Side by Side Diff: src/IceInstARM32.h

Issue 1407613002: Add "add immediate" instruction to the ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 2. Created 5 years, 2 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 CondARM32::Cond Predicate, 581 CondARM32::Cond Predicate,
582 bool SetFlags = false) { 582 bool SetFlags = false) {
583 return new (Func->allocate<InstARM32ThreeAddrGPR>()) 583 return new (Func->allocate<InstARM32ThreeAddrGPR>())
584 InstARM32ThreeAddrGPR(Func, Dest, Src0, Src1, Predicate, SetFlags); 584 InstARM32ThreeAddrGPR(Func, Dest, Src0, Src1, Predicate, SetFlags);
585 } 585 }
586 void emit(const Cfg *Func) const override { 586 void emit(const Cfg *Func) const override {
587 if (!BuildDefs::dump()) 587 if (!BuildDefs::dump())
588 return; 588 return;
589 emitThreeAddr(Opcode, this, Func, SetFlags); 589 emitThreeAddr(Opcode, this, Func, SetFlags);
590 } 590 }
591 void emitIAS(const Cfg *Func) const override { 591 void emitIAS(const Cfg *Func) const override;
592 (void)Func;
593 llvm::report_fatal_error("Not yet implemented");
594 }
595 void dump(const Cfg *Func) const override { 592 void dump(const Cfg *Func) const override {
596 if (!BuildDefs::dump()) 593 if (!BuildDefs::dump())
597 return; 594 return;
598 Ostream &Str = Func->getContext()->getStrDump(); 595 Ostream &Str = Func->getContext()->getStrDump();
599 dumpDest(Func); 596 dumpDest(Func);
600 Str << " = "; 597 Str << " = ";
601 dumpOpcodePred(Str, Opcode, getDest()->getType()); 598 dumpOpcodePred(Str, Opcode, getDest()->getType());
602 Str << (SetFlags ? ".s " : " "); 599 Str << (SetFlags ? ".s " : " ");
603 dumpSources(Func); 600 dumpSources(Func);
604 } 601 }
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 // default implementations. Without this, there is the possibility of ODR 1260 // default implementations. Without this, there is the possibility of ODR
1264 // violations and link errors. 1261 // violations and link errors.
1265 1262
1266 template <> void InstARM32Ldr::emit(const Cfg *Func) const; 1263 template <> void InstARM32Ldr::emit(const Cfg *Func) const;
1267 template <> void InstARM32Movw::emit(const Cfg *Func) const; 1264 template <> void InstARM32Movw::emit(const Cfg *Func) const;
1268 template <> void InstARM32Movt::emit(const Cfg *Func) const; 1265 template <> void InstARM32Movt::emit(const Cfg *Func) const;
1269 1266
1270 } // end of namespace Ice 1267 } // end of namespace Ice
1271 1268
1272 #endif // SUBZERO_SRC_ICEINSTARM32_H 1269 #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