Displaying 3 results from an estimated 3 matches for "gpdisp".
Did you mean:
pdisp
2011 Jun 29
2
[LLVMdev] hello world error
...; preds = %entry
%retval1 = load i32* %retval
ret i32 %retval1
}
declare i32 @puts(i8*)
The .str is present in the argument to the puts function in %1 is present in
the bitcode.
But when i use llc to change the bitcode to alpha assembly, i get the
following:
ldah $29,0($27) !gpdisp!1
lda $29,0($29) !gpdisp!1
$main..ng:
lda $30,-32($30)
stq $9,24($30)
stq $11,16($30)
bis $26,$26,$9
* ldq $27,puts($29) * !literal
lda $11,8($30)
jsr $26,($27),0
The puts call is there, but register 16 which i believe is supposed to have
the arguments to a function call is n...
2011 Jun 29
0
[LLVMdev] hello world error
...val
> ret i32 %retval1
> }
>
> declare i32 @puts(i8*)
>
> The .str is present in the argument to the puts function in %1 is present
> in the bitcode.
> But when i use llc to change the bitcode to alpha assembly, i get the
> following:
>
>
> ldah $29,0($27) !gpdisp!1
> lda $29,0($29) !gpdisp!1
> $main..ng:
> lda $30,-32($30)
> stq $9,24($30)
> stq $11,16($30)
> bis $26,$26,$9
> * ldq $27,puts($29) * !literal
> lda $11,8($30)
> jsr $26,($27),0
>
>
> The puts call is there, but register 16 which i believe...
2011 Jun 29
1
[LLVMdev] hello world error
...gt;
>> declare i32 @puts(i8*)
>>
>> The .str is present in the argument to the puts function in %1 is present
>> in the bitcode.
>> But when i use llc to change the bitcode to alpha assembly, i get the
>> following:
>>
>>
>> ldah $29,0($27) !gpdisp!1
>> lda $29,0($29) !gpdisp!1
>> $main..ng:
>> lda $30,-32($30)
>> stq $9,24($30)
>> stq $11,16($30)
>> bis $26,$26,$9
>> * ldq $27,puts($29) * !literal
>> lda $11,8($30)
>> jsr $26,($27),0
>>
>>
>> The put...