I do not want to use particular machine instruction in my generated assembly code by llvm.
Is there way to disable the same? I'm ok with modifying the llvm code also.
I do not want to use particular machine instruction in my generated assembly code by llvm.
Is there way to disable the same? I'm ok with modifying the llvm code also.
Copyright © 2021 Jogjafile Inc.
One solution is to specify to llvm that this instruction cannot be "lowered"... Two things may happen:
To do that search for XXXISelDAGToDAG.cpp, where XXX is your target machine and specify to the constructor something like:
Where ISD::YYY is the instruction you don't want to use. This is quite easy to locate when browsing the source code.
Roughly:
Playing around with that, you should be able to solve your problem.
Hoping it will help.