[llvm] r321125 - Revert "Fix faulty assertion in debug info"

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 2 11:00:43 PST 2018


On Tue, Jan 2, 2018 at 10:58 AM Adrian McCarthy <amccarth at google.com> wrote:

> I did actually type all that information in along with notes about the
> problem, but git doesn't play nice with some text editors(*), so the info
> was lost.
>

Ah, fun - thanks for the explanation!


> I noted the loss immediately after the commit was submitted and provided
> it in a comment on the IRC channel as well as in a follow-up email to
> llvm-commits, but I don't see that message now, so I'll have to figure out
> what happened to that as well.
>

*nod* would be good to understand what happened. Might be worth working
around by setting notepad (or something similarly naive) as the git editor
in the interim.


> I'll try the git-svnrevert utility next time.
>

*nod* it'd at least get the revision number in there - I don't think it
launches the editor, I usually "git commit --amend" after it to add the
extra context, buildbot failure links, etc.

- Dave


>
> (*) Git revert launches the text editor.  The new editor process sees that
> I already have another instance of the editor running, and directs that
> instance to open the file in a new tab, and then exits.  Git sees that the
> process it launched exited, and uses the empty file as the commit message.
> In the mean time, I provide the relevant information in the editor, save
> the file, and close the editor.  There was no feedback that the info was
> lost--unlike with regular commits, which will at least complain that no
> commit message was entered.
>
> On Wed, Dec 27, 2017 at 2:10 PM, David Blaikie <dblaikie at gmail.com> wrote:
>
>>
>>
>> On Tue, Dec 19, 2017 at 3:35 PM Adrian McCarthy via llvm-commits <
>> llvm-commits at lists.llvm.org> wrote:
>>
>>> Author: amccarth
>>> Date: Tue Dec 19 15:34:37 2017
>>> New Revision: 321125
>>>
>>> URL: http://llvm.org/viewvc/llvm-project?rev=321125&view=rev
>>> Log:
>>> Revert "Fix faulty assertion in debug info"
>>>
>>> This reverts commit e32def3f7ebe1136b7038336eff56a415a962bf2.
>>>
>>
>> Please include an explanation/motivation for the revert, and the svn
>> revision number rather than the git hash. (there's a utility in
>> llvm/utils/git-svn/git-svnrevert for git reverting by hash, while still
>> making an svn revision number in the commit message)
>>
>>
>>>
>>> Removed:
>>>     llvm/trunk/test/DebugInfo/void-typedef.ll
>>> Modified:
>>>     llvm/trunk/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
>>>     llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
>>>
>>> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
>>> URL:
>>> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp?rev=321125&r1=321124&r2=321125&view=diff
>>>
>>> ==============================================================================
>>> --- llvm/trunk/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp (original)
>>> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp Tue Dec 19
>>> 15:34:37 2017
>>> @@ -163,8 +163,7 @@ uint64_t DebugHandlerBase::getBaseTypeSi
>>>
>>>    DIType *BaseType = DDTy->getBaseType().resolve();
>>>
>>> -  if (!BaseType)
>>> -    return 0;
>>> +  assert(BaseType && "Unexpected invalid base type");
>>>
>>>    // If this is a derived type, go ahead and get the base type, unless
>>> it's a
>>>    // reference then it's just the size of the field. Pointer types have
>>> no need
>>>
>>> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
>>> URL:
>>> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp?rev=321125&r1=321124&r2=321125&view=diff
>>>
>>> ==============================================================================
>>> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp (original)
>>> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfUnit.cpp Tue Dec 19 15:34:37
>>> 2017
>>> @@ -1391,8 +1391,7 @@ void DwarfUnit::constructMemberDIE(DIE &
>>>    if (!Name.empty())
>>>      addString(MemberDie, dwarf::DW_AT_name, Name);
>>>
>>> -  if (DIType *Resolved = resolve(DT->getBaseType()))
>>> -    addType(MemberDie, Resolved);
>>> +  addType(MemberDie, resolve(DT->getBaseType()));
>>>
>>>    addSourceLine(MemberDie, DT);
>>>
>>>
>>> Removed: llvm/trunk/test/DebugInfo/void-typedef.ll
>>> URL:
>>> http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/void-typedef.ll?rev=321124&view=auto
>>>
>>> ==============================================================================
>>> --- llvm/trunk/test/DebugInfo/void-typedef.ll (original)
>>> +++ llvm/trunk/test/DebugInfo/void-typedef.ll (removed)
>>> @@ -1,88 +0,0 @@
>>> -; Choosing CodeView generates debug metadata for class-scope typedefs
>>> that
>>> -; Dwarf would normally omit.  Choosing both CodeView and Dwarf triggered
>>> -; assertion failures and crashes because the Dwarf handler wasn't
>>> prepared for
>>> -; those records (in particular, ones with the void type represented by a
>>> -; null pointer).
>>> -;
>>> -; This test was generated with:
>>> -;    clang++ -cc1 -emit-llvm -debug-info-kind=limited -dwarf-version=4
>>> -gcodeview -x c++
>>> -; on the following source code:
>>> -;
>>> -;   class A {
>>> -;     typedef void _Nodeptr;
>>> -;   };
>>> -;   class B {
>>> -;     A FailedTestsCache;
>>> -;     bool m_fn1();
>>> -;   };
>>> -;   bool B::m_fn1() {}
>>> -;
>>> -; CodeView generates a DIDerivedType for the _Nodeptr typedef.
>>> -;
>>> -; RUN: llc %s -o - 2>&1 | FileCheck %s
>>> -; CHECK-NOT: Assertion failed
>>> -
>>> -; ModuleID = 'bug.cpp'
>>> -source_filename = "bug.cpp"
>>> -target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
>>> -target triple = "i686-pc-windows-msvc"
>>> -
>>> -%class.B = type { %class.A }
>>> -%class.A = type { i8 }
>>> -
>>> -; Function Attrs: noinline nounwind optnone
>>> -define x86_thiscallcc zeroext i1 @"\01?m_fn1 at B@@AAE_NXZ"(%class.B*
>>> %this) #0 align 2 !dbg !9 {
>>> -entry:
>>> -  %retval = alloca i1, align 1
>>> -  %this.addr = alloca %class.B*, align 4
>>> -  store %class.B* %this, %class.B** %this.addr, align 4
>>> -  call void @llvm.dbg.declare(metadata %class.B** %this.addr, metadata
>>> !22, metadata !DIExpression()), !dbg !24
>>> -  %this1 = load %class.B*, %class.B** %this.addr, align 4
>>> -  call void @llvm.trap(), !dbg !25
>>> -  unreachable, !dbg !25
>>> -
>>> -return:                                           ; No predecessors!
>>> -  %0 = load i1, i1* %retval, align 1, !dbg !25
>>> -  ret i1 %0, !dbg !25
>>> -}
>>> -
>>> -; Function Attrs: nounwind readnone speculatable
>>> -declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
>>> -
>>> -; Function Attrs: noreturn nounwind
>>> -declare void @llvm.trap() #2
>>> -
>>> -attributes #0 = { noinline nounwind optnone
>>> "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-features"="+x87"
>>> "unsafe-fp-math"="false" "use-soft-float"="false" }
>>> -attributes #1 = { nounwind readnone speculatable }
>>> -attributes #2 = { noreturn nounwind }
>>> -
>>> -!llvm.dbg.cu = !{!0}
>>> -!llvm.module.flags = !{!3, !4, !5, !6, !7}
>>> -!llvm.ident = !{!8}
>>> -
>>> -!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1,
>>> producer: "clang version 6.0.0 ", isOptimized: false, runtimeVersion: 0,
>>> emissionKind: FullDebug, enums: !2)
>>> -!1 = !DIFile(filename: "<stdin>", directory: "D:\5Csrc\5Cbug",
>>> checksumkind: CSK_MD5, checksum: "2216f11c5ddda8c48a6f92a6079ad4b6")
>>> -!2 = !{}
>>> -!3 = !{i32 1, !"NumRegisterParameters", i32 0}
>>> -!4 = !{i32 2, !"Dwarf Version", i32 4}
>>> -!5 = !{i32 2, !"CodeView", i32 1}
>>> -!6 = !{i32 2, !"Debug Info Version", i32 3}
>>> -!7 = !{i32 1, !"wchar_size", i32 2}
>>> -!8 = !{!"clang version 6.0.0 "}
>>> -!9 = distinct !DISubprogram(name: "m_fn1", linkageName: "\01?m_fn1 at B@@AAE_NXZ",
>>> scope: !11, file: !10, line: 8, type: !18, isLocal: false, isDefinition:
>>> true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: false, unit: !0,
>>> declaration: !17, variables: !2)
>>> -!10 = !DIFile(filename: "bug.cpp", directory: "D:\5Csrc\5Cbug",
>>> checksumkind: CSK_MD5, checksum: "2216f11c5ddda8c48a6f92a6079ad4b6")
>>> -!11 = distinct !DICompositeType(tag: DW_TAG_class_type, name: "B",
>>> file: !10, line: 4, size: 8, elements: !12, identifier: ".?AVB@@")
>>> -!12 = !{!13, !17}
>>> -!13 = !DIDerivedType(tag: DW_TAG_member, name: "FailedTestsCache",
>>> scope: !11, file: !10, line: 5, baseType: !14, size: 8)
>>> -!14 = distinct !DICompositeType(tag: DW_TAG_class_type, name: "A",
>>> file: !10, line: 1, size: 8, elements: !15, identifier: ".?AVA@@")
>>> -!15 = !{!16}
>>> -!16 = !DIDerivedType(tag: DW_TAG_typedef, name: "_Nodeptr", scope: !14,
>>> file: !10, line: 2, baseType: null)
>>> -!17 = !DISubprogram(name: "m_fn1", linkageName: "\01?m_fn1 at B@@AAE_NXZ",
>>> scope: !11, file: !10, line: 6, type: !18, isLocal: false, isDefinition:
>>> false, scopeLine: 6, flags: DIFlagPrototyped, isOptimized: false)
>>> -!18 = !DISubroutineType(cc: DW_CC_BORLAND_thiscall, types: !19)
>>> -!19 = !{!20, !21}
>>> -!20 = !DIBasicType(name: "bool", size: 8, encoding: DW_ATE_boolean)
>>> -!21 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 32,
>>> flags: DIFlagArtificial | DIFlagObjectPointer)
>>> -!22 = !DILocalVariable(name: "this", arg: 1, scope: !9, type: !23,
>>> flags: DIFlagArtificial | DIFlagObjectPointer)
>>> -!23 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 32)
>>> -!24 = !DILocation(line: 0, scope: !9)
>>> -!25 = !DILocation(line: 8, scope: !9)
>>>
>>>
>>> _______________________________________________
>>> llvm-commits mailing list
>>> llvm-commits at lists.llvm.org
>>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180102/637c0939/attachment.html>


More information about the llvm-commits mailing list