reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
; REQUIRES: x86-registered-target
; RUN: llc -mtriple x86_64-apple-darwin %s -pass-remarks-analysis='size-info'\
; RUN: -pass-remarks-output=%t.yaml -o /dev/null < %s 2> %t; \
; RUN: cat %t %t.yaml | FileCheck %s

; Make sure that machine-level size remarks work.
; Test the following:
; - When we create a MachineFunction (e.g, during instruction selection), it
;   has a size of 0.
; - The initial size of the function after filling it is positive.
; - After that, we can increase or decrease the size of the function.
; - ... The final size must be positive.
; - ... The delta can be negative or positive.

; CHECK: remark: <unknown>:0:0: X86 DAG->DAG Instruction Selection: Function:
; CHECK-SAME: main: MI Instruction count changed from 0
; CHECK-SAME: to [[INIT:[1-9][0-9]*]]; Delta: [[INIT]]
; CHECK-NEXT: remark: <unknown>:0:0: Simple Register Coalescing: Function: main:
; CHECK-SAME: MI Instruction count changed from [[INIT]] to
; CHECK-SAME: [[FINAL:[1-9][0-9]*]];
; CHECK-SAME: Delta: [[DELTA:-?[1-9][0-9]*]]
; CHECK-NEXT: --- !Analysis
; CHECK-NEXT: Pass:            size-info
; CHECK-NEXT: Name:            FunctionMISizeChange
; CHECK-NEXT: Function:        main
; CHECK-NEXT: Args:
; CHECK-NEXT: - Pass:            'X86 DAG->DAG Instruction Selection'
; CHECK-NEXT: - String:          ': Function: '
; CHECK-NEXT: - Function:        main
; CHECK-NEXT: - String:          ': '
; CHECK-NEXT: - String:          'MI Instruction count changed from '
; CHECK-NEXT: - MIInstrsBefore:  '0'
; CHECK-NEXT:  - String:          ' to '
; CHECK-NEXT:  - MIInstrsAfter:   '[[INIT]]'
; CHECK-NEXT:  - String:          '; Delta: '
; CHECK-NEXT:  - Delta:           '[[INIT]]'
; CHECK-DAG: --- !Analysis
; CHECK-NEXT: Pass:            size-info
; CHECK-NEXT: Name:            FunctionMISizeChange
; CHECK-NEXT: Function:        main
; CHECK-NEXT: Args:
; CHECK-NEXT:   - Pass:            Simple Register Coalescing
; CHECK-NEXT:   - String:          ': Function: '
; CHECK-NEXT:   - Function:        main
; CHECK-NEXT:   - String:          ': '
; CHECK-NEXT:   - String:          'MI Instruction count changed from '
; CHECK-NEXT:   - MIInstrsBefore:  '[[INIT]]'
; CHECK-NEXT:   - String:          ' to '
; CHECK-NEXT:   - MIInstrsAfter:   '[[FINAL]]'
; CHECK-NEXT:   - String:          '; Delta: '
; CHECK-NEXT:   - Delta:           '[[DELTA]]'
define i32 @main() #0 {
entry:
  %retval = alloca i32, align 4
  store i32 0, i32* %retval, align 4
  ret i32 0
}

attributes #0 = { noinline nounwind optnone ssp uwtable }