2017-01-30 13:00:26 +08:00
|
|
|
RUN: rm -rf %t
|
2017-01-30 13:33:51 +08:00
|
|
|
REQUIRES: x86-registered-target
|
2017-01-30 13:00:26 +08:00
|
|
|
|
2017-04-13 04:58:33 +08:00
|
|
|
RUN: %clang_cc1 -triple=x86_64-linux-gnu -fmodules-codegen -fmodules-debuginfo -x c++ -fmodules -emit-module -fmodule-name=foo %S/Inputs/codegen/foo.modulemap -o %t/foo.pcm
|
2017-01-30 13:00:26 +08:00
|
|
|
|
2017-04-12 05:13:37 +08:00
|
|
|
RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -debug-info-kind=limited -o - %t/foo.pcm | FileCheck --check-prefix=FOO --check-prefix=BOTH %s
|
|
|
|
RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -debug-info-kind=limited -o - -fmodules -fmodule-file=%t/foo.pcm %S/Inputs/codegen/use.cpp | FileCheck --check-prefix=BOTH --check-prefix=USE %s
|
2017-01-30 13:00:26 +08:00
|
|
|
|
2017-04-12 04:46:34 +08:00
|
|
|
FOO: $_Z2f1PKcz = comdat any
|
|
|
|
FOO: $_ZN13implicit_dtorD1Ev = comdat any
|
|
|
|
USE: $_Z4instIiEvv = comdat any
|
|
|
|
FOO: $_ZN13implicit_dtorD2Ev = comdat any
|
|
|
|
FOO: define weak_odr void @_Z2f1PKcz(i8* %fmt, ...) #{{[0-9]+}} comdat
|
|
|
|
FOO: call void @llvm.va_start(i8* %{{[a-zA-Z0-9]*}})
|
|
|
|
|
|
|
|
Test that implicit special members are emitted into the FOO module if they're
|
|
|
|
ODR used there, otherwise emit them linkonce_odr as usual in the use.
|
|
|
|
|
|
|
|
FIXME: Proactively instantiate any valid implicit special members to emit them into the module object.
|
|
|
|
|
|
|
|
FOO: define weak_odr void @_ZN13implicit_dtorD1Ev
|
|
|
|
FOO: define weak_odr void @_Z4instIfEvv
|
|
|
|
FOO: define weak_odr void @_ZN13implicit_dtorD2Ev
|
|
|
|
|
|
|
|
USE: define linkonce_odr void @_ZN20uninst_implicit_dtorD1Ev
|
|
|
|
USE: define linkonce_odr void @_Z4instIiEvv
|
|
|
|
USE: define linkonce_odr void @_ZN20uninst_implicit_dtorD2Ev
|
2017-04-12 05:13:37 +08:00
|
|
|
|
|
|
|
Modular debug info puts the definition of a class defined in a module in that
|
|
|
|
module's object. Users of the module only get a declaration.
|
|
|
|
|
|
|
|
'distinct' is used for definition records (the flags field is empty/unspecified)
|
|
|
|
FOO: = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "implicit_dtor"
|
|
|
|
Declarations are non-distinct and include the 'DIFlagFwdDecl' flag.
|
|
|
|
USE: = !DICompositeType(tag: DW_TAG_structure_type, name: "implicit_dtor", {{.*}}, flags: DIFlagFwdDecl
|