mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Define target-indepenent SDNode types for multiply and divide that
produce two results. llvm-svn: 42632
This commit is contained in:
parent
922a92a9e2
commit
148f07390d
@ -234,6 +234,15 @@ namespace ISD {
|
||||
// Simple integer binary arithmetic operators.
|
||||
ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
|
||||
|
||||
// SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing
|
||||
// a signed/unsigned value of type i[2*n], and return the full value as
|
||||
// two results, each of type iN.
|
||||
SMUL_LOHI, UMUL_LOHI,
|
||||
|
||||
// SDIVREM/UDIVREM - Divide two integers and produce both a quotient and
|
||||
// remainder result.
|
||||
SDIVREM, UDIVREM,
|
||||
|
||||
// CARRY_FALSE - This node is used when folding other nodes,
|
||||
// like ADDC/SUBC, which indicate the carry result is always false.
|
||||
CARRY_FALSE,
|
||||
|
Loading…
Reference in New Issue
Block a user