Displaying 8 results from an estimated 8 matches for "thegreendragon".
2013 Aug 12
4
[LLVMdev] creating new llvm project?
On Mon, Aug 12, 2013 at 2:34 PM, Óscar Fuentes <ofv at wanadoo.es> wrote:
> "Matthew O'Connor" <thegreendragon at gmail.com> writes:
>
> > I'm in the process of creating a new LLVM project based on the
> instructions
> > from http://llvm.org/docs/Projects.html.
> >
> > I have a bunch of questions:
> >
> > 1. What is the relationship between CMake and the co...
2013 Aug 12
3
[LLVMdev] creating new llvm project?
Hi all,
I'm in the process of creating a new LLVM project based on the instructions
from http://llvm.org/docs/Projects.html.
I have a bunch of questions:
1. What is the relationship between CMake and the configure + Makefile
build systems for LLVM? If I intend to just use configure + Makefile, do I
need to worry about any of the CMake stuff?
2. My first attempt was to copy the sample
2013 Aug 12
0
[LLVMdev] creating new llvm project?
"Matthew O'Connor" <thegreendragon at gmail.com> writes:
> I'm in the process of creating a new LLVM project based on the instructions
> from http://llvm.org/docs/Projects.html.
>
> I have a bunch of questions:
>
> 1. What is the relationship between CMake and the configure + Makefile
> build systems f...
2013 Aug 27
0
[LLVMdev] creating new llvm project?
On Mon, Aug 12, 2013 at 2:22 PM, Matthew O'Connor
<thegreendragon at gmail.com> wrote:
> On Mon, Aug 12, 2013 at 2:34 PM, Óscar Fuentes <ofv at wanadoo.es> wrote:
>>
>> "Matthew O'Connor" <thegreendragon at gmail.com> writes:
>>
>> > I'm in the process of creating a new LLVM project based on the
>&...
2014 Apr 29
4
[LLVMdev] writing an alias analysis pass?
...s() into llvm::initializeAnalysis(PassRegistry &Registry) {} ?
This will initialize it linked into the Analysis library.
thanks,
chen
On Apr 28, 2014, at 8:43 PM, Jingyue Wu <jingyue at google.com> wrote:
>
>
>
> On Thu, Apr 24, 2014 at 4:38 PM, Matthew O'Connor <thegreendragon at gmail.com> wrote:
> Hi,
>
> I'm attempting to do some alias analysis & other memory inspection. I've written a pointless AliasAnalysis pass (that says everything must alias) to attempt to verify that my pass is getting picked up & run by opt.
>
> I run opt wit...
2014 Apr 24
4
[LLVMdev] writing an alias analysis pass?
Hi,
I'm attempting to do some alias analysis & other memory inspection. I've
written a pointless AliasAnalysis pass (that says everything must alias) to
attempt to verify that my pass is getting picked up & run by opt.
I run opt with: opt -load ~/Applications/llvm/lib/MustAA.so -must-aa
-aa-eval -debug < trace0.ll
I see my pass being initialized, but never being called (I see
2013 Aug 13
0
[LLVMdev] creating new llvm project?
On 12 Aug 2013, at 22:22, "Matthew O'Connor" <thegreendragon at gmail.com> wrote:
> How realistic is the possibility of moving to CMake only?
It's been discussed frequently over the past 18 months. Most things work better (or exclusively) with CMake. A few (important) things only work, or work better, with autoconf. Getting CMake up to the st...
2013 Sep 02
1
[LLVMdev] creating new llvm project?
On Tue, Aug 27, 2013 at 3:32 PM, Eric Christopher <echristo at gmail.com>wrote:
> Then which build system likely doesn't matter for you?
>
I'd like to take advantage of the build work that LLVM has done so that we
don't have to spend as much time maintaining our build when we can just
mimic LLVM's + we'd get the build support for how tools, libraries,
includes,