1 //===-- TargetOptionsCommandFlags.cpp ---------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #include "lld/Common/TargetOptionsCommandFlags.h"
10 #include "llvm/CodeGen/CommandFlags.h"
11 #include "llvm/Target/TargetOptions.h"
12 #include "llvm/TargetParser/Triple.h"
15 llvm::TargetOptions
lld::initTargetOptionsFromCodeGenFlags() {
16 return llvm::codegen::InitTargetOptionsFromCodeGenFlags(llvm::Triple());
19 std::optional
<llvm::Reloc::Model
> lld::getRelocModelFromCMModel() {
20 return llvm::codegen::getExplicitRelocModel();
23 std::optional
<llvm::CodeModel::Model
> lld::getCodeModelFromCMModel() {
24 return llvm::codegen::getExplicitCodeModel();
27 std::string
lld::getCPUStr() { return llvm::codegen::getCPUStr(); }
29 std::vector
<std::string
> lld::getMAttrs() { return llvm::codegen::getMAttrs(); }