brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 8e37f34 Raw
34 lines · c
1//=== X86CallingConv.h - X86 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 X86 Calling Convention that10// aren't done by tablegen.11//12//===----------------------------------------------------------------------===//13 14#ifndef LLVM_LIB_TARGET_X86_X86CALLINGCONV_H15#define LLVM_LIB_TARGET_X86_X86CALLINGCONV_H16 17#include "MCTargetDesc/X86MCTargetDesc.h"18#include "llvm/CodeGen/CallingConvLower.h"19#include "llvm/IR/CallingConv.h"20 21namespace llvm {22 23bool RetCC_X86(unsigned ValNo, MVT ValVT, MVT LocVT,24               CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags,25               Type *OrigTy, CCState &State);26 27bool CC_X86(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo,28            ISD::ArgFlagsTy ArgFlags, Type *OrigTy, CCState &State);29 30} // End llvm namespace31 32#endif33 34