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

Side by Side Diff: src/IceInst.h

Issue 395193005: Start processing function blocks in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 13. 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 | « src/IceConverter.cpp ('k') | src/IceInst.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/IceInst.h - High-level instructions ----------*- C++ -*-===// 1 //===- subzero/src/IceInst.h - High-level 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 Inst class and its target-independent 10 // This file declares the Inst class and its target-independent
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 #undef X 196 #undef X
197 _num 197 _num
198 }; 198 };
199 199
200 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest, 200 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest,
201 Operand *Source1, Operand *Source2) { 201 Operand *Source1, Operand *Source2) {
202 return new (Func->allocateInst<InstArithmetic>()) 202 return new (Func->allocateInst<InstArithmetic>())
203 InstArithmetic(Func, Op, Dest, Source1, Source2); 203 InstArithmetic(Func, Op, Dest, Source1, Source2);
204 } 204 }
205 OpKind getOp() const { return Op; } 205 OpKind getOp() const { return Op; }
206 static const char *getOpName(OpKind Op);
206 bool isCommutative() const; 207 bool isCommutative() const;
207 virtual void dump(const Cfg *Func) const; 208 virtual void dump(const Cfg *Func) const;
208 static bool classof(const Inst *Inst) { 209 static bool classof(const Inst *Inst) {
209 return Inst->getKind() == Arithmetic; 210 return Inst->getKind() == Arithmetic;
210 } 211 }
211 212
212 private: 213 private:
213 InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, Operand *Source1, 214 InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, Operand *Source1,
214 Operand *Source2); 215 Operand *Source2);
215 InstArithmetic(const InstArithmetic &) LLVM_DELETED_FUNCTION; 216 InstArithmetic(const InstArithmetic &) LLVM_DELETED_FUNCTION;
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 assert(Kind >= Target); 749 assert(Kind >= Target);
749 } 750 }
750 InstTarget(const InstTarget &) LLVM_DELETED_FUNCTION; 751 InstTarget(const InstTarget &) LLVM_DELETED_FUNCTION;
751 InstTarget &operator=(const InstTarget &) LLVM_DELETED_FUNCTION; 752 InstTarget &operator=(const InstTarget &) LLVM_DELETED_FUNCTION;
752 virtual ~InstTarget() {} 753 virtual ~InstTarget() {}
753 }; 754 };
754 755
755 } // end of namespace Ice 756 } // end of namespace Ice
756 757
757 #endif // SUBZERO_SRC_ICEINST_H 758 #endif // SUBZERO_SRC_ICEINST_H
OLDNEW
« no previous file with comments | « src/IceConverter.cpp ('k') | src/IceInst.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698