Displaying 20 results from an estimated 100 matches similar to: "[LLVMdev] i need your help"
2012 Mar 06
2
[LLVMdev] OpenCL backend for LLVM
Hi Micah,
i just had a quick look at your structurizer. Here is what if found
(correct me, if i am mistaken):
* Our approaches for handling Loops with multiple exits are identical.
("Loop-Exit Enumeration")
* Axtor implements Controlled-Node Splitting and can cope with
irreducible control-flow.
(http://cardit.et.tudelft.nl/MOVE/papers/cc96.ps)
* Axtor translates switches to cascading
2012 Mar 05
2
[LLVMdev] OpenCL backend for LLVM
Hi,
this is a follow-up on my email from august
(http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-August/042737.html).
i have, finally, released my OpenCL backend and control-flow
restructuring framework for LLVM (AST-Extractor, or short axtor). The
framework restructures function CFGs such that they can be expressed
entirely without GOTOs or switch/loop-trickery. Hence, making it
possible to
2012 Mar 06
0
[LLVMdev] OpenCL backend for LLVM
The person that wrote our structurizer agrees with your analysis. Too bad the licenses are incompatible, it would be nice to merge similar efforts.
> -----Original Message-----
> From: Simon Moll [mailto:simon.m.moll at googlemail.com]
> Sent: Tuesday, March 06, 2012 2:49 AM
> To: Villmow, Micah
> Cc: llvmdev at cs.uiuc.edu
> Subject: RE: [LLVMdev] OpenCL backend for LLVM
>
2012 Mar 05
0
[LLVMdev] OpenCL backend for LLVM
Simon,
Have you looked at the control flow structizer that we have in the Open Source AMDIL backend?
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Simon Moll
> Sent: Monday, March 05, 2012 1:01 PM
> To: llvmdev at cs.uiuc.edu
> Subject: [LLVMdev] OpenCL backend for LLVM
>
> Hi,
>
> this
2012 Sep 21
1
[LLVMdev] [OT] Control Flow Graph(CFG) into Abstract Syntax Tree(AST)
On 21 September 2012 09:51, Ralf Karrenberg <Chareos at gmx.de> wrote:
> Hi,
>
> Simon Moll (in CC) has written a decompiler for LLVM in his Bachelor's
> Thesis here at Saarland University. The thesis is titled "Decompilation of
> LLVM IR" and can be found here:
> http://www.cdl.uni-saarland.de/publications/
>
> The library he implemented is called
2012 Sep 21
0
[LLVMdev] [OT] Control Flow Graph(CFG) into Abstract Syntax Tree(AST)
Hi,
Simon Moll (in CC) has written a decompiler for LLVM in his Bachelor's
Thesis here at Saarland University. The thesis is titled "Decompilation
of LLVM IR" and can be found here:
http://www.cdl.uni-saarland.de/publications/
The library he implemented is called "Axtor" (for "AST Extractor") and
has been used primarily to generate OpenCL code from LLVM. In
2004 May 29
4
PlayTones problem
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi!
I am having problems with the PlayTones application and VoIP softphones.
I have the following in my extensions.conf:
exten => 123,1,Answer
exten => 123,2,PlayTones(Busy)
exten => 123,3,Hangup
But when I connect with gnophone(IAX) or kphone(SIP) and dial 123 the call
just hangs up immediately.
I get the following on the console:
--
2017 May 31
2
Bug with 2.2.29-1~auto+25 back to haunt me
> On May 31, 2017 at 6:10 PM Ralf Hildebrandt <Ralf.Hildebrandt at charite.de> wrote:
>
>
> * Ralf Hildebrandt <Ralf.Hildebrandt at charite.de>:
>
> > So I added
> > ssl_ca_file = /etc/ssl/certs/ca-certificates.crt
> >
> > But alas:
> > May 31 16:50:24 mproxy dovecot: config: Warning: Obsolete setting in
2017 May 31
2
Bug with 2.2.29-1~auto+25 back to haunt me
After upgrading from 2.2.28-1~auto+45 to 2.2.29-1~auto+25 I'm gettings
this:
May 31 16:44:31 mproxy dovecot: auth: Fatal: passdb imap: Cannot verify certificate without ssl_ca_dir or ssl_ca_file setting
May 31 16:44:31 mproxy dovecot: master: Error: service(auth): command startup failed, throttling for 8 secs
May 31 16:44:31 mproxy dovecot: imap-login: Disconnected: Auth process broken
2012 May 07
6
[LLVMdev] Using LLVM for decompiling.
Hi,
I am writing a decompiler. I was wondering if some of LLVM could be
used for a decompiler.
There are several stages in the decompiler process.
1) Take binary and create a higher level representation of it. Like RTL.
2) The output is then broken into blocks or nodes, each block ends in
a CALL, JMP, RET, or 2-way or multiway conditional JMP.
3) The blocks or nodes are then analyzed for
2005 Feb 28
1
Zap channel calling back after hangup (due to polarity CID detection)
Today I received a TDM11B (1 FXO and 1 FXS) and got it installed just fine.
I bought the card mainly to get caller ID to work properly in Sweden, and
that works just fine.
However, if the called or calling party hangs up after I hangup my SIP
channel, polarity CID detection kicks in and dials a couple of signals to my
incoming context. This happens with Asterisk 1.0.6 and CVS-HEAD. I have
tried
2012 Sep 09
1
[LLVMdev] how clang reads the source data
hi,i am a fresh in LLVM and Clang,I have a question to ask you:
If use this command line to run Clang:
clang helloworld.c -S -emit-llvm -o helloworld.ll
and how and where does clang read the "helloworld.c"?
where is the read data code?
thx so much in advance.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2012 Sep 13
5
[LLVMdev] [OT] Control Flow Graph(CFG) into Abstract Syntax Tree(AST)
Hi,
I know most compilers go from AST to CFG.
I am writing a decompiler, so I was wondering if anyone knew of any
documents describing how best to get from CFG to AST.
The decompiler project is open source.
https://github.com/jcdutton/libbeauty
The decompiler already contains a disassembler and a virtual machine
resulting in an annotated CFG. It uses information gained from using a
virtual
2005 Sep 30
1
Siemens TC35 GSM gateway
Hi all,
I have a TC35 and am keen to see if anyone has both voice and sms working from
Asterisk through this device? Google tells me that a few people have theorised
about it, I can't find anyone claiming to be doing it. What would be the best
way to put it into practice? Build a new channel for it?
Thanks
Andrew
2005 May 10
2
skype channel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I just noticed that the Skype API for linux seems to be available.
I've read before a number of posts where people were talking about
implementing a chan_skype with the skype API.
I wonder if there is any progress in that direction, and if anyone is
working on it.
/B
- --
* GPG-Key: http://evil.gnarf.org/mrbk.pgp
A: Because we read from top to
2004 Jun 08
0
TDM400P hangup / ringing detection problem
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi!.
I am having problems with getting asterisk to detect when someone hangs up.
I have a TDM400P with one FXO module connected to my telco, and also a
FXS-module connected to my phone.
The FXS-module detects hangups just fine, but I can't get the FXO to
detect them.
I am pretty sure i have disconnect supervision on my phoneline since
when I
2004 Jun 15
0
TDM400P FXO problems
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi!
I live in Sweden and I am having problems getting asterisk to properly
detect when a caller hangs up.
And yes, I DO have disconnect-supervision on my line.
Also asterisk sometimes misinterprets the disconnect-signal as another
incoming call. This usually happens if I hang up first and then when
the caller hangs up, asterisk treats it as a new
2005 Jan 13
1
Enabling/disabling zaptel echo-can from dialplan.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Is it possible to enable/disable the zaptel echo-canceller
from the dialplan?
The reason I ask is that I want the echocanceller active on all calls except
when someone is sending a fax.
The simplest way would be to disable it on incoming calls to the fax
numbers and leaving it on on all other calls.
/B
- --
* GPG-Key: http://evil.gnarf.org/mrbk.pgp
2017 May 31
0
Bug with 2.2.29-1~auto+25 back to haunt me
* Ralf Hildebrandt <Ralf.Hildebrandt at charite.de>:
> So I added
> ssl_ca_file = /etc/ssl/certs/ca-certificates.crt
>
> But alas:
> May 31 16:50:24 mproxy dovecot: config: Warning: Obsolete setting in /etc/dovecot/conf.d/10-ssl.conf:36: ssl_ca_file has been replaced by ssl_ca = <file
>
> Gnarf! As you can see I do HAVE ssl_ca in my doveconf -n output!
>
>
2017 Jun 01
0
Bug with 2.2.29-1~auto+25 back to haunt me
* Aki Tuomi <aki.tuomi at dovecot.fi>:
> > > So I added
> > > ssl_ca_file = /etc/ssl/certs/ca-certificates.crt
> > >
> > > But alas:
> > > May 31 16:50:24 mproxy dovecot: config: Warning: Obsolete setting in /etc/dovecot/conf.d/10-ssl.conf:36: ssl_ca_file has been replaced by ssl_ca = <file
> > >
> > > Gnarf! As you can