Displaying 5 results from an estimated 5 matches for "istemporary".
2015 Jun 02
2
[LLVMdev] MDNodeFwdDecl
...ved, and neither can I find class reference of it on the llvm doxgen website. So is it still valid ??
>
> 2. How and when will it be generated when I use DIBuilder module ?
I suspect you've neglected to call `DIBuilder::finalize()`.
On trunk, `isa<MDNodeFwdDecl>(N)` has become `N.isTemporary()`. There
are a number of temporaries created in the debug info graph to facilitate
building cycles, and `DIBuilder::finalize()` (1) cleans them up, and (2)
resolves other nodes involved in the cycles.
It looks like we don't archive old doxygen files, but you should be
able to build it yourse...
2015 Jun 02
2
[LLVMdev] MDNodeFwdDecl
Hello,
I'm having this assertion fail when I was using DIBuilder to create the
debug information:
Expected no forward declarations!
!719
The assertion condition is: !isa<MDNodeFwdDecl> (MD)
So My questions are:
1. What is exactly the MDNodeFwdDecl ? I saw it's in the latest release
3.6.1, but I also found this link
2010 Apr 16
0
[LLVMdev] r98459 break of ExceptionDemo
Hi Garrison,
Does r101453 fix this?
-Chris
On Mar 22, 2010, at 12:35 PM, Garrison Venn wrote:
> Ok, I've isolated the recent additions that cause the issue and supplied a patch which is NOT meant
> to be applied, but instead solely exists for identification purposes for those who know what they are doing. :-)
> The patch is offset from HEAD.
>
> The patch is a hack which
2010 Mar 22
2
[LLVMdev] r98459 break of ExceptionDemo
Ok, I've isolated the recent additions that cause the issue and supplied a patch which is NOT meant
to be applied, but instead solely exists for identification purposes for those who know what they are doing. :-)
The patch is offset from HEAD.
The patch is a hack which removes use of the MCSymbol::isDefined(...) method, as its use happens to break
in the exception JIT context; both in
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...{
+ default:
+ return false;
+ case MachO::ARM64_RELOC_UNSIGNED:
+ case MachO::ARM64_RELOC_PAGEOFF12:
+ case MachO::ARM64_RELOC_PAGE21:
+ case MachO::ARM64_RELOC_BRANCH26:
+ case MachO::ARM64_RELOC_GOT_LOAD_PAGE21:
+ case MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12:
+ if (!SD->getSymbol().isTemporary()) {
+ return true;
+ }
+ {
+ SectionKind kind = SD->getSymbol().getSection().getKind();
+ if (kind.isDataRel() || kind.isReadOnlyWithRel() || kind.isMetadata() ||
+ kind.isMergeableConst())
+ return true;
+ }
+ return false;
+ }
+}
+
+void AArch64Mach...