[llvm] 110dfb4 - [test] Precommit SCEV test

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 29 09:35:44 PDT 2023


Author: Arthur Eubanks
Date: 2023-06-29T09:24:37-07:00
New Revision: 110dfb4c58688fb65b2357177eca7b3bb85d1d2c

URL: https://github.com/llvm/llvm-project/commit/110dfb4c58688fb65b2357177eca7b3bb85d1d2c
DIFF: https://github.com/llvm/llvm-project/commit/110dfb4c58688fb65b2357177eca7b3bb85d1d2c.diff

LOG: [test] Precommit SCEV test

Added: 
    llvm/test/Analysis/ScalarEvolution/malloc.ll

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/llvm/test/Analysis/ScalarEvolution/malloc.ll b/llvm/test/Analysis/ScalarEvolution/malloc.ll
new file mode 100644
index 00000000000000..f2e373532063f4
--- /dev/null
+++ b/llvm/test/Analysis/ScalarEvolution/malloc.ll
@@ -0,0 +1,26 @@
+; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --version 2
+; RUN: opt -passes='print<scalar-evolution>' -disable-output %s 2>&1 | FileCheck %s
+
+define ptr @f() {
+; CHECK-LABEL: 'f'
+; CHECK-NEXT:  Classifying expressions for: @f
+; CHECK-NEXT:    %alloc = tail call dereferenceable(64) ptr @malloc(i64 64)
+; CHECK-NEXT:    --> %alloc U: full-set S: full-set
+; CHECK-NEXT:  Determining loop execution counts for: @f
+;
+  %alloc = tail call dereferenceable(64) ptr @malloc(i64 64)
+  ret ptr %alloc
+}
+
+define ptr @f2() {
+; CHECK-LABEL: 'f2'
+; CHECK-NEXT:  Classifying expressions for: @f2
+; CHECK-NEXT:    %alloc = tail call dereferenceable_or_null(64) ptr @malloc(i64 64)
+; CHECK-NEXT:    --> %alloc U: full-set S: full-set
+; CHECK-NEXT:  Determining loop execution counts for: @f2
+;
+  %alloc = tail call dereferenceable_or_null(64) ptr @malloc(i64 64)
+  ret ptr %alloc
+}
+
+declare noalias noundef ptr @malloc(i64 noundef) allockind("alloc,uninitialized") allocsize(0)


        


More information about the llvm-commits mailing list