Displaying 16 results from an estimated 16 matches for "skaflotten".
2008 Dec 31
5
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Óscar Fuentes wrote:
> srs <skaflotten at gmail.com> writes:
>
>
>>>> While testing my compiler on win32 in JIT mode, I ran into a couple of
>>>> issues:
>>>>
>>>> 1. I linked the compiler with the lib files resulting from the cmake
>>>> created VS.NET build. Whil...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
srs <skaflotten at gmail.com> writes:
>>>> Try adding this to the link command of your executable:
>>>>
>>>> /INCLUDE:_X86TargetMachineModule
>>>>
>>>> I should document this somehow.
>>>>
>>> Yeah, this is necessary, but n...
2008 Sep 25
3
[LLVMdev] Kaleidoscope doesn't work properly
Thanks, -rdynamic helps! It's a pity that it's not written in the tutorial.
Also I'm interested how can I provide a mapping?
2008/9/25 srs <skaflotten at gmail.com>:
> Link with -rdynamic or provide a mapping.
2008 Dec 31
1
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Óscar Fuentes wrote:
> srs <skaflotten at gmail.com> writes:
>
>
>>>>> Try adding this to the link command of your executable:
>>>>>
>>>>> /INCLUDE:_X86TargetMachineModule
>>>>>
>>>>> I should document this somehow.
>>>>>
>>...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
2008/12/30 srs <skaflotten at gmail.com>
> Óscar Fuentes wrote:
> > srs <skaflotten at gmail.com> writes:
> >
> >
> >>>> While testing my compiler on win32 in JIT mode, I ran into a couple of
> >>>> issues:
> >>>>
> >>>> 1. I linked th...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
srs <skaflotten at gmail.com> writes:
>>> While testing my compiler on win32 in JIT mode, I ran into a couple of
>>> issues:
>>>
>>> 1. I linked the compiler with the lib files resulting from the cmake
>>> created VS.NET build. While everything built just fine, th...
2008 Dec 31
2
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
>> While testing my compiler on win32 in JIT mode, I ran into a couple of
>> issues:
>>
>> 1. I linked the compiler with the lib files resulting from the cmake
>> created VS.NET build. While everything built just fine, the
>> ExecutionEngine::create call always returned NULL. The fix was to also
>> link with JIT.obj (thanks aKor for pointing me in the
2008 Sep 25
0
[LLVMdev] Kaleidoscope doesn't work properly
Link with -rdynamic or provide a mapping.
/Stein Roger
Andrii Vasyliev wrote:
> Hi
>
> I hope this is a proper place to put my question.
>
> I've compiled Kaleidoscope from "Adding JIT and Optimizer Support" tutorial.
> Basically it works just fine but when I try to run extern'ed putchard
> function it aborts.
> Please, tell me what am I doing wrong?
2008 Sep 26
0
[LLVMdev] Kaleidoscope doesn't work properly
...t to beginners, which should not be misleading.
-- Haohui
On Sep 25, 2008, at 9:42 AM, Andrii Vasyliev wrote:
> Thanks, -rdynamic helps! It's a pity that it's not written in the
> tutorial.
>
> Also I'm interested how can I provide a mapping?
>
> 2008/9/25 srs <skaflotten at gmail.com>:
>> Link with -rdynamic or provide a mapping.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
srs <skaflotten at gmail.com> writes:
> While testing my compiler on win32 in JIT mode, I ran into a couple of
> issues:
>
> 1. I linked the compiler with the lib files resulting from the cmake
> created VS.NET build. While everything built just fine, the
> ExecutionEngine::create call alw...
2009 Oct 16
1
[LLVMdev] MallocInst/CallInst bitcast,
Daniel Waterworth skrev:
> Thanks very much. I only have one more question, (hopefully), which
> is, is there a better way of finding the direction of stack growth
> other than:
>
> static bool StackCmp(void *ptr) {
> volatile int a;
> return (void *)&a > ptr;
> }
>
> bool FindStackDirection() {
> volatile int a;
> return StackCmp((void
2008 Sep 25
3
[LLVMdev] Kaleidoscope doesn't work properly
Hi
I hope this is a proper place to put my question.
I've compiled Kaleidoscope from "Adding JIT and Optimizer Support" tutorial.
Basically it works just fine but when I try to run extern'ed putchard
function it aborts.
Please, tell me what am I doing wrong?
Here is more information:
My PC runs FreeBSD.
I've copied the toy source code exactly and didn't change it.
2008 Dec 31
4
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Hi all,
While testing my compiler on win32 in JIT mode, I ran into a couple of
issues:
1. I linked the compiler with the lib files resulting from the cmake
created VS.NET build. While everything built just fine, the
ExecutionEngine::create call always returned NULL. The fix was to also
link with JIT.obj (thanks aKor for pointing me in the right direction).
I would have thought that linking
2009 Jul 24
1
[LLVMdev] RFC: Constant Creation API
Chris Lattner skrev:
> Unless there is a good reason not to, I think that sticking to the
> LLVM 2.5-style of APIs makes sense.
>
> -Chris
Yes, please!
/Another api-in-flux-victim
2009 Jan 01
1
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Bill Wendling wrote:
> On Dec 31, 2008, at 5:57 AM, srs wrote
>> Bill Wendling wrote:
>>
>>> On Dec 30, 2008, at 4:51 PM, srs wrote:
>>>
>>>
>>>
>>>> 2. There seems to be an issue in ScheduleDAGSDNodes.h when in debug
>>>> mode. The problem is the evaluation of "&SUnits[0];" which
2008 Dec 31
2
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Bill Wendling wrote:
> On Dec 30, 2008, at 4:51 PM, srs wrote:
>
>
>> 2. There seems to be an issue in ScheduleDAGSDNodes.h when in debug
>> mode. The problem is the evaluation of "&SUnits[0];" which ASSERT's in
>> VC++'s vector[] implementation (when _HAS_ITERATOR_DEBUGGING is on).
>>
>> As a work-around, I commented out the debug