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

Side by Side Diff: src/IceTargetLoweringX8632.h

Issue 876083007: Subzero: Emit functions and global initializers in a separate thread. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: More code review changes Created 5 years, 10 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/IceTargetLowering.cpp ('k') | src/IceTargetLoweringX8632.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/IceTargetLoweringX8632.h - x86-32 lowering ---*- C++ -*-===// 1 //===- subzero/src/IceTargetLoweringX8632.h - x86-32 lowering ---*- 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 TargetLoweringX8632 class, which 10 // This file declares the TargetLoweringX8632 class, which
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 TargetDataX8632(const TargetDataX8632 &) = delete; 492 TargetDataX8632(const TargetDataX8632 &) = delete;
493 TargetDataX8632 &operator=(const TargetDataX8632 &) = delete; 493 TargetDataX8632 &operator=(const TargetDataX8632 &) = delete;
494 494
495 public: 495 public:
496 static TargetDataLowering *create(GlobalContext *Ctx) { 496 static TargetDataLowering *create(GlobalContext *Ctx) {
497 return new TargetDataX8632(Ctx); 497 return new TargetDataX8632(Ctx);
498 } 498 }
499 499
500 void lowerGlobal(const VariableDeclaration &Var) const final; 500 void lowerGlobal(const VariableDeclaration &Var) const final;
501 void lowerGlobalsELF(const VariableDeclarationList &Vars) const final; 501 void lowerGlobalsELF(const VariableDeclarationList &Vars) const final;
502 void lowerConstants(GlobalContext *Ctx) const final; 502 void lowerConstants() const final;
503 503
504 protected: 504 protected:
505 TargetDataX8632(GlobalContext *Ctx); 505 TargetDataX8632(GlobalContext *Ctx);
506 506
507 private: 507 private:
508 ~TargetDataX8632() override {} 508 ~TargetDataX8632() override {}
509 template <typename T> static void emitConstantPool(GlobalContext *Ctx); 509 template <typename T> static void emitConstantPool(GlobalContext *Ctx);
510 }; 510 };
511 511
512 template <> void ConstantInteger32::emit(GlobalContext *Ctx) const; 512 template <> void ConstantInteger32::emit(GlobalContext *Ctx) const;
513 template <> void ConstantInteger64::emit(GlobalContext *Ctx) const; 513 template <> void ConstantInteger64::emit(GlobalContext *Ctx) const;
514 template <> void ConstantFloat::emit(GlobalContext *Ctx) const; 514 template <> void ConstantFloat::emit(GlobalContext *Ctx) const;
515 template <> void ConstantDouble::emit(GlobalContext *Ctx) const; 515 template <> void ConstantDouble::emit(GlobalContext *Ctx) const;
516 516
517 } // end of namespace Ice 517 } // end of namespace Ice
518 518
519 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H 519 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H
OLDNEW
« no previous file with comments | « src/IceTargetLowering.cpp ('k') | src/IceTargetLoweringX8632.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698