Displaying 3 results from an estimated 3 matches for "z_instruction".
2016 Nov 15
2
how to prevent LLVM back-end from reordering instructions at instruction scheduling?
Hello,
I have a LLVM backend question regarding how to prevent compiler from
reordering instructions. For example, I have the following instructions.
Z_instruction is the one which I want to insert.
// instruction order which I am looking for
/////////////////////////////////////////
A_instruction
B_instruction
*Z_instruction*
C_instruction
D_instruction
E_instruction
F_instruction
*Z_instruction*
G_instruction
F_instruction
==========================...
2016 Nov 15
5
how to prevent LLVM back-end from reordering instructions at instruction scheduling?
...t; B and Z.
>
> -Krzysztof
>
>
> On 11/15/2016 3:26 PM, Wei Ding via llvm-dev wrote:
>
>> Hello,
>>
>> I have a LLVM backend question regarding how to prevent compiler from
>> reordering instructions. For example, I have the following instructions.
>> Z_instruction is the one which I want to insert.
>>
>>
>> // instruction order which I am looking for
>> /////////////////////////////////////////
>> A_instruction
>> B_instruction
>>
>> *Z_instruction*
>>
>> C_instruction
>> D_instruction
>>...
2016 Nov 15
2
how to prevent LLVM back-end from reordering instructions at instruction scheduling?
...Wei Ding via llvm-dev wrote:
>>
>> Hello,
>>
>> I have a LLVM backend question regarding how to prevent compiler
>> from
>> reordering instructions. For example, I have the following
>> instructions.
>> Z_instruction is the one which I want to insert.
>>
>>
>> // instruction order which I am looking for
>> /////////////////////////////////////////
>> A_instruction
>> B_instruction
>>
>> *Z_instruction*
>>
>>...