Deleted Added
full compact
SystemZCallingConv.cpp (309124) SystemZCallingConv.cpp (353358)
1//===-- SystemZCallingConv.cpp - Calling conventions for SystemZ ----------===//
2//
1//===-- SystemZCallingConv.cpp - Calling conventions for SystemZ ----------===//
2//
3// The LLVM Compiler Infrastructure
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
4//
6//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "SystemZCallingConv.h"
11#include "SystemZRegisterInfo.h"
12
13using namespace llvm;
14
15const MCPhysReg SystemZ::ArgGPRs[SystemZ::NumArgGPRs] = {
16 SystemZ::R2D, SystemZ::R3D, SystemZ::R4D, SystemZ::R5D, SystemZ::R6D
17};
18
19const MCPhysReg SystemZ::ArgFPRs[SystemZ::NumArgFPRs] = {
20 SystemZ::F0D, SystemZ::F2D, SystemZ::F4D, SystemZ::F6D
21};
7//===----------------------------------------------------------------------===//
8
9#include "SystemZCallingConv.h"
10#include "SystemZRegisterInfo.h"
11
12using namespace llvm;
13
14const MCPhysReg SystemZ::ArgGPRs[SystemZ::NumArgGPRs] = {
15 SystemZ::R2D, SystemZ::R3D, SystemZ::R4D, SystemZ::R5D, SystemZ::R6D
16};
17
18const MCPhysReg SystemZ::ArgFPRs[SystemZ::NumArgFPRs] = {
19 SystemZ::F0D, SystemZ::F2D, SystemZ::F4D, SystemZ::F6D
20};