1 // Test that (the same) debug info is emitted for an Objective-C++ 2 // module and a C++ precompiled header. 3 4 // REQUIRES: asserts, shell 5 6 // Modules: 7 // RUN: rm -rf %t 8 // RUN: %clang_cc1 -triple %itanium_abi_triple -x objective-c++ -std=c++11 -debug-info-kind=limited -fmodules -fmodule-format=obj -fimplicit-module-maps -DMODULES -fmodules-cache-path=%t %s -I %S/Inputs -I %t -emit-llvm -o %t.ll -mllvm -debug-only=pchcontainer &>%t-mod.ll 9 // RUN: cat %t-mod.ll | FileCheck %s 10 // RUN: cat %t-mod.ll | FileCheck --check-prefix=CHECK-NEG %s 11 12 // PCH: 13 // RUN: %clang_cc1 -triple %itanium_abi_triple -x c++ -std=c++11 -emit-pch -fmodule-format=obj -I %S/Inputs -o %t.pch %S/Inputs/DebugCXX.h -mllvm -debug-only=pchcontainer &>%t-pch.ll 14 // RUN: cat %t-pch.ll | FileCheck %s 15 // RUN: cat %t-pch.ll | FileCheck --check-prefix=CHECK-NEG %s 16 17 #ifdef MODULES 18 @import DebugCXX; 19 #endif 20 21 // CHECK: distinct !DICompileUnit(language: DW_LANG_{{.*}}C_plus_plus, 22 // CHECK-SAME: isOptimized: false, 23 // CHECK-SAME-NOT: splitDebugFilename: 24 // CHECK: dwoId: 25 26 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "Enum" 27 // CHECK-SAME: identifier: "_ZTSN8DebugCXX4EnumE") 28 // CHECK: !DINamespace(name: "DebugCXX" 29 30 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, 31 // CHECK-SAME-NOT: name: 32 33 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, 34 // CHECK-SAME-NOT: name: 35 36 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, 37 // CHECK-SAME-NOT: name: 38 // CHECK-SAME: identifier: "_ZTS11TypedefEnum") 39 40 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, 41 // CHECK-SAME-NOT: name: 42 // CHECK: !DIEnumerator(name: "e5", value: 5) 43 44 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Struct" 45 // CHECK-SAME: identifier: "_ZTSN8DebugCXX6StructE") 46 47 // CHECK: !DICompositeType(tag: DW_TAG_class_type, 48 // CHECK-SAME: name: "Template<int, DebugCXX::traits<int> >" 49 // CHECK-SAME: identifier: "_ZTSN8DebugCXX8TemplateIiNS_6traitsIiEEEE") 50 51 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "A<void>" 52 // CHECK-SAME: identifier: "_ZTSN8DebugCXX1AIJvEEE") 53 54 // CHECK: !DICompositeType(tag: DW_TAG_class_type, 55 // CHECK-SAME: name: "Template<float, DebugCXX::traits<float> >" 56 // CHECK-SAME: identifier: "_ZTSN8DebugCXX8TemplateIfNS_6traitsIfEEEE") 57 58 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "FwdVirtual" 59 // CHECK-SAME: elements: 60 // CHECK-SAME: identifier: "_ZTS10FwdVirtual") 61 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "_vptr$FwdVirtual" 62 63 // CHECK: !DICompositeType(tag: DW_TAG_union_type, 64 // CHECK-SAME-NOT: name: 65 // CHECK-SAME: identifier: "_ZTS12TypedefUnion") 66 67 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, 68 // CHECK-SAME-NOT: name: 69 // CHECK-SAME: identifier: "_ZTS13TypedefStruct") 70 71 // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "FloatInstatiation" 72 // no mangled name here yet. 73 74 // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "B", 75 // no mangled name here yet. 76 77 // CHECK: !DICompositeType(tag: DW_TAG_union_type, 78 // CHECK-SAME-NOT: name: 79 80 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, 81 // CHECK-SAME-NOT: name: 82 83 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, 84 // CHECK-SAME: name: "InAnonymousNamespace", 85 // CHECK-SAME: elements: !{{[0-9]+}}) 86 87 // CHECK-NEG-NOT: !DICompositeType(tag: DW_TAG_structure_type, name: "PureForwardDecl" 88