llvm-6502/test/Bitcode/miscInstructions.3.2.ll

193 lines
5.1 KiB
LLVM
Raw Permalink Normal View History

; RUN: llvm-dis < %s.bc| FileCheck %s
; miscInstructions.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
; The test checks that LLVM does not misread miscellaneous instructions of
; older bitcode files.
@X = global i8 1
@_ZTIi = global i8* @X
@_ZTId = global i8* @X
define i32 @__gxx_personality_v0(...){
entry:
ret i32 0
}
; CHECK-LABEL: define void @landingpadInstr1
; CHECK-SAME: personality i32 (...)* @__gxx_personality_v0
define void @landingpadInstr1(i1 %cond1, <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2){
entry:
; CHECK: %res = landingpad { i8*, i32 }
%res = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
; CHECK: catch i8** @_ZTIi
catch i8** @_ZTIi
ret void
}
; CHECK-LABEL: define void @landingpadInstr2
; CHECK-SAME: personality i32 (...)* @__gxx_personality_v0
define void @landingpadInstr2(i1 %cond1, <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2){
entry:
; CHECK: %res = landingpad { i8*, i32 }
%res = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
; CHECK: cleanup
cleanup
ret void
}
; CHECK-LABEL: define void @landingpadInstr3
; CHECK-SAME: personality i32 (...)* @__gxx_personality_v0
define void @landingpadInstr3(i1 %cond1, <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2){
entry:
; CHECK: %res = landingpad { i8*, i32 }
%res = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
; CHECK: catch i8** @_ZTIi
catch i8** @_ZTIi
; CHECK: filter [1 x i8**] [i8** @_ZTId]
filter [1 x i8**] [i8** @_ZTId]
ret void
}
define void @phiInstr(){
LoopHeader:
%x = add i32 0, 0
br label %Loop
Loop:
; CHECK: %indvar = phi i32 [ 0, %LoopHeader ], [ %nextindvar, %Loop ]
%indvar = phi i32 [ 0, %LoopHeader ], [ %nextindvar, %Loop ]
%nextindvar = add i32 %indvar, 1
br label %Loop
ret void
}
define void @selectInstr(i1 %cond1, <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2){
entry:
; CHECK: %res1 = select i1 %cond1, i8 1, i8 0
%res1 = select i1 %cond1, i8 1, i8 0
; CHECK-NEXT: %res2 = select <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2
%res2 = select <2 x i1> %cond2, <2 x i8> %x1, <2 x i8> %x2
ret void
}
define void @icmp(i32 %x1, i32 %x2, i32* %ptr1, i32* %ptr2, <2 x i32> %vec1, <2 x i32> %vec2){
entry:
; CHECK: %res1 = icmp eq i32 %x1, %x2
%res1 = icmp eq i32 %x1, %x2
; CHECK-NEXT: %res2 = icmp ne i32 %x1, %x2
%res2 = icmp ne i32 %x1, %x2
; CHECK-NEXT: %res3 = icmp ugt i32 %x1, %x2
%res3 = icmp ugt i32 %x1, %x2
; CHECK-NEXT: %res4 = icmp uge i32 %x1, %x2
%res4 = icmp uge i32 %x1, %x2
; CHECK-NEXT: %res5 = icmp ult i32 %x1, %x2
%res5 = icmp ult i32 %x1, %x2
; CHECK-NEXT: %res6 = icmp ule i32 %x1, %x2
%res6 = icmp ule i32 %x1, %x2
; CHECK-NEXT: %res7 = icmp sgt i32 %x1, %x2
%res7 = icmp sgt i32 %x1, %x2
; CHECK-NEXT: %res8 = icmp sge i32 %x1, %x2
%res8 = icmp sge i32 %x1, %x2
; CHECK-NEXT: %res9 = icmp slt i32 %x1, %x2
%res9 = icmp slt i32 %x1, %x2
; CHECK-NEXT: %res10 = icmp sle i32 %x1, %x2
%res10 = icmp sle i32 %x1, %x2
; CHECK-NEXT: %res11 = icmp eq i32* %ptr1, %ptr2
%res11 = icmp eq i32* %ptr1, %ptr2
; CHECK-NEXT: %res12 = icmp eq <2 x i32> %vec1, %vec2
%res12 = icmp eq <2 x i32> %vec1, %vec2
ret void
}
define void @fcmp(float %x1, float %x2, <2 x float> %vec1, <2 x float> %vec2){
entry:
; CHECK: %res1 = fcmp oeq float %x1, %x2
%res1 = fcmp oeq float %x1, %x2
; CHECK-NEXT: %res2 = fcmp one float %x1, %x2
%res2 = fcmp one float %x1, %x2
; CHECK-NEXT: %res3 = fcmp ugt float %x1, %x2
%res3 = fcmp ugt float %x1, %x2
; CHECK-NEXT: %res4 = fcmp uge float %x1, %x2
%res4 = fcmp uge float %x1, %x2
; CHECK-NEXT: %res5 = fcmp ult float %x1, %x2
%res5 = fcmp ult float %x1, %x2
; CHECK-NEXT: %res6 = fcmp ule float %x1, %x2
%res6 = fcmp ule float %x1, %x2
; CHECK-NEXT: %res7 = fcmp ogt float %x1, %x2
%res7 = fcmp ogt float %x1, %x2
; CHECK-NEXT: %res8 = fcmp oge float %x1, %x2
%res8 = fcmp oge float %x1, %x2
; CHECK-NEXT: %res9 = fcmp olt float %x1, %x2
%res9 = fcmp olt float %x1, %x2
; CHECK-NEXT: %res10 = fcmp ole float %x1, %x2
%res10 = fcmp ole float %x1, %x2
; CHECK-NEXT: %res11 = fcmp ord float %x1, %x2
%res11 = fcmp ord float %x1, %x2
; CHECK-NEXT: %res12 = fcmp ueq float %x1, %x2
%res12 = fcmp ueq float %x1, %x2
; CHECK-NEXT: %res13 = fcmp une float %x1, %x2
%res13 = fcmp une float %x1, %x2
; CHECK-NEXT: %res14 = fcmp uno float %x1, %x2
%res14 = fcmp uno float %x1, %x2
; CHECK-NEXT: %res15 = fcmp true float %x1, %x2
%res15 = fcmp true float %x1, %x2
; CHECK-NEXT: %res16 = fcmp false float %x1, %x2
%res16 = fcmp false float %x1, %x2
; CHECK-NEXT: %res17 = fcmp oeq <2 x float> %vec1, %vec2
%res17 = fcmp oeq <2 x float> %vec1, %vec2
ret void
}
declare i32 @printf(i8* noalias nocapture, ...)
define void @call(i32 %x, i8* %msg ){
entry:
; CHECK: %res1 = call i32 @test(i32 %x)
%res1 = call i32 @test(i32 %x)
; CHECK-NEXT: %res2 = tail call i32 @test(i32 %x)
%res2 = tail call i32 @test(i32 %x)
[opaque pointer type] Add textual IR support for explicit type parameter to the call instruction See r230786 and r230794 for similar changes to gep and load respectively. Call is a bit different because it often doesn't have a single explicit type - usually the type is deduced from the arguments, and just the return type is explicit. In those cases there's no need to change the IR. When that's not the case, the IR usually contains the pointer type of the first operand - but since typed pointers are going away, that representation is insufficient so I'm just stripping the "pointerness" of the explicit type away. This does make the IR a bit weird - it /sort of/ reads like the type of the first operand: "call void () %x(" but %x is actually of type "void ()*" and will eventually be just of type "ptr". But this seems not too bad and I don't think it would benefit from repeating the type ("void (), void () * %x(" and then eventually "void (), ptr %x(") as has been done with gep and load. This also has a side benefit: since the explicit type is no longer a pointer, there's no ambiguity between an explicit type and a function that returns a function pointer. Previously this case needed an explicit type (eg: a function returning a void() function was written as "call void () () * @x(" rather than "call void () * @x(" because of the ambiguity between a function returning a pointer to a void() function and a function returning void). No ambiguity means even function pointer return types can just be written alone, without writing the whole function's type. This leaves /only/ the varargs case where the explicit type is required. Given the special type syntax in call instructions, the regex-fu used for migration was a bit more involved in its own unique way (as every one of these is) so here it is. Use it in conjunction with the apply.sh script and associated find/xargs commands I've provided in rr230786 to migrate your out of tree tests. Do let me know if any of this doesn't cover your cases & we can iterate on a more general script/regexes to help others with out of tree tests. About 9 test cases couldn't be automatically migrated - half of those were functions returning function pointers, where I just had to manually delete the function argument types now that we didn't need an explicit function type there. The other half were typedefs of function types used in calls - just had to manually drop the * from those. import fileinput import sys import re pat = re.compile(r'((?:=|:|^|\s)call\s(?:[^@]*?))(\s*$|\s*(?:(?:\[\[[a-zA-Z0-9_]+\]\]|[@%](?:(")?[\\\?@a-zA-Z0-9_.]*?(?(3)"|)|{{.*}}))(?:\(|$)|undef|inttoptr|bitcast|null|asm).*$)') addrspace_end = re.compile(r"addrspace\(\d+\)\s*\*$") func_end = re.compile("(?:void.*|\)\s*)\*$") def conv(match, line): if not match or re.search(addrspace_end, match.group(1)) or not re.search(func_end, match.group(1)): return line return line[:match.start()] + match.group(1)[:match.group(1).rfind('*')].rstrip() + match.group(2) + line[match.end():] for line in sys.stdin: sys.stdout.write(conv(re.search(pat, line), line)) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235145 91177308-0d34-0410-b5e6-96231b3b80d8
2015-04-16 23:24:18 +00:00
; CHECK-NEXT: %res3 = call i32 (i8*, ...) @printf(i8* %msg, i32 12, i8 42)
%res3 = call i32 (i8*, ...) @printf(i8* %msg, i32 12, i8 42)
ret void
}
define i32 @test(i32 %x){
entry:
ret i32 %x
}