diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/Large/branch-range-09.py')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/Large/branch-range-09.py | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/llvm/test/CodeGen/SystemZ/Large/branch-range-09.py b/llvm/test/CodeGen/SystemZ/Large/branch-range-09.py index 6b568a6e640..40bfe31007f 100644 --- a/llvm/test/CodeGen/SystemZ/Large/branch-range-09.py +++ b/llvm/test/CodeGen/SystemZ/Large/branch-range-09.py @@ -67,44 +67,46 @@ # CHECK: clr %r4, [[REG]] # CHECK: jgl [[LABEL]] +from __future__ import print_function + branch_blocks = 8 main_size = 0xffcc -print '@global = global i32 0' +print('@global = global i32 0') -print 'define void @f1(i8 *%base, i8 *%stop, i32 %limit) {' -print 'entry:' -print ' br label %before0' -print '' +print('define void @f1(i8 *%base, i8 *%stop, i32 %limit) {') +print('entry:') +print(' br label %before0') +print('') for i in xrange(branch_blocks): next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' - print 'before%d:' % i - print ' %%bstop%d = getelementptr i8, i8 *%%stop, i64 %d' % (i, i) - print ' %%bcur%d = load i8 , i8 *%%bstop%d' % (i, i) - print ' %%bext%d = sext i8 %%bcur%d to i32' % (i, i) - print ' %%btest%d = icmp ult i32 %%limit, %%bext%d' % (i, i) - print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) - print '' + print('before%d:' % i) + print(' %%bstop%d = getelementptr i8, i8 *%%stop, i64 %d' % (i, i)) + print(' %%bcur%d = load i8 , i8 *%%bstop%d' % (i, i)) + print(' %%bext%d = sext i8 %%bcur%d to i32' % (i, i)) + print(' %%btest%d = icmp ult i32 %%limit, %%bext%d' % (i, i)) + print(' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)) + print('') -print '%s:' % next +print('%s:' % next) a, b = 1, 1 for i in xrange(0, main_size, 6): a, b = b, a + b offset = 4096 + b % 500000 value = a % 256 - print ' %%ptr%d = getelementptr i8, i8 *%%base, i64 %d' % (i, offset) - print ' store volatile i8 %d, i8 *%%ptr%d' % (value, i) + print(' %%ptr%d = getelementptr i8, i8 *%%base, i64 %d' % (i, offset)) + print(' store volatile i8 %d, i8 *%%ptr%d' % (value, i)) for i in xrange(branch_blocks): - print ' %%astop%d = getelementptr i8, i8 *%%stop, i64 %d' % (i, i + 25) - print ' %%acur%d = load i8 , i8 *%%astop%d' % (i, i) - print ' %%aext%d = sext i8 %%acur%d to i32' % (i, i) - print ' %%atest%d = icmp ult i32 %%limit, %%aext%d' % (i, i) - print ' br i1 %%atest%d, label %%main, label %%after%d' % (i, i) - print '' - print 'after%d:' % i + print(' %%astop%d = getelementptr i8, i8 *%%stop, i64 %d' % (i, i + 25)) + print(' %%acur%d = load i8 , i8 *%%astop%d' % (i, i)) + print(' %%aext%d = sext i8 %%acur%d to i32' % (i, i)) + print(' %%atest%d = icmp ult i32 %%limit, %%aext%d' % (i, i)) + print(' br i1 %%atest%d, label %%main, label %%after%d' % (i, i)) + print('') + print('after%d:' % i) -print ' %dummy = load volatile i32, i32 *@global' -print ' ret void' -print '}' +print(' %dummy = load volatile i32, i32 *@global') +print(' ret void') +print('}') |