LLVM 24.0.0git
MipsTargetMachine.h
Go to the documentation of this file.
1//===- MipsTargetMachine.h - Define TargetMachine for Mips ------*- 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 Mips specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
14#define LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
15
17#include "MipsSubtarget.h"
18#include "llvm/ADT/StringMap.h"
19#include "llvm/ADT/StringRef.h"
22#include <memory>
23#include <optional>
24
25namespace llvm {
26
28 bool isLittle;
29 // Selected ABI
30 MipsABIInfo ABI;
31 // Used to initialize module-wide object-file policy.
32 MipsSubtarget DefaultSubtarget;
33 std::unique_ptr<TargetLoweringObjectFile> TLOF;
34
35 mutable StringMap<std::unique_ptr<MipsSubtarget>> SubtargetMap;
36
37public:
38 MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
40 std::optional<Reloc::Model> RM,
41 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
42 bool JIT, bool isLittle);
44
46
47 const MipsSubtarget *getSubtargetImpl(const Function &F) const override;
48
49 // Pass Pipeline Configuration
51
53 return TLOF.get();
54 }
55
58 const TargetSubtargetInfo *STI) const override;
59
60 /// Returns true if a cast between SrcAS and DestAS is a noop.
61 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
62 // Mips doesn't have any special address spaces so we just reserve
63 // the first 256 for software use (e.g. OpenCL) and treat casts
64 // between them as noops.
65 return SrcAS < 256 && DestAS < 256;
66 }
67
68 bool isLittleEndian() const { return isLittle; }
69 const MipsABIInfo &getABI() const { return ABI; }
70};
71
72/// Mips32/64 big endian target machine.
73///
75 virtual void anchor();
76
77public:
78 MipsebTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
80 std::optional<Reloc::Model> RM,
81 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
82 bool JIT);
83};
84
85/// Mips32/64 little endian target machine.
86///
88 virtual void anchor();
89
90public:
91 MipselTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
93 std::optional<Reloc::Model> RM,
94 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
95 bool JIT);
96};
97
98} // end namespace llvm
99
100#endif // LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
This file defines the StringMap class.
#define F(x, y, z)
Definition MD5.cpp:54
#define T
Basic Register Allocator
CodeGenTargetMachineImpl(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override
Returns true if a cast between SrcAS and DestAS is a noop.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
const MipsABIInfo & getABI() const
MipsTargetMachine(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 isLittle)
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 ...
~MipsTargetMachine() override
const MipsSubtarget * getSubtargetImpl(const Function &F) const override
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
MipsebTargetMachine(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)
MipselTargetMachine(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)
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:129
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
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:48
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.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:227
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...