2020-03-04 00:47:43 +01:00
|
|
|
//===-- CommandFlags.h - Command Line Flags Interface -----------*- 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 contains codegen-specific flags that are shared between different
|
|
|
|
// command line tools. The tools "llc" and "opt" both use this file to prevent
|
|
|
|
// flag duplication.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-01-30 18:53:42 +01:00
|
|
|
#ifndef LLVM_CODEGEN_COMMANDFLAGS_H
|
|
|
|
#define LLVM_CODEGEN_COMMANDFLAGS_H
|
|
|
|
|
2020-03-11 22:12:20 +01:00
|
|
|
#include "llvm/ADT/FloatingPointMode.h"
|
2020-03-04 00:47:43 +01:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2020-10-14 17:55:55 +02:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2020-03-04 00:47:43 +01:00
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
|
|
|
#include "llvm/MC/MCTargetOptionsCommandFlags.h"
|
|
|
|
#include "llvm/Support/CodeGen.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include <string>
|
2020-05-19 18:12:32 +02:00
|
|
|
#include <vector>
|
2020-03-04 00:47:43 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2020-05-19 18:12:32 +02:00
|
|
|
class Module;
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
namespace codegen {
|
|
|
|
|
|
|
|
std::string getMArch();
|
|
|
|
|
|
|
|
std::string getMCPU();
|
|
|
|
|
|
|
|
std::vector<std::string> getMAttrs();
|
|
|
|
|
|
|
|
Reloc::Model getRelocModel();
|
|
|
|
Optional<Reloc::Model> getExplicitRelocModel();
|
|
|
|
|
|
|
|
ThreadModel::Model getThreadModel();
|
|
|
|
|
|
|
|
CodeModel::Model getCodeModel();
|
|
|
|
Optional<CodeModel::Model> getExplicitCodeModel();
|
|
|
|
|
|
|
|
llvm::ExceptionHandling getExceptionModel();
|
|
|
|
|
|
|
|
CodeGenFileType getFileType();
|
|
|
|
Optional<CodeGenFileType> getExplicitFileType();
|
|
|
|
|
|
|
|
CodeGenFileType getFileType();
|
|
|
|
|
2021-04-23 03:07:29 +02:00
|
|
|
FramePointerKind getFramePointerUsage();
|
2020-03-04 00:47:43 +01:00
|
|
|
|
|
|
|
bool getEnableUnsafeFPMath();
|
|
|
|
|
|
|
|
bool getEnableNoInfsFPMath();
|
|
|
|
|
|
|
|
bool getEnableNoNaNsFPMath();
|
|
|
|
|
|
|
|
bool getEnableNoSignedZerosFPMath();
|
|
|
|
|
|
|
|
bool getEnableNoTrappingFPMath();
|
|
|
|
|
2020-03-11 22:12:20 +01:00
|
|
|
DenormalMode::DenormalModeKind getDenormalFPMath();
|
2019-12-04 10:04:14 +01:00
|
|
|
DenormalMode::DenormalModeKind getDenormalFP32Math();
|
2020-03-04 00:47:43 +01:00
|
|
|
|
|
|
|
bool getEnableHonorSignDependentRoundingFPMath();
|
|
|
|
|
|
|
|
llvm::FloatABI::ABIType getFloatABIForCalls();
|
|
|
|
|
|
|
|
llvm::FPOpFusion::FPOpFusionMode getFuseFPOps();
|
|
|
|
|
|
|
|
bool getDontPlaceZerosInBSS();
|
|
|
|
|
|
|
|
bool getEnableGuaranteedTailCallOpt();
|
|
|
|
|
2020-11-25 00:11:46 +01:00
|
|
|
bool getEnableAIXExtendedAltivecABI();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
bool getDisableTailCalls();
|
|
|
|
|
|
|
|
bool getStackSymbolOrdering();
|
|
|
|
|
|
|
|
unsigned getOverrideStackAlignment();
|
|
|
|
|
|
|
|
bool getStackRealign();
|
|
|
|
|
|
|
|
std::string getTrapFuncName();
|
|
|
|
|
|
|
|
bool getUseCtors();
|
|
|
|
|
|
|
|
bool getRelaxELFRelocations();
|
|
|
|
|
|
|
|
bool getDataSections();
|
|
|
|
Optional<bool> getExplicitDataSections();
|
|
|
|
|
|
|
|
bool getFunctionSections();
|
|
|
|
Optional<bool> getExplicitFunctionSections();
|
|
|
|
|
2020-10-08 15:34:58 +02:00
|
|
|
bool getIgnoreXCOFFVisibility();
|
|
|
|
|
2020-12-11 23:50:25 +01:00
|
|
|
bool getXCOFFTracebackTable();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
std::string getBBSections();
|
|
|
|
|
2020-10-22 03:46:42 +02:00
|
|
|
std::string getStackProtectorGuard();
|
2021-04-27 18:58:42 +02:00
|
|
|
int getStackProtectorGuardOffset();
|
2020-10-22 03:46:42 +02:00
|
|
|
std::string getStackProtectorGuardReg();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
unsigned getTLSSize();
|
|
|
|
|
|
|
|
bool getEmulatedTLS();
|
|
|
|
|
|
|
|
bool getUniqueSectionNames();
|
|
|
|
|
2020-06-02 08:17:29 +02:00
|
|
|
bool getUniqueBasicBlockSectionNames();
|
2020-03-04 00:47:43 +01:00
|
|
|
|
|
|
|
llvm::EABI getEABIVersion();
|
|
|
|
|
|
|
|
llvm::DebuggerKind getDebuggerTuningOpt();
|
|
|
|
|
|
|
|
bool getEnableStackSizeSection();
|
|
|
|
|
|
|
|
bool getEnableAddrsig();
|
|
|
|
|
|
|
|
bool getEmitCallSiteInfo();
|
|
|
|
|
2020-08-06 00:34:31 +02:00
|
|
|
bool getEnableMachineFunctionSplitter();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
bool getEnableDebugEntryValues();
|
|
|
|
|
2020-12-02 06:44:06 +01:00
|
|
|
bool getPseudoProbeForProfiling();
|
|
|
|
|
2020-08-25 15:23:14 +02:00
|
|
|
bool getValueTrackingVariableLocations();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
bool getForceDwarfFrameSection();
|
|
|
|
|
2020-06-17 02:36:11 +02:00
|
|
|
bool getXRayOmitFunctionIndex();
|
|
|
|
|
2020-03-04 00:47:43 +01:00
|
|
|
/// Create this object with static storage to register codegen-related command
|
|
|
|
/// line options.
|
|
|
|
struct RegisterCodeGenFlags {
|
|
|
|
RegisterCodeGenFlags();
|
|
|
|
};
|
|
|
|
|
|
|
|
llvm::BasicBlockSection getBBSectionsMode(llvm::TargetOptions &Options);
|
|
|
|
|
2020-10-22 03:46:42 +02:00
|
|
|
llvm::StackProtectorGuards
|
|
|
|
getStackProtectorGuardMode(llvm::TargetOptions &Options);
|
|
|
|
|
2020-10-14 17:55:55 +02:00
|
|
|
/// Common utility function tightly tied to the options listed here. Initializes
|
|
|
|
/// a TargetOptions object with CodeGen flags and returns it.
|
|
|
|
/// \p TheTriple is used to determine the default value for options if
|
|
|
|
/// options are not explicitly specified. If those triple dependant options
|
|
|
|
/// value do not have effect for your component, a default Triple() could be
|
|
|
|
/// passed in.
|
|
|
|
TargetOptions InitTargetOptionsFromCodeGenFlags(const llvm::Triple &TheTriple);
|
2020-03-04 00:47:43 +01:00
|
|
|
|
|
|
|
std::string getCPUStr();
|
|
|
|
|
|
|
|
std::string getFeaturesStr();
|
|
|
|
|
|
|
|
std::vector<std::string> getFeatureList();
|
|
|
|
|
|
|
|
void renderBoolStringAttr(AttrBuilder &B, StringRef Name, bool Val);
|
|
|
|
|
|
|
|
/// Set function attributes of function \p F based on CPU, Features, and command
|
|
|
|
/// line flags.
|
|
|
|
void setFunctionAttributes(StringRef CPU, StringRef Features, Function &F);
|
|
|
|
|
|
|
|
/// Set function attributes of functions in Module M based on CPU,
|
|
|
|
/// Features, and command line flags.
|
|
|
|
void setFunctionAttributes(StringRef CPU, StringRef Features, Module &M);
|
|
|
|
} // namespace codegen
|
|
|
|
} // namespace llvm
|
2021-01-30 18:53:42 +01:00
|
|
|
|
|
|
|
#endif // LLVM_CODEGEN_COMMANDFLAGS_H
|