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

Side by Side Diff: src/IceAssemblerX8664.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 | « Makefile.standalone ('k') | src/IceInst.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/IceAssemberX8664.h - Assembler for x86-64 ----*- 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 implements the Assembler class for x86-64.h.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SUBZERO_SRC_ICEASSEMBLERX8664_H
15 #define SUBZERO_SRC_ICEASSEMBLERX8664_H
16
17 #include "IceAssembler.h"
18
19 namespace Ice {
20 namespace X8664 {
21
22 class AssemblerX8664 final : public Assembler {
23 AssemblerX8664(const AssemblerX8664 &) = delete;
24 AssemblerX8664 &operator=(const AssemblerX8664 &) = delete;
25
26 public:
27 explicit AssemblerX8664(bool use_far_branches = false) : Assembler() {
28 llvm::report_fatal_error("Not yet implemented");
29 }
30
31 void alignFunction() override {
32 llvm::report_fatal_error("Not yet implemented");
33 }
34
35 void padWithNop(intptr_t Padding) override {
36 llvm::report_fatal_error("Not yet implemented");
37 }
38
39 SizeT getBundleAlignLog2Bytes() const override {
40 llvm::report_fatal_error("Not yet implemented");
41 }
42
43 const char *getNonExecPadDirective() const override {
44 llvm::report_fatal_error("Not yet implemented");
45 }
46
47 llvm::ArrayRef<uint8_t> getNonExecBundlePadding() const override {
48 llvm::report_fatal_error("Not yet implemented");
49 }
50
51 void bindCfgNodeLabel(SizeT NodeNumber) override {
52 llvm::report_fatal_error("Not yet implemented");
53 }
54
55 bool fixupIsPCRel(FixupKind Kind) const override {
56 llvm::report_fatal_error("Not yet implemented");
57 }
58 };
59
60 } // end of namespace X8664
61 } // end of namespace Ice
62
63 #endif // SUBZERO_SRC_ICEASSEMBLERX8664_H
OLDNEW
« no previous file with comments | « Makefile.standalone ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698