LLVM API Documentation

SystemZCallingConv.cpp
Go to the documentation of this file.
00001 //===-- SystemZCallingConv.cpp - Calling conventions for SystemZ ----------===//
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 #include "SystemZCallingConv.h"
00011 #include "SystemZRegisterInfo.h"
00012 
00013 using namespace llvm;
00014 
00015 const unsigned SystemZ::ArgGPRs[SystemZ::NumArgGPRs] = {
00016   SystemZ::R2D, SystemZ::R3D, SystemZ::R4D, SystemZ::R5D, SystemZ::R6D
00017 };
00018 
00019 const unsigned SystemZ::ArgFPRs[SystemZ::NumArgFPRs] = {
00020   SystemZ::F0D, SystemZ::F2D, SystemZ::F4D, SystemZ::F6D
00021 };