summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/dllexport-MI1.C
blob: 08e65ec960886ce8237ad3a49ab3428714affef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw* x86_64-*-mingw*} }
//  Test that non-virtual MI thunks are exported.


// To build the dll and client app:
// g++ -shared -o MI.dll dllexport-MI1.C
// g++ -o MItest.exe dllimport-MI1.C -L. MI.dll

#define BUILDING_MI_DLL
#include "dll-MI1.h"

MBase::~MBase(){}

int D1::vf() const { return D1_return; }

D2::D2() { }
D2::D2 (D2 const&) { }
int D2::vf() const { return D2_return; }

int MI1::vf() const { return D1::vf();}

// a dllexported object 
DLL_IMPEXP MI1 dllMI1;

// use default copy ctor 
DLL_IMPEXP MI1 dllMI1Copy =  dllMI1;

// Scan for export of some methods that are undefined in dllimportMI1.C,

// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZNK2D12vfEv" } }
// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZNK2D22vfEv" } }
// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZNK3MI12vfEv" } }

// and MI thunks,

// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZThn._NK3MI12vfEv" } }
// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZTv0_n.._NK2D12vfEv" } }

// and a vtable data variable.

// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZTV2D1\[\\\\\"\]*,data" } }

// an explicit copy ctor
// { dg-final { scan-assembler "-export:\[\\\\\"\]*_ZN2D2C2ERKS_" } }

// but not implicit copy ctor generated by compiler
// nor implicit dtor

// { dg-final { scan-assembler-not "-export:\[\\\\\"\]*_ZN2D1C2ERKS_" } }
// { dg-final { scan-assembler-not "-export:\[\\\\\"\]*_ZN2D1D2Ev" } }