Fixing @llvm.memcpy not honoring volatile.
[llvm-core.git] / lib / Target / BPF / BPFRegisterInfo.h
blobe7b870b720a4e99a225305beaf588a0ce07d81e3
1 //===-- BPFRegisterInfo.h - BPF Register Information Impl -------*- 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 // This file contains the BPF implementation of the TargetRegisterInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_BPF_BPFREGISTERINFO_H
14 #define LLVM_LIB_TARGET_BPF_BPFREGISTERINFO_H
16 #include "llvm/CodeGen/TargetRegisterInfo.h"
18 #define GET_REGINFO_HEADER
19 #include "BPFGenRegisterInfo.inc"
21 namespace llvm {
23 struct BPFRegisterInfo : public BPFGenRegisterInfo {
25 BPFRegisterInfo();
27 const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF) const override;
29 BitVector getReservedRegs(const MachineFunction &MF) const override;
31 void eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj,
32 unsigned FIOperandNum,
33 RegScavenger *RS = nullptr) const override;
35 Register getFrameRegister(const MachineFunction &MF) const override;
39 #endif