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

Side by Side Diff: src/IceInstARM32.h

Issue 1452293003: Add BL (immediate) and BLX (register) to ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month 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
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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 InstARM32Call(const InstARM32Call &) = delete; 985 InstARM32Call(const InstARM32Call &) = delete;
986 InstARM32Call &operator=(const InstARM32Call &) = delete; 986 InstARM32Call &operator=(const InstARM32Call &) = delete;
987 987
988 public: 988 public:
989 static InstARM32Call *create(Cfg *Func, Variable *Dest, Operand *CallTarget) { 989 static InstARM32Call *create(Cfg *Func, Variable *Dest, Operand *CallTarget) {
990 return new (Func->allocate<InstARM32Call>()) 990 return new (Func->allocate<InstARM32Call>())
991 InstARM32Call(Func, Dest, CallTarget); 991 InstARM32Call(Func, Dest, CallTarget);
992 } 992 }
993 Operand *getCallTarget() const { return getSrc(0); } 993 Operand *getCallTarget() const { return getSrc(0); }
994 void emit(const Cfg *Func) const override; 994 void emit(const Cfg *Func) const override;
995 void emitIAS(const Cfg *Func) const override;
995 void dump(const Cfg *Func) const override; 996 void dump(const Cfg *Func) const override;
996 static bool classof(const Inst *Inst) { return isClassof(Inst, Call); } 997 static bool classof(const Inst *Inst) { return isClassof(Inst, Call); }
997 998
998 private: 999 private:
999 InstARM32Call(Cfg *Func, Variable *Dest, Operand *CallTarget); 1000 InstARM32Call(Cfg *Func, Variable *Dest, Operand *CallTarget);
1000 }; 1001 };
1001 1002
1002 /// Pop into a list of GPRs. Technically this can be predicated, but we don't 1003 /// Pop into a list of GPRs. Technically this can be predicated, but we don't
1003 /// need that functionality. 1004 /// need that functionality.
1004 class InstARM32Pop : public InstARM32 { 1005 class InstARM32Pop : public InstARM32 {
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 // default implementations. Without this, there is the possibility of ODR 1316 // default implementations. Without this, there is the possibility of ODR
1316 // violations and link errors. 1317 // violations and link errors.
1317 1318
1318 template <> void InstARM32Ldr::emit(const Cfg *Func) const; 1319 template <> void InstARM32Ldr::emit(const Cfg *Func) const;
1319 template <> void InstARM32Movw::emit(const Cfg *Func) const; 1320 template <> void InstARM32Movw::emit(const Cfg *Func) const;
1320 template <> void InstARM32Movt::emit(const Cfg *Func) const; 1321 template <> void InstARM32Movt::emit(const Cfg *Func) const;
1321 1322
1322 } // end of namespace Ice 1323 } // end of namespace Ice
1323 1324
1324 #endif // SUBZERO_SRC_ICEINSTARM32_H 1325 #endif // SUBZERO_SRC_ICEINSTARM32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698