The motivation is that the update script has at least two deviations (`<...>@GOT`/`<...>@PLT`/ and not hiding pointer arithmetics) from what pretty much all the checklines were generated with, and most of the tests are still not updated, so each time one of the non-up-to-date tests is updated to see the effect of the code change, there is a lot of noise. Instead of having to deal with that each time, let's just deal with everything at once. This has been done via: ``` cd llvm-project/llvm/test/CodeGen/X86 grep -rl "; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py" | xargs -L1 <...>/llvm-project/llvm/utils/update_llc_test_checks.py --llc-binary <...>/llvm-project/build/bin/llc ``` Not all tests were regenerated, however.
69 lines
3.0 KiB
LLVM
69 lines
3.0 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
|
|
; rdar://6647639
|
|
|
|
%struct.FetchPlanHeader = type { i8*, i8*, i32, i8*, i8*, i8*, i8*, i8*, %struct.NSObject* (%struct.NSObject*, %struct.objc_selector*, ...)*, %struct.__attributeDescriptionFlags }
|
|
%struct.NSArray = type { %struct.NSObject }
|
|
%struct.NSAutoreleasePool = type { %struct.NSObject, i8*, i8*, i8*, i8* }
|
|
%struct.NSObject = type { %struct.NSObject* }
|
|
%struct.__attributeDescriptionFlags = type <{ i32 }>
|
|
%struct._message_ref_t = type { %struct.NSObject* (%struct.NSObject*, %struct._message_ref_t*, ...)*, %struct.objc_selector* }
|
|
%struct.objc_selector = type opaque
|
|
@"\01l_objc_msgSend_fixup_alloc" = external global %struct._message_ref_t, align 16 ; <%struct._message_ref_t*> [#uses=2]
|
|
|
|
define %struct.NSArray* @newFetchedRowsForFetchPlan_MT(%struct.FetchPlanHeader* %fetchPlan, %struct.objc_selector* %selectionMethod, %struct.NSObject* %selectionParameter) ssp personality i32 (...)* @__gxx_personality_v0 {
|
|
; CHECK-LABEL: newFetchedRowsForFetchPlan_MT:
|
|
; CHECK: ## %bb.0: ## %entry
|
|
; CHECK-NEXT: pushq %rax
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: Ltmp0:
|
|
; CHECK-NEXT: movq l_objc_msgSend_fixup_alloc@{{.*}}(%rip), %rsi
|
|
; CHECK-NEXT: xorl %eax, %eax
|
|
; CHECK-NEXT: xorl %edi, %edi
|
|
; CHECK-NEXT: callq *%rax
|
|
; CHECK-NEXT: Ltmp1:
|
|
; CHECK-NEXT: ## %bb.1: ## %invcont
|
|
; CHECK-NEXT: Ltmp2:
|
|
; CHECK-NEXT: movq %rax, %rdi
|
|
; CHECK-NEXT: xorl %esi, %esi
|
|
; CHECK-NEXT: xorl %eax, %eax
|
|
; CHECK-NEXT: callq _objc_msgSend
|
|
; CHECK-NEXT: Ltmp3:
|
|
; CHECK-NEXT: ## %bb.2: ## %invcont26
|
|
; CHECK-NEXT: Ltmp4:
|
|
; CHECK-NEXT: movq l_objc_msgSend_fixup_alloc@{{.*}}(%rip), %rsi
|
|
; CHECK-NEXT: xorl %eax, %eax
|
|
; CHECK-NEXT: xorl %edi, %edi
|
|
; CHECK-NEXT: callq *%rax
|
|
; CHECK-NEXT: Ltmp5:
|
|
; CHECK-NEXT: ## %bb.3: ## %invcont27
|
|
; CHECK-NEXT: ud2
|
|
; CHECK-NEXT: LBB0_4: ## %lpad
|
|
; CHECK-NEXT: Ltmp6:
|
|
; CHECK-NEXT: ud2
|
|
; CHECK-NEXT: Lfunc_end0:
|
|
entry:
|
|
%0 = invoke %struct.NSObject* null(%struct.NSObject* null, %struct._message_ref_t* @"\01l_objc_msgSend_fixup_alloc")
|
|
to label %invcont unwind label %lpad ; <%struct.NSObject*> [#uses=1]
|
|
|
|
invcont: ; preds = %entry
|
|
%1 = invoke %struct.NSObject* (%struct.NSObject*, %struct.objc_selector*, ...) @objc_msgSend(%struct.NSObject* %0, %struct.objc_selector* null)
|
|
to label %invcont26 unwind label %lpad ; <%struct.NSObject*> [#uses=0]
|
|
|
|
invcont26: ; preds = %invcont
|
|
%2 = invoke %struct.NSObject* null(%struct.NSObject* null, %struct._message_ref_t* @"\01l_objc_msgSend_fixup_alloc")
|
|
to label %invcont27 unwind label %lpad ; <%struct.NSObject*> [#uses=0]
|
|
|
|
invcont27: ; preds = %invcont26
|
|
unreachable
|
|
|
|
lpad: ; preds = %invcont26, %invcont, %entry
|
|
%pool.1 = phi %struct.NSAutoreleasePool* [ null, %entry ], [ null, %invcont ], [ null, %invcont26 ] ; <%struct.NSAutoreleasePool*> [#uses=0]
|
|
%exn = landingpad {i8*, i32}
|
|
cleanup
|
|
unreachable
|
|
}
|
|
|
|
declare %struct.NSObject* @objc_msgSend(%struct.NSObject*, %struct.objc_selector*, ...)
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|