Lines Matching defs:arg0
1862 auto arg0{getBase(args[0])};
1869 // Add the %val of arg0 to %addr of arg1
1870 auto addr{addOffsetToAddress(builder, loc, arg1, arg0)};
1891 auto arg0{getBase(args[0])};
1904 // For vec_ld, need to convert arg0 from i64 to i32
1905 if (vop == VecOp::Ld && arg0.getType().getIntOrFloatBitWidth() == 64)
1906 arg0 = builder.createConvert(loc, i32Ty, arg0);
1908 // Add the %val of arg0 to %addr of arg1
1909 auto addr{addOffsetToAddress(builder, loc, arg1, arg0)};
1991 auto arg0{getBase(args[0])};
1998 // Convert arg0 to i64 type if needed
2000 if (arg0.getType() != i64ty)
2001 arg0 = builder.create<fir::ConvertOp>(loc, i64ty, arg0);
2006 auto offset{builder.create<mlir::arith::ShLIOp>(loc, arg0, shiftVal)};
2422 auto arg0{getBase(args[0])};
2430 // Add the %val of arg0 to %addr of arg1
2431 auto addr{addOffsetToAddress(builder, loc, arg1, arg0)};