Skip to content

[RISCV][GISel] Select trap and debugtrap. #73171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions llvm/lib/Target/RISCV/GISel/RISCVInstructionSelector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ class RISCVInstructionSelector : public InstructionSelector {
MachineRegisterInfo &MRI) const;
bool selectFPCompare(MachineInstr &MI, MachineIRBuilder &MIB,
MachineRegisterInfo &MRI) const;
bool selectIntrinsicWithSideEffects(MachineInstr &MI, MachineIRBuilder &MIB,
MachineRegisterInfo &MRI) const;

ComplexRendererFns selectShiftMask(MachineOperand &Root) const;
ComplexRendererFns selectAddrRegImm(MachineOperand &Root) const;
Expand Down Expand Up @@ -564,6 +566,8 @@ bool RISCVInstructionSelector::select(MachineInstr &MI) {
return selectSelect(MI, MIB, MRI);
case TargetOpcode::G_FCMP:
return selectFPCompare(MI, MIB, MRI);
case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS:
return selectIntrinsicWithSideEffects(MI, MIB, MRI);
default:
return false;
}
Expand Down Expand Up @@ -1099,6 +1103,29 @@ bool RISCVInstructionSelector::selectFPCompare(MachineInstr &MI,
return true;
}

bool RISCVInstructionSelector::selectIntrinsicWithSideEffects(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assert (TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS);

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't the cast to GIntrinsic already take care of that?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it will pass in the G_INTRINSIC, G_INTRINSIC_CONVERGENT, and G_INTRINSIC_CONVERGENT_W_WIDE_EFFECTS too, but it shouldn't.

MachineInstr &MI, MachineIRBuilder &MIB, MachineRegisterInfo &MRI) const {
assert(MI.getOpcode() == TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS &&
"Unexpected opcode");
// Find the intrinsic ID.
unsigned IntrinID = cast<GIntrinsic>(MI).getIntrinsicID();

// Select the instruction.
switch (IntrinID) {
default:
return false;
case Intrinsic::trap:
MIB.buildInstr(RISCV::UNIMP, {}, {});
break;
case Intrinsic::debugtrap:
MIB.buildInstr(RISCV::EBREAK, {}, {});
break;
}

MI.eraseFromParent();
return true;
}

namespace llvm {
InstructionSelector *
createRISCVInstructionSelector(const RISCVTargetMachine &TM,
Expand Down
34 changes: 34 additions & 0 deletions llvm/test/CodeGen/RISCV/GlobalISel/instruction-select/trap.mir
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
# RUN: llc -mtriple=riscv32 -run-pass=instruction-select -simplify-mir \
# RUN: -verify-machineinstrs %s -o - | FileCheck %s
# RUN: llc -mtriple=riscv64 -run-pass=instruction-select -simplify-mir \
# RUN: -verify-machineinstrs %s -o - | FileCheck %s

---
name: test_trap
legalized: true
regBankSelected: true
tracksRegLiveness: true
body: |
bb.1:
; CHECK-LABEL: name: test_trap
; CHECK: UNIMP
; CHECK-NEXT: PseudoRET
G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.trap)
PseudoRET

...
---
name: test_debugtrap
legalized: true
regBankSelected: true
tracksRegLiveness: true
body: |
bb.1:
; CHECK-LABEL: name: test_debugtrap
; CHECK: EBREAK
; CHECK-NEXT: PseudoRET
G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.debugtrap)
PseudoRET

...