LLVM API Documentation
00001 //===-- SystemZCallingConv.h - Calling conventions for SystemZ --*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZCALLINGCONV_H 00011 #define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZCALLINGCONV_H 00012 00013 namespace llvm { 00014 namespace SystemZ { 00015 const unsigned NumArgGPRs = 5; 00016 extern const unsigned ArgGPRs[NumArgGPRs]; 00017 00018 const unsigned NumArgFPRs = 4; 00019 extern const unsigned ArgFPRs[NumArgFPRs]; 00020 } // end namespace SystemZ 00021 } // end namespace llvm 00022 00023 #endif