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

Side by Side Diff: src/IceTargetLoweringX8664.h

Issue 1202533003: Extracts an TargetX86Base target which will be used as the common X86{32,64} implementation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. 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/IceTargetLoweringX8632.cpp ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 //===- subzero/src/IceTargetLoweringX8664.h - x86-64 lowering ---*- C++ -*-===//
2 //
3 // The Subzero Code Generator
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the TargetLoweringX8664 class, which
11 // implements the TargetLowering interface for the x86-64
12 // architecture.
13 //
14 //===----------------------------------------------------------------------===//
15 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8664_H
16 #define SUBZERO_SRC_ICETARGETLOWERINGX8664_H
17
18 #include "IceDefs.h"
19 #include "IceTargetLowering.h"
20
21 namespace Ice {
22
23 class TargetX8664 : public TargetLowering {
24 TargetX8664() = delete;
25 TargetX8664(const TargetX8664 &) = delete;
26 TargetX8664 &operator=(const TargetX8664 &) = delete;
27
28 public:
29 static TargetX8664 *create(Cfg *) {
30 llvm::report_fatal_error("Not yet implemented");
31 }
32 };
33
34 class TargetDataX8664 : public TargetDataLowering {
35 TargetDataX8664() = delete;
36 TargetDataX8664(const TargetDataX8664 &) = delete;
37 TargetDataX8664 &operator=(const TargetDataX8664 &) = delete;
38
39 public:
40 static std::unique_ptr<TargetDataLowering> create(GlobalContext *Ctx) {
41 llvm::report_fatal_error("Not yet implemented");
42 }
43 };
44
45 class TargetHeaderX8664 : public TargetHeaderLowering {
46 TargetHeaderX8664() = delete;
47 TargetHeaderX8664(const TargetHeaderX8664 &) = delete;
48 TargetHeaderX8664 &operator=(const TargetHeaderX8664 &) = delete;
49
50 public:
51 static std::unique_ptr<TargetHeaderLowering> create(GlobalContext *Ctx) {
52 llvm::report_fatal_error("Not yet implemented");
53 }
54 };
55
56 } // end of namespace Ice
57
58 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8664_H
OLDNEW
« no previous file with comments | « src/IceTargetLoweringX8632.cpp ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698