1; RUN: llc < %s -filetype=obj | llvm-readobj - -codeview | FileCheck %s 2 3; C++ source to regenerate: 4; struct A { 5; virtual void f(); 6; virtual void g(); 7; int a = 0; 8; }; 9; struct B { 10; virtual void g(); 11; virtual void f(); 12; int b = 0; 13; }; 14; struct C : A, B { 15; virtual void g(); 16; virtual void f(); 17; int c = 0; 18; }; 19; struct D : C { 20; virtual void g(); 21; virtual void f(); 22; int d = 0; 23; }; 24; void h() { D d; } 25 26; CHECK: VFTableShape ([[vshape_1:0x[A-Z0-9]+]]) { 27; CHECK-NEXT: TypeLeafKind: LF_VTSHAPE (0xA) 28; CHECK-NEXT: VFEntryCount: 1 29; CHECK-NEXT: } 30 31; CHECK: Pointer ([[vptr_1:0x[A-Z0-9]+]]) { 32; CHECK-NEXT: TypeLeafKind: LF_POINTER (0x1002) 33; CHECK-NEXT: PointeeType: <vftable 1 methods> ([[vshape_1]]) 34 35; CHECK: FieldList ([[a_members:0x[A-Z0-9]+]]) { 36; CHECK-NEXT: TypeLeafKind: LF_FIELDLIST (0x1203) 37; CHECK-NEXT: VFPtr { 38; CHECK-NEXT: TypeLeafKind: LF_VFUNCTAB (0x1409) 39; CHECK-NEXT: Type: <vftable 1 methods>* ([[vptr_1]]) 40; CHECK-NEXT: } 41; CHECK-NEXT: DataMember { 42; CHECK-NEXT: TypeLeafKind: LF_MEMBER (0x150D) 43; CHECK-NEXT: AccessSpecifier: Public (0x3) 44; CHECK-NEXT: Type: int (0x74) 45; CHECK-NEXT: FieldOffset: 0x8 46; CHECK-NEXT: Name: a 47; CHECK-NEXT: } 48; CHECK-NEXT: OneMethod { 49; CHECK-NEXT: TypeLeafKind: LF_ONEMETHOD (0x1511) 50; CHECK-NEXT: AccessSpecifier: Public (0x3) 51; CHECK-NEXT: MethodKind: IntroducingVirtual (0x4) 52; CHECK-NEXT: Type: void A::() 53; CHECK-NEXT: VFTableOffset: 0x0 54; CHECK-NEXT: Name: g 55; CHECK-NEXT: } 56; CHECK-NEXT: } 57 58; CHECK: Struct ({{.*}}) { 59; CHECK-NEXT: TypeLeafKind: LF_STRUCTURE (0x1505) 60; CHECK-NEXT: MemberCount: 3 61; CHECK-NEXT: Properties [ (0x200) 62; CHECK-NEXT: HasUniqueName (0x200) 63; CHECK-NEXT: ] 64; CHECK-NEXT: FieldList: <field list> ([[a_members]]) 65; CHECK-NEXT: DerivedFrom: 0x0 66; CHECK-NEXT: VShape: <vftable 1 methods> ([[vshape_1]]) 67; CHECK-NEXT: SizeOf: 16 68; CHECK-NEXT: Name: A 69; CHECK-NEXT: LinkageName: .?AUA@@ 70; CHECK-NEXT: } 71 72; CHECK: VFTableShape ([[vshape_2:0x[A-Z0-9]+]]) { 73; CHECK-NEXT: TypeLeafKind: LF_VTSHAPE (0xA) 74; CHECK-NEXT: VFEntryCount: 2 75; CHECK-NEXT: } 76 77; CHECK: Pointer ([[vptr_2:0x[A-Z0-9]+]]) { 78; CHECK-NEXT: TypeLeafKind: LF_POINTER (0x1002) 79; CHECK-NEXT: PointeeType: <vftable 2 methods> ([[vshape_2]]) 80 81; CHECK: FieldList ([[b_members:0x[A-Z0-9]+]]) { 82; CHECK-NEXT: TypeLeafKind: LF_FIELDLIST (0x1203) 83; CHECK-NEXT: VFPtr { 84; CHECK-NEXT: TypeLeafKind: LF_VFUNCTAB (0x1409) 85; CHECK-NEXT: Type: <vftable 2 methods>* ([[vptr_2]]) 86; CHECK-NEXT: } 87 88; CHECK: Struct ({{.*}}) { 89; CHECK-NEXT: TypeLeafKind: LF_STRUCTURE (0x1505) 90; CHECK-NEXT: MemberCount: 4 91; CHECK-NEXT: Properties [ (0x200) 92; CHECK-NEXT: HasUniqueName (0x200) 93; CHECK-NEXT: ] 94; CHECK-NEXT: FieldList: <field list> ([[b_members]]) 95; CHECK-NEXT: DerivedFrom: 0x0 96; CHECK-NEXT: VShape: <vftable 2 methods> ([[vshape_2]]) 97; CHECK-NEXT: SizeOf: 16 98; CHECK-NEXT: Name: B 99; CHECK-NEXT: LinkageName: .?AUB@@ 100; CHECK-NEXT: } 101 102; C has a primary base, so it does not need a VFPtr member. 103 104; CHECK: FieldList ([[c_members:0x[A-Z0-9]+]]) { 105; CHECK-NEXT: TypeLeafKind: LF_FIELDLIST (0x1203) 106; CHECK-NEXT: BaseClass { 107; CHECK-NEXT: TypeLeafKind: LF_BCLASS (0x1400) 108; CHECK-NEXT: AccessSpecifier: Public (0x3) 109; CHECK-NEXT: BaseType: A 110; CHECK-NEXT: BaseOffset: 0x0 111; CHECK-NEXT: } 112; CHECK-NEXT: BaseClass { 113; CHECK-NEXT: TypeLeafKind: LF_BCLASS (0x1400) 114; CHECK-NEXT: AccessSpecifier: Public (0x3) 115; CHECK-NEXT: BaseType: B 116; CHECK-NEXT: BaseOffset: 0x10 117; CHECK-NEXT: } 118; CHECK-NOT: VFPtr 119 120; CHECK: Struct ({{.*}}) { 121; CHECK-NEXT: TypeLeafKind: LF_STRUCTURE (0x1505) 122; CHECK-NEXT: MemberCount: 5 123; CHECK-NEXT: Properties [ (0x200) 124; CHECK-NEXT: HasUniqueName (0x200) 125; CHECK-NEXT: ] 126; CHECK-NEXT: FieldList: <field list> ([[c_members]]) 127; CHECK-NEXT: DerivedFrom: 0x0 128; CHECK-NEXT: VShape: <vftable 1 methods> ([[vshape_1]]) 129; CHECK-NEXT: SizeOf: 40 130; CHECK-NEXT: Name: C 131; CHECK-NEXT: LinkageName: .?AUC@@ 132; CHECK-NEXT: } 133 134; CHECK: FieldList ([[d_members:0x[A-Z0-9]+]]) { 135; CHECK-NEXT: TypeLeafKind: LF_FIELDLIST (0x1203) 136; CHECK-NEXT: BaseClass { 137; CHECK-NEXT: TypeLeafKind: LF_BCLASS (0x1400) 138; CHECK-NEXT: AccessSpecifier: Public (0x3) 139; CHECK-NEXT: BaseType: C 140; CHECK-NEXT: BaseOffset: 0x0 141; CHECK-NEXT: } 142; CHECK-NOT: VFPtr 143 144; CHECK: Struct ({{.*}}) { 145; CHECK-NEXT: TypeLeafKind: LF_STRUCTURE (0x1505) 146; CHECK-NEXT: MemberCount: 4 147; CHECK-NEXT: Properties [ (0x200) 148; CHECK-NEXT: HasUniqueName (0x200) 149; CHECK-NEXT: ] 150; CHECK-NEXT: FieldList: <field list> ([[d_members]]) 151; CHECK-NEXT: DerivedFrom: 0x0 152; CHECK-NEXT: VShape: <vftable 1 methods> ([[vshape_1]]) 153; CHECK-NEXT: SizeOf: 48 154; CHECK-NEXT: Name: D 155; CHECK-NEXT: LinkageName: .?AUD@@ 156; CHECK-NEXT: } 157 158; ModuleID = 't.cpp' 159source_filename = "t.cpp" 160target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128" 161target triple = "x86_64-pc-windows-msvc19.0.24210" 162 163%rtti.CompleteObjectLocator = type { i32, i32, i32, i32, i32, i32 } 164%rtti.TypeDescriptor7 = type { i8**, i8*, [8 x i8] } 165%rtti.ClassHierarchyDescriptor = type { i32, i32, i32, i32 } 166%rtti.BaseClassDescriptor = type { i32, i32, i32, i32, i32, i32, i32 } 167%struct.A = type { i32 (...)**, i32 } 168%struct.B = type { i32 (...)**, i32 } 169%struct.C = type { %struct.A, %struct.B, i32 } 170%struct.D = type { %struct.C, i32 } 171 172$"\01??0A@@QEAA@XZ" = comdat any 173 174$"\01??0B@@QEAA@XZ" = comdat any 175 176$"\01??0C@@QEAA@XZ" = comdat any 177 178$"\01??0D@@QEAA@XZ" = comdat any 179 180$"\01?g@C@@WBA@EAAXXZ" = comdat any 181 182$"\01?g@D@@WBA@EAAXXZ" = comdat any 183 184$"\01??_7A@@6B@" = comdat largest 185 186$"\01??_R4A@@6B@" = comdat any 187 188$"\01??_R0?AUA@@@8" = comdat any 189 190$"\01??_R3A@@8" = comdat any 191 192$"\01??_R2A@@8" = comdat any 193 194$"\01??_R1A@?0A@EA@A@@8" = comdat any 195 196$"\01??_7B@@6B@" = comdat largest 197 198$"\01??_R4B@@6B@" = comdat any 199 200$"\01??_R0?AUB@@@8" = comdat any 201 202$"\01??_R3B@@8" = comdat any 203 204$"\01??_R2B@@8" = comdat any 205 206$"\01??_R1A@?0A@EA@B@@8" = comdat any 207 208$"\01??_7C@@6BA@@@" = comdat largest 209 210$"\01??_7C@@6BB@@@" = comdat largest 211 212$"\01??_R4C@@6BA@@@" = comdat any 213 214$"\01??_R0?AUC@@@8" = comdat any 215 216$"\01??_R3C@@8" = comdat any 217 218$"\01??_R2C@@8" = comdat any 219 220$"\01??_R1A@?0A@EA@C@@8" = comdat any 221 222$"\01??_R1BA@?0A@EA@B@@8" = comdat any 223 224$"\01??_R4C@@6BB@@@" = comdat any 225 226$"\01??_7D@@6BA@@@" = comdat largest 227 228$"\01??_7D@@6BB@@@" = comdat largest 229 230$"\01??_R4D@@6BA@@@" = comdat any 231 232$"\01??_R0?AUD@@@8" = comdat any 233 234$"\01??_R3D@@8" = comdat any 235 236$"\01??_R2D@@8" = comdat any 237 238$"\01??_R1A@?0A@EA@D@@8" = comdat any 239 240$"\01??_R4D@@6BB@@@" = comdat any 241 242@0 = private unnamed_addr constant [2 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4A@@6B@" to i8*), i8* bitcast (void (%struct.A*)* @"\01?g@A@@UEAAXXZ" to i8*)], comdat($"\01??_7A@@6B@") 243@"\01??_R4A@@6B@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 0, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUA@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4A@@6B@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 244@"\01??_7type_info@@6B@" = external constant i8* 245@"\01??_R0?AUA@@@8" = linkonce_odr global %rtti.TypeDescriptor7 { i8** @"\01??_7type_info@@6B@", i8* null, [8 x i8] c".?AUA@@\00" }, comdat 246@__ImageBase = external constant i8 247@"\01??_R3A@@8" = linkonce_odr constant %rtti.ClassHierarchyDescriptor { i32 0, i32 0, i32 1, i32 trunc (i64 sub nuw nsw (i64 ptrtoint ([2 x i32]* @"\01??_R2A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 248@"\01??_R2A@@8" = linkonce_odr constant [2 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0], comdat 249@"\01??_R1A@?0A@EA@A@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUA@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0, i32 0, i32 -1, i32 0, i32 64, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 250@1 = private unnamed_addr constant [3 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4B@@6B@" to i8*), i8* bitcast (void (%struct.B*)* @"\01?g@B@@UEAAXXZ" to i8*), i8* bitcast (void (%struct.B*)* @"\01?f@B@@UEAAXXZ" to i8*)], comdat($"\01??_7B@@6B@") 251@"\01??_R4B@@6B@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 0, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUB@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4B@@6B@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 252@"\01??_R0?AUB@@@8" = linkonce_odr global %rtti.TypeDescriptor7 { i8** @"\01??_7type_info@@6B@", i8* null, [8 x i8] c".?AUB@@\00" }, comdat 253@"\01??_R3B@@8" = linkonce_odr constant %rtti.ClassHierarchyDescriptor { i32 0, i32 0, i32 1, i32 trunc (i64 sub nuw nsw (i64 ptrtoint ([2 x i32]* @"\01??_R2B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 254@"\01??_R2B@@8" = linkonce_odr constant [2 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0], comdat 255@"\01??_R1A@?0A@EA@B@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUB@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0, i32 0, i32 -1, i32 0, i32 64, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 256@2 = private unnamed_addr constant [2 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4C@@6BA@@@" to i8*), i8* bitcast (void (%struct.C*)* @"\01?g@C@@UEAAXXZ" to i8*)], comdat($"\01??_7C@@6BA@@@") 257@3 = private unnamed_addr constant [3 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4C@@6BB@@@" to i8*), i8* bitcast (void (%struct.C*)* @"\01?g@C@@WBA@EAAXXZ" to i8*), i8* bitcast (void (i8*)* @"\01?f@C@@UEAAXXZ" to i8*)], comdat($"\01??_7C@@6BB@@@") 258@"\01??_R4C@@6BA@@@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 0, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUC@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4C@@6BA@@@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 259@"\01??_R0?AUC@@@8" = linkonce_odr global %rtti.TypeDescriptor7 { i8** @"\01??_7type_info@@6B@", i8* null, [8 x i8] c".?AUC@@\00" }, comdat 260@"\01??_R3C@@8" = linkonce_odr constant %rtti.ClassHierarchyDescriptor { i32 0, i32 1, i32 3, i32 trunc (i64 sub nuw nsw (i64 ptrtoint ([4 x i32]* @"\01??_R2C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 261@"\01??_R2C@@8" = linkonce_odr constant [4 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1BA@?0A@EA@B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0], comdat 262@"\01??_R1A@?0A@EA@C@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUC@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 2, i32 0, i32 -1, i32 0, i32 64, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 263@"\01??_R1BA@?0A@EA@B@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUB@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0, i32 16, i32 -1, i32 0, i32 64, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 264@"\01??_R4C@@6BB@@@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 16, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUC@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4C@@6BB@@@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 265@4 = private unnamed_addr constant [2 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4D@@6BA@@@" to i8*), i8* bitcast (void (%struct.D*)* @"\01?g@D@@UEAAXXZ" to i8*)], comdat($"\01??_7D@@6BA@@@") 266@5 = private unnamed_addr constant [3 x i8*] [i8* bitcast (%rtti.CompleteObjectLocator* @"\01??_R4D@@6BB@@@" to i8*), i8* bitcast (void (%struct.D*)* @"\01?g@D@@WBA@EAAXXZ" to i8*), i8* bitcast (void (i8*)* @"\01?f@D@@UEAAXXZ" to i8*)], comdat($"\01??_7D@@6BB@@@") 267@"\01??_R4D@@6BA@@@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 0, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUD@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3D@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4D@@6BA@@@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 268@"\01??_R0?AUD@@@8" = linkonce_odr global %rtti.TypeDescriptor7 { i8** @"\01??_7type_info@@6B@", i8* null, [8 x i8] c".?AUD@@\00" }, comdat 269@"\01??_R3D@@8" = linkonce_odr constant %rtti.ClassHierarchyDescriptor { i32 0, i32 1, i32 4, i32 trunc (i64 sub nuw nsw (i64 ptrtoint ([5 x i32]* @"\01??_R2D@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 270@"\01??_R2D@@8" = linkonce_odr constant [5 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@D@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@C@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1BA@?0A@EA@B@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0], comdat 271@"\01??_R1A@?0A@EA@D@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUD@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 3, i32 0, i32 -1, i32 0, i32 64, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3D@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 272@"\01??_R4D@@6BB@@@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 16, i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor7* @"\01??_R0?AUD@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3D@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.CompleteObjectLocator* @"\01??_R4D@@6BB@@@" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) }, comdat 273 274@"\01??_7A@@6B@" = unnamed_addr alias i8*, getelementptr inbounds ([2 x i8*], [2 x i8*]* @0, i32 0, i32 1) 275@"\01??_7B@@6B@" = unnamed_addr alias i8*, getelementptr inbounds ([3 x i8*], [3 x i8*]* @1, i32 0, i32 1) 276@"\01??_7C@@6BA@@@" = unnamed_addr alias i8*, getelementptr inbounds ([2 x i8*], [2 x i8*]* @2, i32 0, i32 1) 277@"\01??_7C@@6BB@@@" = unnamed_addr alias i8*, getelementptr inbounds ([3 x i8*], [3 x i8*]* @3, i32 0, i32 1) 278@"\01??_7D@@6BA@@@" = unnamed_addr alias i8*, getelementptr inbounds ([2 x i8*], [2 x i8*]* @4, i32 0, i32 1) 279@"\01??_7D@@6BB@@@" = unnamed_addr alias i8*, getelementptr inbounds ([3 x i8*], [3 x i8*]* @5, i32 0, i32 1) 280 281; Function Attrs: nounwind uwtable 282define void @"\01?h@@YAXXZ"() #0 !dbg !7 { 283entry: 284 %a = alloca %struct.A, align 8 285 %b = alloca %struct.B, align 8 286 %c = alloca %struct.C, align 8 287 %d = alloca %struct.D, align 8 288 call void @llvm.dbg.declare(metadata %struct.A* %a, metadata !10, metadata !22), !dbg !23 289 %call = call %struct.A* @"\01??0A@@QEAA@XZ"(%struct.A* %a) #5, !dbg !23 290 call void @llvm.dbg.declare(metadata %struct.B* %b, metadata !24, metadata !22), !dbg !36 291 %call1 = call %struct.B* @"\01??0B@@QEAA@XZ"(%struct.B* %b) #5, !dbg !36 292 call void @llvm.dbg.declare(metadata %struct.C* %c, metadata !37, metadata !22), !dbg !48 293 %call2 = call %struct.C* @"\01??0C@@QEAA@XZ"(%struct.C* %c) #5, !dbg !48 294 call void @llvm.dbg.declare(metadata %struct.D* %d, metadata !49, metadata !22), !dbg !59 295 %call3 = call %struct.D* @"\01??0D@@QEAA@XZ"(%struct.D* %d) #5, !dbg !59 296 ret void, !dbg !60 297} 298 299; Function Attrs: nounwind readnone 300declare void @llvm.dbg.declare(metadata, metadata, metadata) #1 301 302; Function Attrs: inlinehint nounwind uwtable 303define linkonce_odr %struct.A* @"\01??0A@@QEAA@XZ"(%struct.A* returned %this) unnamed_addr #2 comdat align 2 !dbg !61 { 304entry: 305 %this.addr = alloca %struct.A*, align 8 306 store %struct.A* %this, %struct.A** %this.addr, align 8 307 call void @llvm.dbg.declare(metadata %struct.A** %this.addr, metadata !63, metadata !22), !dbg !65 308 %this1 = load %struct.A*, %struct.A** %this.addr, align 8 309 %0 = bitcast %struct.A* %this1 to i32 (...)***, !dbg !66 310 store i32 (...)** bitcast (i8** @"\01??_7A@@6B@" to i32 (...)**), i32 (...)*** %0, align 8, !dbg !66 311 %a = getelementptr inbounds %struct.A, %struct.A* %this1, i32 0, i32 1, !dbg !67 312 store i32 0, i32* %a, align 8, !dbg !67 313 ret %struct.A* %this1, !dbg !66 314} 315 316; Function Attrs: inlinehint nounwind uwtable 317define linkonce_odr %struct.B* @"\01??0B@@QEAA@XZ"(%struct.B* returned %this) unnamed_addr #2 comdat align 2 !dbg !68 { 318entry: 319 %this.addr = alloca %struct.B*, align 8 320 store %struct.B* %this, %struct.B** %this.addr, align 8 321 call void @llvm.dbg.declare(metadata %struct.B** %this.addr, metadata !70, metadata !22), !dbg !72 322 %this1 = load %struct.B*, %struct.B** %this.addr, align 8 323 %0 = bitcast %struct.B* %this1 to i32 (...)***, !dbg !73 324 store i32 (...)** bitcast (i8** @"\01??_7B@@6B@" to i32 (...)**), i32 (...)*** %0, align 8, !dbg !73 325 %b = getelementptr inbounds %struct.B, %struct.B* %this1, i32 0, i32 1, !dbg !74 326 store i32 0, i32* %b, align 8, !dbg !74 327 ret %struct.B* %this1, !dbg !73 328} 329 330; Function Attrs: inlinehint nounwind uwtable 331define linkonce_odr %struct.C* @"\01??0C@@QEAA@XZ"(%struct.C* returned %this) unnamed_addr #2 comdat align 2 !dbg !75 { 332entry: 333 %this.addr = alloca %struct.C*, align 8 334 store %struct.C* %this, %struct.C** %this.addr, align 8 335 call void @llvm.dbg.declare(metadata %struct.C** %this.addr, metadata !77, metadata !22), !dbg !79 336 %this1 = load %struct.C*, %struct.C** %this.addr, align 8 337 %0 = bitcast %struct.C* %this1 to %struct.A*, !dbg !80 338 %call = call %struct.A* @"\01??0A@@QEAA@XZ"(%struct.A* %0) #5, !dbg !80 339 %1 = bitcast %struct.C* %this1 to i8*, !dbg !80 340 %2 = getelementptr inbounds i8, i8* %1, i64 16, !dbg !80 341 %3 = bitcast i8* %2 to %struct.B*, !dbg !80 342 %call2 = call %struct.B* @"\01??0B@@QEAA@XZ"(%struct.B* %3) #5, !dbg !80 343 %4 = bitcast %struct.C* %this1 to i32 (...)***, !dbg !80 344 store i32 (...)** bitcast (i8** @"\01??_7C@@6BA@@@" to i32 (...)**), i32 (...)*** %4, align 8, !dbg !80 345 %5 = bitcast %struct.C* %this1 to i8*, !dbg !80 346 %add.ptr = getelementptr inbounds i8, i8* %5, i64 16, !dbg !80 347 %6 = bitcast i8* %add.ptr to i32 (...)***, !dbg !80 348 store i32 (...)** bitcast (i8** @"\01??_7C@@6BB@@@" to i32 (...)**), i32 (...)*** %6, align 8, !dbg !80 349 %c = getelementptr inbounds %struct.C, %struct.C* %this1, i32 0, i32 2, !dbg !81 350 store i32 0, i32* %c, align 8, !dbg !81 351 ret %struct.C* %this1, !dbg !80 352} 353 354; Function Attrs: inlinehint nounwind uwtable 355define linkonce_odr %struct.D* @"\01??0D@@QEAA@XZ"(%struct.D* returned %this) unnamed_addr #2 comdat align 2 !dbg !82 { 356entry: 357 %this.addr = alloca %struct.D*, align 8 358 store %struct.D* %this, %struct.D** %this.addr, align 8 359 call void @llvm.dbg.declare(metadata %struct.D** %this.addr, metadata !84, metadata !22), !dbg !86 360 %this1 = load %struct.D*, %struct.D** %this.addr, align 8 361 %0 = bitcast %struct.D* %this1 to %struct.C*, !dbg !87 362 %call = call %struct.C* @"\01??0C@@QEAA@XZ"(%struct.C* %0) #5, !dbg !87 363 %1 = bitcast %struct.D* %this1 to i32 (...)***, !dbg !87 364 store i32 (...)** bitcast (i8** @"\01??_7D@@6BA@@@" to i32 (...)**), i32 (...)*** %1, align 8, !dbg !87 365 %2 = bitcast %struct.D* %this1 to i8*, !dbg !87 366 %add.ptr = getelementptr inbounds i8, i8* %2, i64 16, !dbg !87 367 %3 = bitcast i8* %add.ptr to i32 (...)***, !dbg !87 368 store i32 (...)** bitcast (i8** @"\01??_7D@@6BB@@@" to i32 (...)**), i32 (...)*** %3, align 8, !dbg !87 369 %d = getelementptr inbounds %struct.D, %struct.D* %this1, i32 0, i32 1, !dbg !88 370 store i32 0, i32* %d, align 8, !dbg !88 371 ret %struct.D* %this1, !dbg !87 372} 373 374declare void @"\01?g@A@@UEAAXXZ"(%struct.A*) unnamed_addr #3 375 376declare void @"\01?g@B@@UEAAXXZ"(%struct.B*) unnamed_addr #3 377 378declare void @"\01?f@B@@UEAAXXZ"(%struct.B*) unnamed_addr #3 379 380declare void @"\01?g@C@@UEAAXXZ"(%struct.C*) unnamed_addr #3 381 382; Function Attrs: uwtable 383define linkonce_odr void @"\01?g@C@@WBA@EAAXXZ"(%struct.C* %this) unnamed_addr #4 comdat align 2 !dbg !89 { 384entry: 385 %this.addr = alloca %struct.C*, align 8 386 store %struct.C* %this, %struct.C** %this.addr, align 8 387 call void @llvm.dbg.declare(metadata %struct.C** %this.addr, metadata !91, metadata !22), !dbg !92 388 %this1 = load %struct.C*, %struct.C** %this.addr, align 8, !dbg !93 389 %0 = bitcast %struct.C* %this1 to i8*, !dbg !93 390 %1 = getelementptr i8, i8* %0, i32 -16, !dbg !93 391 %2 = bitcast i8* %1 to %struct.C*, !dbg !93 392 tail call void @"\01?g@C@@UEAAXXZ"(%struct.C* %2), !dbg !93 393 ret void, !dbg !93 394} 395 396declare void @"\01?f@C@@UEAAXXZ"(i8*) unnamed_addr #3 397 398declare void @"\01?g@D@@UEAAXXZ"(%struct.D*) unnamed_addr #3 399 400; Function Attrs: uwtable 401define linkonce_odr void @"\01?g@D@@WBA@EAAXXZ"(%struct.D* %this) unnamed_addr #4 comdat align 2 !dbg !94 { 402entry: 403 %this.addr = alloca %struct.D*, align 8 404 store %struct.D* %this, %struct.D** %this.addr, align 8 405 call void @llvm.dbg.declare(metadata %struct.D** %this.addr, metadata !95, metadata !22), !dbg !96 406 %this1 = load %struct.D*, %struct.D** %this.addr, align 8, !dbg !97 407 %0 = bitcast %struct.D* %this1 to i8*, !dbg !97 408 %1 = getelementptr i8, i8* %0, i32 -16, !dbg !97 409 %2 = bitcast i8* %1 to %struct.D*, !dbg !97 410 tail call void @"\01?g@D@@UEAAXXZ"(%struct.D* %2), !dbg !97 411 ret void, !dbg !97 412} 413 414declare void @"\01?f@D@@UEAAXXZ"(i8*) unnamed_addr #3 415 416attributes #0 = { nounwind uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } 417attributes #1 = { nounwind readnone } 418attributes #2 = { inlinehint nounwind uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } 419attributes #3 = { "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } 420attributes #4 = { uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } 421attributes #5 = { nounwind } 422 423!llvm.dbg.cu = !{!0} 424!llvm.module.flags = !{!3, !4, !5} 425!llvm.ident = !{!6} 426 427!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 4.0.0 ", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2) 428!1 = !DIFile(filename: "t.cpp", directory: "C:\5Csrc\5Cllvm\5Cbuild") 429!2 = !{} 430!3 = !{i32 2, !"CodeView", i32 1} 431!4 = !{i32 2, !"Debug Info Version", i32 3} 432!5 = !{i32 1, !"PIC Level", i32 2} 433!6 = !{!"clang version 4.0.0 "} 434!7 = distinct !DISubprogram(name: "h", linkageName: "\01?h@@YAXXZ", scope: !1, file: !1, line: 20, type: !8, isLocal: false, isDefinition: true, scopeLine: 20, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2) 435!8 = !DISubroutineType(types: !9) 436!9 = !{null} 437!10 = !DILocalVariable(name: "a", scope: !7, file: !1, line: 22, type: !11) 438!11 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "A", file: !1, line: 1, size: 128, align: 64, elements: !12, vtableHolder: !11, identifier: ".?AUA@@") 439!12 = !{!13, !14, !16, !18} 440!13 = !DIDerivedType(tag: DW_TAG_pointer_type, name: "__vtbl_ptr_type", baseType: null, size: 64) 441!14 = !DIDerivedType(tag: DW_TAG_member, name: "_vptr$A", scope: !1, file: !1, baseType: !15, size: 64, flags: DIFlagArtificial) 442!15 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !13, size: 64) 443!16 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !11, file: !1, line: 3, baseType: !17, size: 32, align: 32, offset: 64) 444!17 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 445!18 = !DISubprogram(name: "g", linkageName: "\01?g@A@@UEAAXXZ", scope: !11, file: !1, line: 2, type: !19, isLocal: false, isDefinition: false, scopeLine: 2, containingType: !11, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0, flags: DIFlagPrototyped | DIFlagIntroducedVirtual, isOptimized: false) 446!19 = !DISubroutineType(types: !20) 447!20 = !{null, !21} 448!21 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer) 449!22 = !DIExpression() 450!23 = !DILocation(line: 22, column: 5, scope: !7) 451!24 = !DILocalVariable(name: "b", scope: !7, file: !1, line: 23, type: !25) 452!25 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "B", file: !1, line: 5, size: 128, align: 64, elements: !26, vtableHolder: !25, identifier: ".?AUB@@") 453!26 = !{!27, !28, !30, !31, !35} 454!27 = !DIDerivedType(tag: DW_TAG_pointer_type, name: "__vtbl_ptr_type", baseType: null, size: 128) 455!28 = !DIDerivedType(tag: DW_TAG_member, name: "_vptr$B", scope: !1, file: !1, baseType: !29, size: 64, flags: DIFlagArtificial) 456!29 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !27, size: 64) 457!30 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !25, file: !1, line: 8, baseType: !17, size: 32, align: 32, offset: 64) 458!31 = !DISubprogram(name: "g", linkageName: "\01?g@B@@UEAAXXZ", scope: !25, file: !1, line: 6, type: !32, isLocal: false, isDefinition: false, scopeLine: 6, containingType: !25, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0, flags: DIFlagPrototyped | DIFlagIntroducedVirtual, isOptimized: false) 459!32 = !DISubroutineType(types: !33) 460!33 = !{null, !34} 461!34 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !25, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer) 462!35 = !DISubprogram(name: "f", linkageName: "\01?f@B@@UEAAXXZ", scope: !25, file: !1, line: 7, type: !32, isLocal: false, isDefinition: false, scopeLine: 7, containingType: !25, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 1, flags: DIFlagPrototyped | DIFlagIntroducedVirtual, isOptimized: false) 463!36 = !DILocation(line: 23, column: 5, scope: !7) 464!37 = !DILocalVariable(name: "c", scope: !7, file: !1, line: 24, type: !38) 465!38 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "C", file: !1, line: 10, size: 320, align: 64, elements: !39, vtableHolder: !11, identifier: ".?AUC@@") 466!39 = !{!40, !41, !13, !42, !43, !47} 467!40 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !38, baseType: !11) 468!41 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !38, baseType: !25, offset: 128) 469!42 = !DIDerivedType(tag: DW_TAG_member, name: "c", scope: !38, file: !1, line: 13, baseType: !17, size: 32, align: 32, offset: 256) 470!43 = !DISubprogram(name: "g", linkageName: "\01?g@C@@UEAAXXZ", scope: !38, file: !1, line: 11, type: !44, isLocal: false, isDefinition: false, scopeLine: 11, containingType: !38, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0, flags: DIFlagPrototyped, isOptimized: false) 471!44 = !DISubroutineType(types: !45) 472!45 = !{null, !46} 473!46 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !38, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer) 474!47 = !DISubprogram(name: "f", linkageName: "\01?f@C@@UEAAXXZ", scope: !38, file: !1, line: 12, type: !44, isLocal: false, isDefinition: false, scopeLine: 12, containingType: !38, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 1, thisAdjustment: 16, flags: DIFlagPrototyped, isOptimized: false) 475!48 = !DILocation(line: 24, column: 5, scope: !7) 476!49 = !DILocalVariable(name: "d", scope: !7, file: !1, line: 25, type: !50) 477!50 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "D", file: !1, line: 15, size: 384, align: 64, elements: !51, vtableHolder: !11, identifier: ".?AUD@@") 478!51 = !{!52, !13, !53, !54, !58} 479!52 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !50, baseType: !38) 480!53 = !DIDerivedType(tag: DW_TAG_member, name: "d", scope: !50, file: !1, line: 18, baseType: !17, size: 32, align: 32, offset: 320) 481!54 = !DISubprogram(name: "g", linkageName: "\01?g@D@@UEAAXXZ", scope: !50, file: !1, line: 16, type: !55, isLocal: false, isDefinition: false, scopeLine: 16, containingType: !50, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0, flags: DIFlagPrototyped, isOptimized: false) 482!55 = !DISubroutineType(types: !56) 483!56 = !{null, !57} 484!57 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !50, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer) 485!58 = !DISubprogram(name: "f", linkageName: "\01?f@D@@UEAAXXZ", scope: !50, file: !1, line: 17, type: !55, isLocal: false, isDefinition: false, scopeLine: 17, containingType: !50, virtuality: DW_VIRTUALITY_virtual, virtualIndex: 1, thisAdjustment: 16, flags: DIFlagPrototyped, isOptimized: false) 486!59 = !DILocation(line: 25, column: 5, scope: !7) 487!60 = !DILocation(line: 26, column: 1, scope: !7) 488!61 = distinct !DISubprogram(name: "A", linkageName: "\01??0A@@QEAA@XZ", scope: !11, file: !1, line: 1, type: !19, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit: !0, declaration: !62, retainedNodes: !2) 489!62 = !DISubprogram(name: "A", scope: !11, type: !19, isLocal: false, isDefinition: false, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false) 490!63 = !DILocalVariable(name: "this", arg: 1, scope: !61, type: !64, flags: DIFlagArtificial | DIFlagObjectPointer) 491!64 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64, align: 64) 492!65 = !DILocation(line: 0, scope: !61) 493!66 = !DILocation(line: 1, column: 8, scope: !61) 494!67 = !DILocation(line: 3, column: 7, scope: !61) 495!68 = distinct !DISubprogram(name: "B", linkageName: "\01??0B@@QEAA@XZ", scope: !25, file: !1, line: 5, type: !32, isLocal: false, isDefinition: true, scopeLine: 5, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit: !0, declaration: !69, retainedNodes: !2) 496!69 = !DISubprogram(name: "B", scope: !25, type: !32, isLocal: false, isDefinition: false, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false) 497!70 = !DILocalVariable(name: "this", arg: 1, scope: !68, type: !71, flags: DIFlagArtificial | DIFlagObjectPointer) 498!71 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !25, size: 64, align: 64) 499!72 = !DILocation(line: 0, scope: !68) 500!73 = !DILocation(line: 5, column: 8, scope: !68) 501!74 = !DILocation(line: 8, column: 7, scope: !68) 502!75 = distinct !DISubprogram(name: "C", linkageName: "\01??0C@@QEAA@XZ", scope: !38, file: !1, line: 10, type: !44, isLocal: false, isDefinition: true, scopeLine: 10, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit: !0, declaration: !76, retainedNodes: !2) 503!76 = !DISubprogram(name: "C", scope: !38, type: !44, isLocal: false, isDefinition: false, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false) 504!77 = !DILocalVariable(name: "this", arg: 1, scope: !75, type: !78, flags: DIFlagArtificial | DIFlagObjectPointer) 505!78 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !38, size: 64, align: 64) 506!79 = !DILocation(line: 0, scope: !75) 507!80 = !DILocation(line: 10, column: 8, scope: !75) 508!81 = !DILocation(line: 13, column: 7, scope: !75) 509!82 = distinct !DISubprogram(name: "D", linkageName: "\01??0D@@QEAA@XZ", scope: !50, file: !1, line: 15, type: !55, isLocal: false, isDefinition: true, scopeLine: 15, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit: !0, declaration: !83, retainedNodes: !2) 510!83 = !DISubprogram(name: "D", scope: !50, type: !55, isLocal: false, isDefinition: false, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false) 511!84 = !DILocalVariable(name: "this", arg: 1, scope: !82, type: !85, flags: DIFlagArtificial | DIFlagObjectPointer) 512!85 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !50, size: 64, align: 64) 513!86 = !DILocation(line: 0, scope: !82) 514!87 = !DILocation(line: 15, column: 8, scope: !82) 515!88 = !DILocation(line: 18, column: 7, scope: !82) 516!89 = distinct !DISubprogram(linkageName: "\01?g@C@@WBA@EAAXXZ", scope: !1, file: !1, line: 11, type: !90, isLocal: false, isDefinition: true, scopeLine: 11, flags: DIFlagArtificial, isOptimized: false, unit: !0, retainedNodes: !2) 517!90 = !DISubroutineType(types: !2) 518!91 = !DILocalVariable(name: "this", arg: 1, scope: !89, type: !78, flags: DIFlagArtificial | DIFlagObjectPointer) 519!92 = !DILocation(line: 0, scope: !89) 520!93 = !DILocation(line: 11, column: 16, scope: !89) 521!94 = distinct !DISubprogram(linkageName: "\01?g@D@@WBA@EAAXXZ", scope: !1, file: !1, line: 16, type: !90, isLocal: false, isDefinition: true, scopeLine: 16, flags: DIFlagArtificial, isOptimized: false, unit: !0, retainedNodes: !2) 522!95 = !DILocalVariable(name: "this", arg: 1, scope: !94, type: !85, flags: DIFlagArtificial | DIFlagObjectPointer) 523!96 = !DILocation(line: 0, scope: !94) 524!97 = !DILocation(line: 16, column: 16, scope: !94) 525