<div dir="ltr"><div>This line looks incorrect<br></div><div><br></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">Module *M = parseIRFile(InputIR, diag, context).get();</span><br></div><div><span style="background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline"><br></span></div><div>parseIRFile returns a unique_ptr, you called "get()" on it and captured the value of the ptr, but the temporary unique_ptr was not invalidated. So its destructor still ran and deleted the module out from under you. You should use std::unique_ptr<Module> M to maintain ownership.</div><div><br></div><div>~Craig</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 11, 2018 at 10:04 PM <a href="http://mayuyu.io">mayuyu.io</a> via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I’m using LLVM6.0 Release version on macOS<br>
<br>
Zhang<br>
<br>
> 在 2018年6月12日,12:59,Zhang via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> 写道:<br>
> <br>
> Hi:<br>
> I'm building a small tool on top of LLVM Core Library.<br>
> <br>
> ```<br>
> LLVMContext context;<br>
> SMDiagnostic diag;<br>
> Module *M = parseIRFile(InputIR, diag, context).get();<br>
>   if (M == nullptr) {<br>
>     diag.print("LLVM", errs());<br>
>     exit(-1);<br>
>   }<br>
>   assert(M->isMaterialized() && "Module not materialized!");<br>
>   PointerType *ArrayPtrTy =<br>
>       M->getTypeByName("struct._Array")->getPointerTo();<br>
> ```<br>
> <br>
> However this piece of code crashes at Module::getTypeByName because getContext().pImpl is NULL pointer. Other similar issues include Module::getTypeByName results in a NULL pointer dereference because TheTable in StringMap is not allocated/initialized.<br>
> <br>
> It would be great if someone could show me what's the correct way to initialize all this kind of internal data structures so I could focus on my tool's logic<br>
> <br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br>
<br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>