LLVM 22.0.0git
AVRTargetMachine.h
Go to the documentation of this file.
1//===-- AVRTargetMachine.h - Define TargetMachine for AVR -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the AVR specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_AVR_TARGET_MACHINE_H
14#define LLVM_AVR_TARGET_MACHINE_H
15
17#include "llvm/IR/DataLayout.h"
18
19#include "AVRFrameLowering.h"
20#include "AVRISelLowering.h"
21#include "AVRInstrInfo.h"
22#include "AVRSelectionDAGInfo.h"
23#include "AVRSubtarget.h"
24
25#include <optional>
26
27namespace llvm {
28
29/// A generic AVR implementation.
31public:
32 AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
34 std::optional<Reloc::Model> RM,
35 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
36 bool JIT);
37
38 const AVRSubtarget *getSubtargetImpl() const;
39 const AVRSubtarget *getSubtargetImpl(const Function &) const override;
40
42 return this->TLOF.get();
43 }
44
46
49 const TargetSubtargetInfo *STI) const override;
50
52
53 bool isNoopAddrSpaceCast(unsigned SrcAs, unsigned DestAs) const override {
54 // While AVR has different address spaces, they are all represented by
55 // 16-bit pointers that can be freely casted between (of course, a pointer
56 // must be cast back to its original address space to be dereferenceable).
57 // To be safe, also check the pointer size in case we implement __memx
58 // pointers.
59 return getPointerSize(SrcAs) == getPointerSize(DestAs);
60 }
61
62private:
63 std::unique_ptr<TargetLoweringObjectFile> TLOF;
64 AVRSubtarget SubTarget;
65};
66
67} // end namespace llvm
68
69#endif // LLVM_AVR_TARGET_MACHINE_H
#define F(x, y, z)
Definition MD5.cpp:55
#define T
Basic Register Allocator
A specific AVR target MCU.
const AVRSubtarget * getSubtargetImpl() const
TargetLoweringObjectFile * getObjFileLowering() const override
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
bool isNoopAddrSpaceCast(unsigned SrcAs, unsigned DestAs) const override
Returns true if a cast between SrcAS and DestAS is a noop.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Return a TargetTransformInfo for a given function.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
unsigned getPointerSize(unsigned AS) const
Get the pointer size for this target.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
Target-Independent Code Generator Pass Configuration Options.
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
This is an optimization pass for GlobalISel generic memory operations.
BumpPtrAllocatorImpl BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...