Home
last modified time | relevance | path

Searched refs:visitShift (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h543 void visitShift(const User &I, unsigned Opcode);
559 void visitShl (const User &I) { visitShift(I, ISD::SHL); } in visitShl()
560 void visitLShr(const User &I) { visitShift(I, ISD::SRL); } in visitLShr()
561 void visitAShr(const User &I) { visitShift(I, ISD::SRA); } in visitAShr()
H A DSelectionDAGBuilder.cpp3211 void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) { in visitShift() function in SelectionDAGBuilder