//===-- W65816TargetMachine.h - Define TargetMachine for W65816 -*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file declares the W65816 specific subclass of TargetMachine. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_W65816_W65816TARGETMACHINE_H #define LLVM_LIB_TARGET_W65816_W65816TARGETMACHINE_H #include "W65816Subtarget.h" #include "llvm/CodeGen/CodeGenTargetMachineImpl.h" #include namespace llvm { class StringRef; class W65816TargetMachine : public CodeGenTargetMachineImpl { std::unique_ptr TLOF; W65816Subtarget Subtarget; public: W65816TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional RM, std::optional CM, CodeGenOptLevel OL, bool JIT); ~W65816TargetMachine() override; const W65816Subtarget *getSubtargetImpl(const Function &F) const override { return &Subtarget; } TargetPassConfig *createPassConfig(PassManagerBase &PM) override; TargetLoweringObjectFile *getObjFileLowering() const override { return TLOF.get(); } MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override; }; } // namespace llvm #endif