mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 07:06:06 +00:00

The AOK_SizeDirective part from 5b37c181291210bedfbb7a6af5d51229f3652ef0 (2014-08) seems unneeded nowadays (the root cause has likely been fixed elsewhere). The part abuses that `call dword ptr foo` assembles the same way as `call foo` in Intel syntax, which is going to be fixed (changed) by D149579. The generated object files for CodeGen/ms-inline-asm{,-functions,-variables,-static-variable}.c and CodeGenCXX/ms-inline-asm-fields.cpp are unchanged (-mno-incremental-linker-compatible) with just this patch. When D149579 is subsequently applied, the FIXME part of `kptr` in CodeGen/ms-inline-asm-functions.c will be fixed. Differential Revision: https://reviews.llvm.org/D149695
65 lines
2.0 KiB
C
65 lines
2.0 KiB
C
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -fasm-blocks -emit-llvm -o - | opt -passes=strip -S | FileCheck %s
|
|
|
|
// Some test cases for MS inline asm support from Mozilla code base.
|
|
|
|
void invoke_copy_to_stack() {}
|
|
|
|
void invoke(void* that, unsigned methodIndex,
|
|
unsigned paramCount, void* params)
|
|
{
|
|
// CHECK: @invoke
|
|
// CHECK: %5 = alloca ptr, align 4
|
|
// CHECK: %6 = alloca i32, align 4
|
|
// CHECK: %7 = alloca i32, align 4
|
|
// CHECK: %8 = alloca ptr, align 4
|
|
// CHECK: store ptr %0, ptr %5, align 4
|
|
// CHECK: store i32 %1, ptr %6, align 4
|
|
// CHECK: store i32 %2, ptr %7, align 4
|
|
// CHECK: store ptr %3, ptr %8, align 4
|
|
// CHECK: call void asm sideeffect inteldialect
|
|
// CHECK-SAME: mov edx,$1
|
|
// CHECK-SAME: test edx,edx
|
|
// CHECK-SAME: jz {{[^_]*}}__MSASMLABEL_.${:uid}__noparams
|
|
// ^ Can't use {{.*}} here because the matching is greedy.
|
|
// CHECK-SAME: mov eax,edx
|
|
// CHECK-SAME: shl eax,$$3
|
|
// CHECK-SAME: sub esp,eax
|
|
// CHECK-SAME: mov ecx,esp
|
|
// CHECK-SAME: push $0
|
|
// CHECK-SAME: call ${2:P}
|
|
// CHECK-SAME: {{.*}}__MSASMLABEL_.${:uid}__noparams:
|
|
// CHECK-SAME: mov ecx,$3
|
|
// CHECK-SAME: push ecx
|
|
// CHECK-SAME: mov edx,[ecx]
|
|
// CHECK-SAME: mov eax,$4
|
|
// CHECK-SAME: call dword ptr[edx + eax * $$4]
|
|
// CHECK-SAME: mov esp,ebp
|
|
// CHECK-SAME: pop ebp
|
|
// CHECK-SAME: ret
|
|
// CHECK: "=*m,*m,*m,*m,*m,~{eax},~{ebp},~{ecx},~{edx},~{flags},~{esp},~{dirflag},~{fpsr},~{flags}"
|
|
// CHECK: (ptr elementtype(ptr) %8, ptr elementtype(i32) %7, ptr elementtype(void (...)) @invoke_copy_to_stack, ptr elementtype(ptr) %5, ptr elementtype(i32) %6)
|
|
// CHECK: ret void
|
|
__asm {
|
|
mov edx,paramCount
|
|
test edx,edx
|
|
jz noparams
|
|
mov eax,edx
|
|
shl eax,3
|
|
sub esp,eax
|
|
mov ecx,esp
|
|
push params
|
|
call invoke_copy_to_stack
|
|
noparams:
|
|
mov ecx,that
|
|
push ecx
|
|
mov edx,[ecx]
|
|
mov eax,methodIndex
|
|
call dword ptr[edx+eax*4]
|
|
mov esp,ebp
|
|
pop ebp
|
|
ret
|
|
}
|
|
}
|
|
|