Arthur Eubanks ce3c3cb291 [llvm-reduce] Check if reduction fails/is redundant before invoking oracle
So we don't over count the number of chunks and do unnecessary work reducing more chunks than exist.

This lowers some random reduction I tested with locally from 250s to 232s.

Reviewed By: arsenm

Differential Revision: https://reviews.llvm.org/D136127
2022-10-18 08:43:56 -07:00

23 lines
869 B
LLVM

; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-LOG
; RUN: FileCheck --check-prefixes=CHECK-FINAL --input-file=%t %s
; CHECK-INTERESTINGNESS: ret i32
; CHECK-FINAL: ret i32 0
; Test that we don't invoke the oracle more than necessary (e.g. check the
; oracle then perform some failable/redundant reduction, as opposed to check if
; a reduction will fail/be redundant before invoking the oracle). This prevents
; overestimation of the number of possible reductions and the number of times we
; attempt to reduce.
; IR passes
; CHECK-LOG: Saved new best reduction
; Module data
; CHECK-LOG: Saved new best reduction
; SimplifyCFG
; CHECK-LOG: Saved new best reduction
; CHECK-LOG-NOT: Saved new best reduction
define i32 @f() {
ret i32 0
}