Skip to content

Commit

Permalink
[Clang][XTHeadVector] implement 12.10 vdivu/vdiv/vrem/vremu
Browse files Browse the repository at this point in the history
  • Loading branch information
imkiva committed Mar 13, 2024
1 parent acff917 commit 8823bae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions clang/include/clang/Basic/riscv_vector_xtheadv.td
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,12 @@ let UnMaskedPolicyScheme = HasPassthruOperand in {
// 12.9. Vector Single-Width Integer Multiply Operations

// 12.10. Vector Integer Divide Operations
let UnMaskedPolicyScheme = HasPassthruOperand in {
defm th_vdivu : RVVUnsignedBinBuiltinSet;
defm th_vdiv : RVVSignedBinBuiltinSet;
defm th_vremu : RVVUnsignedBinBuiltinSet;
defm th_vrem : RVVSignedBinBuiltinSet;
}

// 12.11. Vector Widening Integer Multiply Operations

Expand Down

0 comments on commit 8823bae

Please sign in to comment.