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

Side by Side Diff: src/IceTargetLoweringX8632.h

Issue 1179563004: Renames the assembler* files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes the top comment for IceAssemblerX8632.cpp Created 5 years, 6 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/assembler.h » ('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
11 // implements the TargetLowering interface for the x86-32 11 // implements the TargetLowering interface for the x86-32
12 // architecture. 12 // architecture.
13 // 13 //
14 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===//
15 15
16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H 16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H
17 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H 17 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H
18 18
19 #include <unordered_map> 19 #include <unordered_map>
20 20
21 #include "assembler_ia32.h" 21 #include "IceAssemblerX8632.h"
22 #include "IceDefs.h" 22 #include "IceDefs.h"
23 #include "IceInst.h" 23 #include "IceInst.h"
24 #include "IceInstX8632.h" 24 #include "IceInstX8632.h"
25 #include "IceRegistersX8632.h" 25 #include "IceRegistersX8632.h"
26 #include "IceTargetLowering.h" 26 #include "IceTargetLowering.h"
27 27
28 namespace Ice { 28 namespace Ice {
29 29
30 class BoolFoldingEntry { 30 class BoolFoldingEntry {
31 BoolFoldingEntry(const BoolFoldingEntry &) = delete; 31 BoolFoldingEntry(const BoolFoldingEntry &) = delete;
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 593
594 private: 594 private:
595 void lowerGlobal(const VariableDeclaration &Var) const; 595 void lowerGlobal(const VariableDeclaration &Var) const;
596 ~TargetDataX8632() override {} 596 ~TargetDataX8632() override {}
597 template <typename T> static void emitConstantPool(GlobalContext *Ctx); 597 template <typename T> static void emitConstantPool(GlobalContext *Ctx);
598 }; 598 };
599 599
600 } // end of namespace Ice 600 } // end of namespace Ice
601 601
602 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H 602 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H
OLDNEW
« no previous file with comments | « src/IceTargetLowering.cpp ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698