Lines Matching defs:RISCVCodeGenPrepare
1 //===----- RISCVCodeGenPrepare.cpp ----------------------------------------===//
37 class RISCVCodeGenPrepare : public FunctionPass,
38 public InstVisitor<RISCVCodeGenPrepare, bool> {
46 RISCVCodeGenPrepare() : FunctionPass(ID) {}
69 bool RISCVCodeGenPrepare::visitAnd(BinaryOperator &BO) {
137 bool RISCVCodeGenPrepare::visitIntrinsicInst(IntrinsicInst &I) {
171 bool RISCVCodeGenPrepare::expandVPStrideLoad(IntrinsicInst &II) {
200 bool RISCVCodeGenPrepare::runOnFunction(Function &F) {
219 INITIALIZE_PASS_BEGIN(RISCVCodeGenPrepare, DEBUG_TYPE, PASS_NAME, false, false)
221 INITIALIZE_PASS_END(RISCVCodeGenPrepare, DEBUG_TYPE, PASS_NAME, false, false)
223 char RISCVCodeGenPrepare::ID = 0;
226 return new RISCVCodeGenPrepare();