2017-10-20 05:37:38 +08:00
|
|
|
//===-- RISCVCallingConv.td - Calling Conventions RISCV ----*- tablegen -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2017-10-20 05:37:38 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This describes the calling conventions for the RISCV architecture.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-12-11 20:49:02 +08:00
|
|
|
// The RISC-V calling convention is handled with custom code in
|
|
|
|
// RISCVISelLowering.cpp (CC_RISCV).
|
2017-10-20 05:37:38 +08:00
|
|
|
|
2019-03-14 16:28:48 +08:00
|
|
|
def CSR_ILP32_LP64
|
|
|
|
: CalleeSavedRegs<(add X1, X3, X4, X8, X9, (sequence "X%u", 18, 27))>;
|
2017-11-08 21:31:40 +08:00
|
|
|
|
2019-03-31 01:59:30 +08:00
|
|
|
def CSR_ILP32F_LP64F
|
|
|
|
: CalleeSavedRegs<(add CSR_ILP32_LP64,
|
2019-09-27 23:49:10 +08:00
|
|
|
F8_F, F9_F, (sequence "F%u_F", 18, 27))>;
|
2019-03-31 01:59:30 +08:00
|
|
|
|
|
|
|
def CSR_ILP32D_LP64D
|
|
|
|
: CalleeSavedRegs<(add CSR_ILP32_LP64,
|
2019-09-27 23:49:10 +08:00
|
|
|
F8_D, F9_D, (sequence "F%u_D", 18, 27))>;
|
2019-03-31 01:59:30 +08:00
|
|
|
|
2017-11-08 21:31:40 +08:00
|
|
|
// Needed for implementation of RISCVRegisterInfo::getNoPreservedMask()
|
|
|
|
def CSR_NoRegs : CalleeSavedRegs<(add)>;
|
[RISCV] Add support for _interrupt attribute
- Save/restore only registers that are used.
This includes Callee saved registers and Caller saved registers
(arguments and temporaries) for integer and FP registers.
- If there is a call in the interrupt handler, save/restore all
Caller saved registers (arguments and temporaries) and all FP registers.
- Emit special return instructions depending on "interrupt"
attribute type.
Based on initial patch by Zhaoshi Zheng.
Reviewers: asb
Reviewed By: asb
Subscribers: rkruppe, the_o, MartinMosbeck, brucehoult, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, zzheng, edward-jones, mgrang, rogfer01, llvm-commits
Differential Revision: https://reviews.llvm.org/D48411
llvm-svn: 338047
2018-07-27 01:49:43 +08:00
|
|
|
|
|
|
|
// 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),
|
2019-09-27 23:49:10 +08:00
|
|
|
(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))>;
|
[RISCV] Add support for _interrupt attribute
- Save/restore only registers that are used.
This includes Callee saved registers and Caller saved registers
(arguments and temporaries) for integer and FP registers.
- If there is a call in the interrupt handler, save/restore all
Caller saved registers (arguments and temporaries) and all FP registers.
- Emit special return instructions depending on "interrupt"
attribute type.
Based on initial patch by Zhaoshi Zheng.
Reviewers: asb
Reviewed By: asb
Subscribers: rkruppe, the_o, MartinMosbeck, brucehoult, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, zzheng, edward-jones, mgrang, rogfer01, llvm-commits
Differential Revision: https://reviews.llvm.org/D48411
llvm-svn: 338047
2018-07-27 01:49:43 +08:00
|
|
|
|
|
|
|
// 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),
|
2019-09-27 23:49:10 +08:00
|
|
|
(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))>;
|