52 lines · c
1//=== PPCCallingConv.h - PPC Custom Calling Convention Routines -*- 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-exception6//7//===----------------------------------------------------------------------===//8//9// This file contains the custom routines for the PPC Calling Convention that10// aren't done by tablegen.11//12//===----------------------------------------------------------------------===//13 14#ifndef LLVM_LIB_TARGET_PPC_PPCCALLINGCONV_H15#define LLVM_LIB_TARGET_PPC_PPCCALLINGCONV_H16 17#include "llvm/CodeGen/CallingConvLower.h"18#include "llvm/IR/CallingConv.h"19 20namespace llvm {21 22bool RetCC_PPC(unsigned ValNo, MVT ValVT, MVT LocVT,23 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,24 Type *OrigTy, CCState &State);25bool RetCC_PPC64_ELF_FIS(unsigned ValNo, MVT ValVT, MVT LocVT,26 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,27 Type *OrigTy, CCState &State);28bool RetCC_PPC_Cold(unsigned ValNo, MVT ValVT, MVT LocVT,29 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,30 Type *OrigTy, CCState &State);31bool CC_PPC32_SVR4(unsigned ValNo, MVT ValVT, MVT LocVT,32 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,33 Type *OrigTy, CCState &State);34bool CC_PPC64_ELF(unsigned ValNo, MVT ValVT, MVT LocVT,35 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,36 Type *OrigTy, CCState &State);37bool CC_PPC64_ELF_FIS(unsigned ValNo, MVT ValVT, MVT LocVT,38 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,39 Type *OrigTy, CCState &State);40bool CC_PPC32_SVR4_ByVal(unsigned ValNo, MVT ValVT, MVT LocVT,41 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,42 Type *OrigTy, CCState &State);43bool CC_PPC32_SVR4_VarArg(unsigned ValNo, MVT ValVT, MVT LocVT,44 CCValAssign::LocInfo LocInfo,45 ISD::ArgFlagsTy ArgFlags, Type *OrigTy,46 CCState &State);47 48} // End llvm namespace49 50#endif51 52