| OLD | NEW |
| (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 |
| OLD | NEW |