Bitwise exclusive‐or operators
Synopses
Declared in <llvm/ADT/APInt.h>
Bitwise XOR of an APInt and a 64‐bit value.
Bitwise XOR of two APInts.
Bitwise XOR of two KnownBits values.
Bitwise XOR of a 64‐bit value and an APInt.
Bitwise XOR that prefers moving from b.
Bitwise XOR of two KnownBits values.
Return the bitwise XOR of LHS and RHS.
SmallBitVector
operatorˆ(
SmallBitVector const& LHS,
SmallBitVector const& RHS);
Return Value
-
The bitwise XOR of
aandRHS. -
The bitwise XOR of
aandb. -
Known bits of the bitwise XOR.
-
The bitwise XOR of
LHSandb. -
New bit vector with bits set where
LHSandRHSdiffer.
Parameters
Name |
Description |
a |
Left‐hand APInt |
RHS |
Right‐hand 64‐bit value |
b |
Right‐hand operand |
LHS |
Left‐hand known bits (taken by value). |
Created with MrDocs