File tree 2 files changed +384
-675
lines changed
lib/Transforms/Instrumentation
test/Instrumentation/MemorySanitizer/AArch64
2 files changed +384
-675
lines changed Original file line number Diff line number Diff line change @@ -4026,6 +4026,11 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
4026
4026
setOriginForNaryOp (I);
4027
4027
}
4028
4028
4029
+ // Approximation only
4030
+ void handleNEONVectorMultiplyIntrinsic (IntrinsicInst &I) {
4031
+ handleShadowOr (I);
4032
+ }
4033
+
4029
4034
void visitIntrinsicInst (IntrinsicInst &I) {
4030
4035
switch (I.getIntrinsicID ()) {
4031
4036
case Intrinsic::uadd_with_overflow:
@@ -4429,6 +4434,16 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
4429
4434
break ;
4430
4435
}
4431
4436
4437
+ case Intrinsic::aarch64_neon_fmulx:
4438
+ case Intrinsic::aarch64_neon_pmul:
4439
+ case Intrinsic::aarch64_neon_pmull:
4440
+ case Intrinsic::aarch64_neon_smull:
4441
+ case Intrinsic::aarch64_neon_pmull64:
4442
+ case Intrinsic::aarch64_neon_umull: {
4443
+ handleNEONVectorMultiplyIntrinsic (I);
4444
+ break ;
4445
+ }
4446
+
4432
4447
default :
4433
4448
if (!handleUnknownIntrinsic (I))
4434
4449
visitInstruction (I);
You can’t perform that action at this time.
0 commit comments