Simon Pilgrim | 49f9ba3 | 2017-09-05 13:40:29 +0000 | [diff] [blame] | 1 | ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py |
| 2 | ; RUN: llc < %s -mtriple=i686-apple-macosx10.13.0 | FileCheck %s --check-prefix=X86 |
| 3 | ; RUN: llc < %s -mtriple=x86_64-apple-macosx10.13.0 | FileCheck %s --check-prefix=X64 |
| 4 | |
| 5 | define void @thread_selfcounts() noimplicitfloat noredzone nounwind { |
| 6 | ; X86-LABEL: thread_selfcounts: |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame^] | 7 | ; X86: ## %bb.0: ## %entry |
Simon Pilgrim | 49f9ba3 | 2017-09-05 13:40:29 +0000 | [diff] [blame] | 8 | ; X86-NEXT: subl $44, %esp |
| 9 | ; X86-NEXT: movl {{[0-9]+}}(%esp), %eax |
| 10 | ; X86-NEXT: movl {{[0-9]+}}(%esp), %ecx |
| 11 | ; X86-NEXT: movl %ecx, {{[0-9]+}}(%esp) |
| 12 | ; X86-NEXT: movl %eax, (%esp) |
| 13 | ; X86-NEXT: movl {{[0-9]+}}(%esp), %eax |
| 14 | ; X86-NEXT: movl {{[0-9]+}}(%esp), %ecx |
| 15 | ; X86-NEXT: movl %ecx, {{[0-9]+}}(%esp) |
| 16 | ; X86-NEXT: movl %eax, {{[0-9]+}}(%esp) |
| 17 | ; X86-NEXT: ## -- End function |
| 18 | ; |
| 19 | ; X64-LABEL: thread_selfcounts: |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame^] | 20 | ; X64: ## %bb.0: ## %entry |
Simon Pilgrim | 49f9ba3 | 2017-09-05 13:40:29 +0000 | [diff] [blame] | 21 | ; X64-NEXT: subq $40, %rsp |
| 22 | ; X64-NEXT: movq {{[0-9]+}}(%rsp), %rax |
| 23 | ; X64-NEXT: movq {{[0-9]+}}(%rsp), %rcx |
| 24 | ; X64-NEXT: movq %rax, (%rsp) |
| 25 | ; X64-NEXT: movq %rcx, {{[0-9]+}}(%rsp) |
| 26 | ; X64-NEXT: ## -- End function |
| 27 | entry: |
| 28 | %counts = alloca [2 x i64], align 16 |
| 29 | %thread_counts = alloca [3 x i64], align 16 |
| 30 | %arraydecay = getelementptr inbounds [3 x i64], [3 x i64]* %thread_counts, i64 0, i64 0 |
| 31 | %0 = load i64, i64* %arraydecay, align 16 |
| 32 | %arrayidx3 = getelementptr inbounds [2 x i64], [2 x i64]* %counts, i64 0, i64 0 |
| 33 | store i64 %0, i64* %arrayidx3, align 16 |
| 34 | %arrayidx6 = getelementptr inbounds [3 x i64], [3 x i64]* %thread_counts, i64 0, i64 1 |
| 35 | %1 = load i64, i64* %arrayidx6, align 8 |
| 36 | %arrayidx10 = getelementptr inbounds [2 x i64], [2 x i64]* %counts, i64 0, i64 1 |
| 37 | store i64 %1, i64* %arrayidx10, align 8 |
| 38 | unreachable |
| 39 | } |
| 40 | |