Displaying 2 results from an estimated 2 matches for "dabhadebalasaheb".
2016 May 02
3
How to convert assembly code to executable
Hello All,
I have converted c program into assembly code for alpha target using
following commands
clang -emit-llvm matrix.c -c -o matrix.bc
llc -march=alpha matrix.bc -o matrix.s
Now how to convert matrix.s assembly file into executable file of alpha
target?
Any help is appreciated
Thanks in advance !!
Thanks,
Bala
-------------- next part --------------
An HTML attachment was scrubbed...
2016 Feb 27
1
Need help on how to write MachineFunctionPass
Deer All,
I wanted to write MachineFunctionPass which needs to be run after global
register allocation pass.
I have read LLVM documentation and blogs and able to write simple pass
which will is invoked through opt command line.
However, I could able to find any blogs or document to explains clear steps
for writing MachineFunctionPass.
Please suggest some documents or blogs which will help me