llvm/llvm/lib/TargetParser/PPCTargetParser.cpp

//===---- PPCTargetParser.cpp - Parser for target features ------*- 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 implements a target parser to recognise hardware features
// for PPC CPUs.
//
//===----------------------------------------------------------------------===//

#include "llvm/TargetParser/PPCTargetParser.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/TargetParser/Host.h"

namespace llvm {
namespace PPC {

struct CPUInfo {};

constexpr CPUInfo PPCCPUInfo[] =;

static const CPUInfo *getCPUInfoByName(StringRef CPU) {}

StringRef normalizeCPUName(StringRef CPUName) {}

void fillValidCPUList(SmallVectorImpl<StringRef> &Values) {}

void fillValidTuneCPUList(SmallVectorImpl<StringRef> &Values) {}

bool isValidCPU(StringRef CPU) {}

StringRef getNormalizedPPCTargetCPU(const Triple &T, StringRef CPUName) {}

StringRef getNormalizedPPCTuneCPU(const Triple &T, StringRef CPUName) {}

} // namespace PPC
} // namespace llvm