Displaying 1 result from an estimated 1 matches for "side_gep".
2018 Aug 17
2
local restrict - again
...gt;> ...
>> store %rp, 10, !scope..., !noalias ...
>> ...
>>
>>
>> and convert it (early, with an llvm-ir pass) to a form like:
>> ...
>> %p = ...
>> %rp =llvm.noalias %p , !scope.., !noalias ...
>> ...
>> store %p, 10, !side_gep %rp, !scope..., !noalias ... //@ Introduction of '!side_gep %rp, and removing the 'direct dependency' on %rp for the store address
>> ...
>>
>> This second form, is the version where we can deduce restrictness (through the 'side_gep')
>> We believe...