blob: ec5e6ad637f107bdc818ac1e22b65eb51c175b7e [file] [log] [blame]
Erich Keaneebba5922017-07-21 22:37:03 +00001//===--- BPF.cpp - Implement BPF target feature support -------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Erich Keaneebba5922017-07-21 22:37:03 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements BPF TargetInfo objects.
10//
11//===----------------------------------------------------------------------===//
12
13#include "BPF.h"
14#include "Targets.h"
15#include "clang/Basic/MacroBuilder.h"
Erich Keanee44bdb32018-02-08 23:16:55 +000016#include "llvm/ADT/StringRef.h"
Erich Keaneebba5922017-07-21 22:37:03 +000017
18using namespace clang;
19using namespace clang::targets;
20
21void BPFTargetInfo::getTargetDefines(const LangOptions &Opts,
22 MacroBuilder &Builder) const {
23 DefineStd(Builder, "bpf", Opts);
24 Builder.defineMacro("__BPF__");
25}
Erich Keanee44bdb32018-02-08 23:16:55 +000026
27static constexpr llvm::StringLiteral ValidCPUNames[] = {"generic", "v1", "v2",
28 "probe"};
29
30bool BPFTargetInfo::isValidCPUName(StringRef Name) const {
31 return llvm::find(ValidCPUNames, Name) != std::end(ValidCPUNames);
32}
33
34void BPFTargetInfo::fillValidCPUList(SmallVectorImpl<StringRef> &Values) const {
35 Values.append(std::begin(ValidCPUNames), std::end(ValidCPUNames));
36}