search for: incestu

Displaying 8 results from an estimated 8 matches for "incestu".

Did you mean: incest
2015 May 21
2
[LLVMdev] MemoryDependenceAnalysis reports dependencies between NoAlias pointers
...e your AA to be called. > > Second, a bit more info is needed. > > On which of these pointers and what memdep functions are you calling? > > (and can you attach the full .ll file?) > > > Note that memorydependence's main client is GVN, and they have a > pretty incestuous relationship. > > So the API may not give you what you really want in some cases. > For example, iit will return load-load clobbers in noalias cases > sometimes so that gvn can use them for load widening, etc. > > But it's not at all clear that you are hitting one of thes...
2015 May 21
2
[LLVMdev] MemoryDependenceAnalysis reports dependencies between NoAlias pointers
Hi all, I have a custom alias analysis pass that enforces that pointers from different address spaces do not alias, and I'm using MemoryDependenceAnalysis to, well, figure out dependence analysis. The AA pass is extremely simple, it only checks the address space of pointers, returns NoAlias if they're different, and delegates otherwise. It is the last alias analysis pass added to my
2015 May 18
4
[LLVMdev] RFC: New EH representation for MSVC compatibility
...ink that the personality-specific unwind tables were actually an ABI "artifact". I mean, let's say you compile a function in Visual Studio, the result is a function with some mangled symbol that other object code can make references through the linker. But the other object code never incestuously refers to the unwind tables of the function it calls, right? I'm speaking from the point of view of an implementor of a new programming language who wants to interoperate with C++. I've already got code that can decode the Microsoft RTTI info coming from C++ exceptions, and the pointe...
2015 May 02
4
[LLVMdev] LLD improvement plan
On Fri, May 1, 2015 at 6:46 PM Nick Kledzik <kledzik at apple.com> wrote: > > On May 1, 2015, at 12:31 PM, Rui Ueyama <ruiu at google.com> wrote: > > *The atom model is not the best model for some architectures * > > > The atom model is a good fit for the llvm compiler model for all > architectures. There is a one-to-one mapping between llvm::GlobalObject >
2017 Apr 16
3
OT: systemd Poll - So Long, and Thanks for All the fish.
> > There is no doubt that most security agencies have a long list of zero- >> day exploits in their toolbox - I would hazard to suggest that they >> wouldn't be doing their job if they didn't! But I seriously doubt they >> would commission exploitable code in something that is openly >> auditable. >> >> P. >> > > P., I used to think
2003 Apr 17
5
AppleTalk(netatalk)+Samba
Hi folks, is anybody using those two products together and can give me any advice on how to do this? My specific issue has been addressed in other posts before, but as nobody responded, it would just now be interesting if anybody at least uses those applications together successfully? greets Malte
2015 May 18
2
[LLVMdev] RFC: New EH representation for MSVC compatibility
...ality-specific unwind tables were > actually an ABI "artifact". I mean, let's say you compile a function in > Visual Studio, the result is a function with some mangled symbol that other > object code can make references through the linker. But the other object > code never incestuously refers to the unwind tables of the function it > calls, right? > > I'm speaking from the point of view of an implementor of a new programming > language who wants to interoperate with C++. I've already got code that can > decode the Microsoft RTTI info coming from C++ ex...
2015 May 15
8
[LLVMdev] RFC: New EH representation for MSVC compatibility
After a long tale of sorrow and woe, my colleagues and I stand here before you defeated. The Itanium EH representation is not amenable to implementing MSVC-compatible exceptions. We need a new representation that preserves information about how try-catch blocks are nested. WinEH background ------------------------------- Skip this if you already know a lot about Windows exceptions. On Windows,