search for: d46864

Displaying 2 results from an estimated 2 matches for "d46864".

Did you mean: 146864
2018 May 17
0
[RFC] Adding 2 functions to the ALiasAnalysis interface (getAddressesDistance + ModRefSameBuffer)
...otherwise. 2) getAddressesDistance: the function will recieve 2 memoryLocation, if they are mod/ref-ing the same buffer/memory block, the function will return the distance between those locations at the memory. None otherwise (Optional<int64_t>) interface change: https://reviews.llvm.org/D46864 those 2 function can be impelemented easly in AlisAnalysis and can help alot of users, a usage example is for detecting bank conflicts (using the distance between memoryLoc and the number and size of the banks you can know if you have a conflict). implementation and usage example (with code dupli...
2018 Jun 20
2
adding 2 new functions to the AliasAnalysis interface
...e otherwise. 2) getAddressesDistance: the function will recieve 2 memoryLocation, if they are mod/ref-ing the same buffer/memory block, the function will return the distance between those locations at the memory. None otherwise (Optional<int64_t>) interface change:https://reviews.llvm.org/D46864 those 2 function can be impelemented easly in AlisAnalysis and can help alot of users, a usage example is for detecting bank conflicts (using the distance between memoryLoc and the number and size of the banks you can know if you have a conflict). implementation and usage example (with code dupli...