28 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse4.2 | FileCheck %s --check-prefix=X863; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+sse4.2 | FileCheck %s --check-prefix=X644 5; bitcast a i64 to v2i326 7define void @convert(ptr %dst.addr, i64 %src) nounwind {8; X86-LABEL: convert:9; X86: ## %bb.0: ## %entry10; X86-NEXT: movl {{[0-9]+}}(%esp), %eax11; X86-NEXT: movsd {{.*#+}} xmm0 = mem[0],zero12; X86-NEXT: xorps {{\.?LCPI[0-9]+_[0-9]+}}, %xmm013; X86-NEXT: movlps %xmm0, (%eax)14; X86-NEXT: retl15;16; X64-LABEL: convert:17; X64: ## %bb.0: ## %entry18; X64-NEXT: movabsq $140733193388287, %rax ## imm = 0x7FFF000000FF19; X64-NEXT: xorq %rsi, %rax20; X64-NEXT: movq %rax, (%rdi)21; X64-NEXT: retq22entry:23 %conv = bitcast i64 %src to <2 x i32>24 %xor = xor <2 x i32> %conv, < i32 255, i32 32767 >25 store <2 x i32> %xor, ptr %dst.addr26 ret void27}28