Displaying 9 results from an estimated 9 matches for "getaddre".
Did you mean:
getaddr
2004 Sep 22
1
Problem compiling Corel-WINE
In reference to an old posting: we managed to get a copy of the final CVS
Corel-WINE code.
I am trying to compile it with GCC-3.3.4. I realize that this might not work as
I had to hunt down three patches on Google to build GLibc-2.3.1 with that GCC
version.
NOTE: for those that don't know, GLibc-2.3.1 is the last version of GLibc that
Corel-WINE will work with.
So, I was building
2018 Aug 30
2
Instruction does not dominate all uses!
Hello All,
I am instrumenting IR to pass addres of the function to runtime but I am
getting error - Instruction does not dominate all uses. I used M.dump() to
get below dump, not able to figure out what I am doing wrong. Any help
would be much appreciated.
define dso_local double @mysqrt(double %val1) local_unnamed_addr #0 {
entry:
%0 = bitcast double (double)* @mysqrt to i8*
%1 = call
2001 Nov 09
1
Fix to track-kameipv6 branch for socket.c
I ran into a problem where systems without DNS entries could not connect to
the rsync server with the IPV6 patch applied.
Here is a fix to the problem.
Basically they were checking the list of IP addresses returned by getaddr
even if getaddr failed. I just changed it so they only check the list of IP
addresses if getaddr succeeds.
Any comments on this please email me directly because I do not
2001 Nov 15
1
Checkpoint FW-1 NG Policy Editor
...on module not found for forward
'MSWSOCK.GetTypeB
yNameA' used by 'WSOCK32.dll'
err:win32:PE_fixup_imports No implementation for WSOCK32.dll.1113
imported from
E:\fw-1ng\CPNetwork.dll, setting to 0xdeadbeef
err:win32:PE_FindExportedFunction module not found for forward
'MSWSOCK.GetAddre
ssByNameA' used by 'WSOCK32.dll'
err:win32:PE_fixup_imports No implementation for WSOCK32.dll.1109
imported from
E:\fw-1ng\Resolve.dll, setting to 0xdeadbeef
FIXME:pthread_rwlock_rdlock
FIXME:pthread_rwlock_unlock
FIXME:pthread_rwlock_rdlock
FIXME:pthread_rwlock_unlock
FIXME:pthread_rw...
2014 Sep 18
5
[LLVMdev] VEX prefixes for JIT in llvm 3.5
Hi Matt, Philip,
You could get the data you want by recording the addresses returned by the
allocateCodeSection and allocateDataSection methods on your
RTDyldMemoryManager, then disassembling those sections after you've called
resolveRelocations. That's a little unsatisfying though. For one thing,
unless you very carefully maintain the association with the original object
via
2010 Sep 17
2
Too stupid for sieve (former maildrop user)
Hello,
I just migrated from Postfix/Courier/Maildrop to
Postfix/Dovecot/Deliver/Sieve and don't unterstand the right syntax
for sieve :(
I searched and found many small examples and many links to the RFC,
but nothing was usefull for me (or i didn't unterstand it)
I installed the latest Dovecot-Sieve (hg).
Examples from my maildrop config:
# Filter FROM
if($E =~ /name at domain1\.tld/)
2015 May 04
2
[LLVMdev] Semantics of an Inbounds GetElementPtr
...teach it that anything that compares
it against null are false after an inbounds:
IE
// If the GEP is inbounds, and this is address space 0, we know the pointer is
// not null.
if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I))
if (GEP->isInBounds() && GEP->getAddressSpace() == 0) {
// Need a propagateInequality that replaces any equality checks against
// null with false
}
However, you want to go further here:
What you really want to do in this case is teach GVN that any inbounds
gep that post-dominates a comparison of that pointer against...
2015 May 04
2
[LLVMdev] Semantics of an Inbounds GetElementPtr
On Mon, May 4, 2015 at 9:40 AM, Nicholas White <n.j.white at gmail.com> wrote:
> Thanks - that makes sense. It's interesting that at -O3 the optimizer
> can't reduce the below though - I'll dig into it a bit and see if I
> can make a patch that fixes it:
I'm unsure what you expect to happen below. It's not quite the same testcase.
GVN will PRE the loads, so you
2014 Sep 17
2
[LLVMdev] VEX prefixes for JIT in llvm 3.5
Great stuff; thanks both!
I'm also looking to turn my MCJIT conversion spike into our main use
case. The only thing I'm missing is the ability to get a post-linked
copy of the generated assembly.
In JIT I used JITEventListener's NotifyFunctionEmitted and used a
MCDisassembler to disassemble the stream (with my own custom
annotators), and redirected the output to the relevant place