Displaying 9 results from an estimated 9 matches for "getaddr".
Did you mean:
retaddr
2004 Sep 22
1
Problem compiling Corel-WINE
...quot; does not give a valid
preprocessing token
thunk.c:402:58: pasting "." and "DestroyIcon32" does not give a valid
preprocessing token
thunk.c:403:60: pasting "." and "UserSignalProc" does not give a valid
preprocessing token
This is the code:
#define GETADDR( var, name ) \
*(FARPROC *)&Callout.##var = GetProcAddress( hModule, name )
GETADDR( PeekMessageA, "PeekMessageA" );
GETADDR( PeekMessageW, "PeekMessageW" );
GETADDR( GetMessageA, "GetMessageA" );
GETADDR( GetMessageW,...
2018 Aug 30
2
Instruction does not dominate all uses!
...truction 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 i64 @getAddr(i8* %0)
call void @funcInit(i64 %1)
%2 = call i64 @getRealFunArg(i32 0, i64 %1)
%mul = fmul double %val1, %val1
ret double %mul
}
!llvm.module.flags = !{!0}
!llvm.ident = !{!1}
!0 = !{i32 1, !"wchar_size", i32 4}
!1 = !{!"clang version 7.0.0 (trunk 336308)&quo...
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 belong to
this mailing list. The reason I fixed this is because the rsync RPM that
comes with Red Hat 7.2 contained the IPV6 p...
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_r...
2014 Sep 18
5
[LLVMdev] VEX prefixes for JIT in llvm 3.5
...ject file.
With a bit of cleanup though, we could do something more like this:
const RuntimeDyld::JITObject& JO = RTDyld.loadObject(Object);
// ...
RTDyld.resolveRelocations();
DEBUG(
for (const RuntimeDyld::JITObject::Section& S : JO.sections())
if (S.isText())
Disassemble(S.getAddr(), S.getSize());
);
How does that look?
Cheers,
Lang.
On Wed, Sep 17, 2014 at 3:08 PM, Philip Reames <listmail at philipreames.com>
wrote:
>
> On 09/17/2014 12:45 PM, Matt Godbolt wrote:
>
>> Great stuff; thanks both!
>>
>> I'm also looking to turn my MCJIT...
2010 Sep 17
2
Too stupid for sieve (former maildrop user)
...ing like this:
if($E =~ /.*@facebookmail\.com/)
{
if (/^Subject: .*invited you to join the group/)
{
to "$M/.Facebook.Invites.Groups/"
}
if (/^Subject: .*invited you to the event/)
{
to "$M/.Facebook.Invites.Events/"
}
}
$E was a shortcut for (adressmatching):
ADDR=getaddr($MATCH)
E=`echo $ADDR | sed 's/^M//'`
$M was the path to the maildir, like /home/vmail/domain.tld/name
Is that possible? Or is maildrop simple more powerful?
Thank you :-)
Dieter
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