Displaying 7 results from an estimated 7 matches for "hexagonv2".
Did you mean:
hexagon2
2012 Jul 03
2
[LLVMdev] target hexagon and sparcv9 lead to llc crack
...ing pass 'Function Pass Manager' on module 'test.ll'.
>> 2. Running pass 'Hexagon DAG->DAG Pattern Instruction Selection' on
>> function '@cmp'
>> Segmentation fault (core dumped)
>
> if you provide an explicit choice of processor, eg -mcpu=hexagonv2, then this
> works. It looks like hexagon is missing a default choice of processor.
>
> Ciao, Duncan.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/li...
2012 Jul 19
2
[LLVMdev] target hexagon and sparcv9 lead to llc crack
...n module 'test.ll'.
>>>> 2. Running pass 'Hexagon DAG->DAG Pattern Instruction Selection' on
>>>> function '@cmp'
>>>> Segmentation fault (core dumped)
>>>
>>> if you provide an explicit choice of processor, eg -mcpu=hexagonv2, then this
>>> works. It looks like hexagon is missing a default choice of processor.
>>>
>>> Ciao, Duncan.
>>> _______________________________________________
>>> LLVM Developers mailing list
>>> LLVMdev at cs.uiuc.edu http://llvm.cs.u...
2012 Jul 03
4
[LLVMdev] target hexagon and sparcv9 lead to llc crack
hi,
does someone notice that llc options "-march=hexagon" and
"-march-sparcv9" do not work well under llvm 3.1?
Following is a brief description:
(1) test.c file
int cmp(int i, int j) {
return (i>j)?1:0;
}
(2) test.ll file (clang -emit-llvm test.c -S -o test.ll)
; ModuleID = 'test.c'
target datalayout =
2012 Jul 03
0
[LLVMdev] target hexagon and sparcv9 lead to llc crack
...o test.s
> 1. Running pass 'Function Pass Manager' on module 'test.ll'.
> 2. Running pass 'Hexagon DAG->DAG Pattern Instruction Selection' on
> function '@cmp'
> Segmentation fault (core dumped)
if you provide an explicit choice of processor, eg -mcpu=hexagonv2, then this
works. It looks like hexagon is missing a default choice of processor.
Ciao, Duncan.
2012 Jul 04
0
[LLVMdev] target hexagon and sparcv9 lead to llc crack
...Pass Manager' on module 'test.ll'.
>>> 2. Running pass 'Hexagon DAG->DAG Pattern Instruction Selection' on
>>> function '@cmp'
>>> Segmentation fault (core dumped)
>>
>> if you provide an explicit choice of processor, eg -mcpu=hexagonv2, then this
>> works. It looks like hexagon is missing a default choice of processor.
>>
>> Ciao, Duncan.
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http://...
2012 Jul 19
0
[LLVMdev] target hexagon and sparcv9 lead to llc crack
...l'.
>>>>> 2. Running pass 'Hexagon DAG->DAG Pattern Instruction Selection' on
>>>>> function '@cmp'
>>>>> Segmentation fault (core dumped)
>>>>
>>>> if you provide an explicit choice of processor, eg -mcpu=hexagonv2, then this
>>>> works. It looks like hexagon is missing a default choice of processor.
>>>>
>>>> Ciao, Duncan.
>>>> _______________________________________________
>>>> LLVM Developers mailing list
>>>> LLVMdev at cs.uiuc.edu...
2012 Jul 03
0
[LLVMdev] target hexagon and sparcv9 lead to llc crack
sorry,
llc -march=hexagon -mcpu=hexagonv2 test.ll -o test.s
works.
2012/7/3 Triple Yang <triple.yang at gmail.com>:
> hi,
>
> does someone notice that llc options "-march=hexagon" and
> "-march-sparcv9" do not work well under llvm 3.1?
>
> Following is a brief description:
> (1) test.c...