Displaying 14 results from an estimated 14 matches for "cortijo".
2011 Nov 28
3
[LLVMdev] Turning on/off instruction extensions
How can I install the patch? Any step-by-step guide?
Thanks,
Pablo
On 24/11/2011, at 15:33, Hal Finkel wrote:
> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
>> Hi everybody,
>>
>> I'm trying to run some examples with different backend options (turning
>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
>> difference in terms of execution time. Does anybody know which language
>> const...
2011 Nov 24
0
[LLVMdev] Turning on/off instruction extensions
On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
> Hi everybody,
>
> I'm trying to run some examples with different backend options (turning
> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
> difference in terms of execution time. Does anybody know which language
> constructs (in C/C++ preferab...
2011 Nov 29
2
[LLVMdev] Turning on/off instruction extensions
...> If you have any further questions, or need a more-detailed answer,
> please let me know.
>
> -Hal
>
>>
>> Thanks,
>> Pablo
>>
>> On 24/11/2011, at 15:33, Hal Finkel wrote:
>>
>>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
>>>> Hi everybody,
>>>>
>>>> I'm trying to run some examples with different backend options (turning
>>>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
>>>> difference in terms of execution time. Does an...
2011 Dec 02
3
[LLVMdev] Turning on/off instruction extensions
...ase let me know.
>>>
>>> -Hal
>>>
>>>>
>>>> Thanks,
>>>> Pablo
>>>>
>>>> On 24/11/2011, at 15:33, Hal Finkel wrote:
>>>>
>>>>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
>>>>>> Hi everybody,
>>>>>>
>>>>>> I'm trying to run some examples with different backend options (turning
>>>>>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
>>>>>> differ...
2011 Nov 24
3
[LLVMdev] Turning on/off instruction extensions
Hi everybody,
I'm trying to run some examples with different backend options (turning
on/off SSE, 3dnow, or MMX instructions). However, I don't see any
difference in terms of execution time. Does anybody know which language
constructs (in C/C++ preferably) should I try to make these instructions
generated (and thus make a difference between a backend that enables
them or not) ?
I tried
2011 Nov 28
0
[LLVMdev] Turning on/off instruction extensions
...; /path/to/the-patch-file.diff
Then you rebuild.
If you have any further questions, or need a more-detailed answer,
please let me know.
-Hal
>
> Thanks,
> Pablo
>
> On 24/11/2011, at 15:33, Hal Finkel wrote:
>
> > On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
> >> Hi everybody,
> >>
> >> I'm trying to run some examples with different backend options (turning
> >> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
> >> difference in terms of execution time. Does anybody know whic...
2011 Nov 29
0
[LLVMdev] Turning on/off instruction extensions
...detailed answer,
> > please let me know.
> >
> > -Hal
> >
> >>
> >> Thanks,
> >> Pablo
> >>
> >> On 24/11/2011, at 15:33, Hal Finkel wrote:
> >>
> >>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
> >>>> Hi everybody,
> >>>>
> >>>> I'm trying to run some examples with different backend options (turning
> >>>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
> >>>> difference in terms o...
2011 Dec 02
0
[LLVMdev] Turning on/off instruction extensions
...gt; -Hal
> >>>
> >>>>
> >>>> Thanks,
> >>>> Pablo
> >>>>
> >>>> On 24/11/2011, at 15:33, Hal Finkel wrote:
> >>>>
> >>>>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
> >>>>>> Hi everybody,
> >>>>>>
> >>>>>> I'm trying to run some examples with different backend options (turning
> >>>>>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any
> >&g...
2011 Dec 12
2
[LLVMdev] Turning on/off instruction extensions
...>> -Hal
>>>>>
>>>>>> Thanks,
>>>>>> Pablo
>>>>>>
>>>>>> On 24/11/2011, at 15:33, Hal Finkel wrote:
>>>>>>
>>>>>>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
>>>>>>>> Hi everybody,
>>>>>>>>
>>>>>>>> I'm trying to run some examples with different backend options (turning
>>>>>>>> on/off SSE, 3dnow, or MMX instructions). However, I don't see any...
2011 Oct 13
0
[LLVMdev] Integer to string
...se than std::ostream style APIs. Therefore new code should always use raw_ostream for writing, or the llvm::MemoryBuffer API for reading files.
=============
This is from: http://llvm.org/docs/CodingStandards.html#ll_iostream
Hope this helps
Garrison
On Oct 13, 2011, at 5:36, pablo barrio lópez-cortijo wrote:
> http://llvm.org/releases/2.0/docs/CodingStandards.html
>
> I just realized that the target version is LLVM 2.0, so most likely the llvm::StringStream is deprecated by now.
>
> Thanks for your response!
>
> On 12/10/2011, at 17:10, Garrison Venn wrote:
>
>>...
2011 Oct 14
1
[LLVMdev] CloneFunction
Hi,
I want to duplicate a function and transfer it from one module to another. I found "CloneFunction()" but it needs an "vMap". I found that "vMap" is used to map the original values to the new values. So, hypothetically, if the original function uses a global variable from the previous module and I want that use in the new function to be mapped to a global variable
2011 Oct 13
1
[LLVMdev] Integer to string
http://llvm.org/releases/2.0/docs/CodingStandards.html
I just realized that the target version is LLVM 2.0, so most likely the llvm::StringStream is deprecated by now.
Thanks for your response!
On 12/10/2011, at 17:10, Garrison Venn wrote:
> Hi Pablo,
>
> Can you provide a link to the document containing a reference to
> llvm::StringStream? I've looked in both the llvm coding
2011 Oct 12
0
[LLVMdev] Integer to string
Hi Pablo,
Can you provide a link to the document containing a reference to
llvm::StringStream? I've looked in both the llvm coding standards,
and llvm programming manual for versions: ToT (3.0), 2.9 (which
seems to be the same as ToT), and 2.8. Obviously my search is
missing something.
Thanks in advance
Garrison
On Oct 12, 2011, at 8:18, Pablo Barrio wrote:
> Hi,
>
> I need
2011 Dec 12
0
[LLVMdev] Turning on/off instruction extensions
...>
> >>>>>> Thanks,
> >>>>>> Pablo
> >>>>>>
> >>>>>> On 24/11/2011, at 15:33, Hal Finkel wrote:
> >>>>>>
> >>>>>>> On Thu, 2011-11-24 at 15:09 +0100, Pablo Barrio López-Cortijo wrote:
> >>>>>>>> Hi everybody,
> >>>>>>>>
> >>>>>>>> I'm trying to run some examples with different backend options (turning
> >>>>>>>> on/off SSE, 3dnow, or MMX instructions). However,...