<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)">Hi all -- first time poster, hoping that this is going to the right list. Also a complete LLVM newbie, so please correct any glaring errors in my understanding.</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)">I am an architecture researcher at Penn State working on Processing in Memory (PIM) architectures. Currently, I plan to use LLVM to detect and replace groups of instructions which can be accelerated in memory. Once a group of instructions is detected, they will be replaced with the corresponding PIM instruction. For a toy example, take a series of instructions such as "load A, load B, add C=A+B, store C". My goal in this case would be to detect this series of four instructions and replace it with a single "memory_add" or "cache_add" instruction. When compiled to machine code, these cache_add instructions will compile to some unused x86 opcode; we will then run this binary through gem5, which has been modified to handle PIM instructions.<br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)">Knowing that this is my goal, I have a number of questions:</div><div class="gmail_default"><ol><li><font color="#000000" face="arial, helvetica, sans-serif">Is this a misuse/abuse of LLVM? From an LLVM newbie's perspective, LLVM seemed like the right tool, as I'm doing transformations of source code and trying to produce binaries with new PIM instructions. However, if there's a better tool, or if LLVM is just purely the wrong tool, please tell me.</font></li><li><font color="#000000" face="arial, helvetica, sans-serif">Is there a standard way to do this sort of "pattern matching" in LLVM, e.g. finding load-load-op-store patterns? I found the InstCombinePass class and AggressiveInstCombine directory, which seems to be very close to what I need. I even see mention of "pattern matching" in these files. However, I'm confused as to whether there is a standard way to write patterns and replacements (e.g. specifying that load-load-op-store gets replaced with cache_op), or if I'll just have to roll my own version.</font></li><li><font color="#000000" face="arial, helvetica, sans-serif">When I eventually find a matching load-load-op-store pattern in the IR, my thought was to replace it using an intrinsic function (<a href="https://llvm.org/docs/ExtendingLLVM.html#intrinsic-function">https://llvm.org/docs/ExtendingLLVM.html#intrinsic-function</a>) so that it can later be compiled to x86 by the backend. Would this be the "right" way to do it?</font></li></ol><div class="gmail_default"><br></div><div class="gmail_default">Thanks for the help! </div></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;color:rgb(0,0,0)">Gus Smith, Penn State</div></div>