mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
30264d4391
As part of the unification of the debug format and the MIR format, print MBB references as '%bb.5'. The MIR printer prints the IR name of a MBB only for block definitions. * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)->getNumber\(\)/" << printMBBReference(*\1)/g' * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)\.getNumber\(\)/" << printMBBReference(\1)/g' * find . \( -name "*.txt" -o -name "*.s" -o -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#([0-9]+)/%bb.\1/g' * grep -nr 'BB#' and fix Differential Revision: https://reviews.llvm.org/D40422 llvm-svn: 319665
27 lines
640 B
LLVM
27 lines
640 B
LLVM
; RUN: llc -verify-machineinstrs < %s | FileCheck %s
|
|
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc-unknown-linux-gnu"
|
|
|
|
; Tests that the 'nest' parameter attribute causes the relevant parameter to be
|
|
; passed in the right register (r11 for PPC).
|
|
|
|
define i8* @nest_receiver(i8* nest %arg) nounwind {
|
|
; CHECK-LABEL: nest_receiver:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: mr 3, 11
|
|
; CHECK-NEXT: blr
|
|
|
|
ret i8* %arg
|
|
}
|
|
|
|
define i8* @nest_caller(i8* %arg) nounwind {
|
|
; CHECK-LABEL: nest_caller:
|
|
; CHECK: mr 11, 3
|
|
; CHECK-NEXT: bl nest_receiver
|
|
; CHECK: blr
|
|
|
|
%result = call i8* @nest_receiver(i8* nest %arg)
|
|
ret i8* %result
|
|
}
|
|
|