mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
bc3e25486a
The new names for FPRs ensure that the Register values within the same class are enumerated consecutively (the order is determined by the `LessRecordRegister` function object). Where there were tables mapping between 32- and 64-bit FPRs (and vice versa) this patch replaces them with Register arithmetic. The enumeration order between different register classes is expected to continue to be arbitrary, although it does impact the conversion from the (overloaded) asm FPR names to Register values, and therefore might require updates to the target if the sorting algorithm is changed. Static asserts were added to ensure that changes to the ordering that would impact the current implementation are detected. Differential Revision: https://reviews.llvm.org/D67423 llvm-svn: 373096
66 lines
2.3 KiB
TableGen
66 lines
2.3 KiB
TableGen
//===-- RISCVCallingConv.td - Calling Conventions RISCV ----*- tablegen -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This describes the calling conventions for the RISCV architecture.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// The RISC-V calling convention is handled with custom code in
|
|
// RISCVISelLowering.cpp (CC_RISCV).
|
|
|
|
def CSR_ILP32_LP64
|
|
: CalleeSavedRegs<(add X1, X3, X4, X8, X9, (sequence "X%u", 18, 27))>;
|
|
|
|
def CSR_ILP32F_LP64F
|
|
: CalleeSavedRegs<(add CSR_ILP32_LP64,
|
|
F8_F, F9_F, (sequence "F%u_F", 18, 27))>;
|
|
|
|
def CSR_ILP32D_LP64D
|
|
: CalleeSavedRegs<(add CSR_ILP32_LP64,
|
|
F8_D, F9_D, (sequence "F%u_D", 18, 27))>;
|
|
|
|
// Needed for implementation of RISCVRegisterInfo::getNoPreservedMask()
|
|
def CSR_NoRegs : CalleeSavedRegs<(add)>;
|
|
|
|
// Interrupt handler needs to save/restore all registers that are used,
|
|
// both Caller and Callee saved registers.
|
|
def CSR_Interrupt : CalleeSavedRegs<(add X1,
|
|
(sequence "X%u", 3, 9),
|
|
(sequence "X%u", 10, 11),
|
|
(sequence "X%u", 12, 17),
|
|
(sequence "X%u", 18, 27),
|
|
(sequence "X%u", 28, 31))>;
|
|
|
|
// Same as CSR_Interrupt, but including all 32-bit FP registers.
|
|
def CSR_XLEN_F32_Interrupt: CalleeSavedRegs<(add X1,
|
|
(sequence "X%u", 3, 9),
|
|
(sequence "X%u", 10, 11),
|
|
(sequence "X%u", 12, 17),
|
|
(sequence "X%u", 18, 27),
|
|
(sequence "X%u", 28, 31),
|
|
(sequence "F%u_F", 0, 7),
|
|
(sequence "F%u_F", 10, 11),
|
|
(sequence "F%u_F", 12, 17),
|
|
(sequence "F%u_F", 28, 31),
|
|
(sequence "F%u_F", 8, 9),
|
|
(sequence "F%u_F", 18, 27))>;
|
|
|
|
// Same as CSR_Interrupt, but including all 64-bit FP registers.
|
|
def CSR_XLEN_F64_Interrupt: CalleeSavedRegs<(add X1,
|
|
(sequence "X%u", 3, 9),
|
|
(sequence "X%u", 10, 11),
|
|
(sequence "X%u", 12, 17),
|
|
(sequence "X%u", 18, 27),
|
|
(sequence "X%u", 28, 31),
|
|
(sequence "F%u_D", 0, 7),
|
|
(sequence "F%u_D", 10, 11),
|
|
(sequence "F%u_D", 12, 17),
|
|
(sequence "F%u_D", 28, 31),
|
|
(sequence "F%u_D", 8, 9),
|
|
(sequence "F%u_D", 18, 27))>;
|