Searched refs:UMAAL (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h212 UMAAL, // 64-bit Unsigned Accumulate Accumulate Multiply
H A DARMISelDAGToDAG.cpp3380 case ARMISD::UMAAL: {
3381 unsigned Opc = Subtarget->isThumb() ? ARM::t2UMAAL : ARM::UMAAL;
H A DARMISelLowering.cpp1656 case ARMISD::UMAAL: return "ARMISD::UMAAL";
11536 // UMAAL is similar to UMLAL except that it adds two unsigned values.
11538 // chance to use UMAAL. Check if Addc uses a node which has already
11550 // Find the converted UMAAL or quit if it doesn't exist.
11575 SDValue UMAAL = DAG.getNode(ARMISD::UMAAL, SDLoc(AddcNode), local
11578 // Replace the ADDs' nodes uses by the UMAAL node's values.
11579 DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), SDValue(UMAAL.getNode(), 1));
11580 DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), SDValue(UMAAL
[all...]

Completed in 282 milliseconds