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

source code of lld/Common/TargetOptionsCommandFlags.cpp