Path: blob/main/contrib/llvm-project/llvm/lib/Target/BPF/GISel/BPFLegalizerInfo.h
35294 views
//===- BPFLegalizerInfo.h ----------------------------------------*- C++ -*-==//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7/// \file8/// This file declares the targeting of the Machinelegalizer class for BPF9//===----------------------------------------------------------------------===//1011#ifndef LLVM_LIB_TARGET_BPF_GISEL_BPFMACHINELEGALIZER_H12#define LLVM_LIB_TARGET_BPF_GISEL_BPFMACHINELEGALIZER_H1314#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"1516namespace llvm {1718class BPFSubtarget;1920/// This class provides the information for the BPF target legalizer for21/// GlobalISel.22class BPFLegalizerInfo : public LegalizerInfo {23public:24BPFLegalizerInfo(const BPFSubtarget &ST);25};26} // namespace llvm27#endif282930