mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-15 16:09:02 +00:00
4ddb4c82d7
* Fix ins sel problem, test case: void "foo" (int *%x, int *%y) begin seteq int *%x, %y ret void end git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@552 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
882 B
Makefile
42 lines
882 B
Makefile
LLC := ../tools/Debug/llc
|
|
AS := ../tools/Debug/as
|
|
LLCOPTS := -dsched t
|
|
|
|
TESTS := $(wildcard *.ll)
|
|
|
|
LLCTESTS := $(shell /bin/ls *.ll | grep -v testmemory | grep -v testswitch | grep -v sumarray | grep -v globalvars)
|
|
|
|
|
|
test all : testasmdis testopt testcodegen
|
|
@echo "All tests successfully completed!"
|
|
|
|
testasmdis : $(TESTS:%.ll=%.ll.asmdis)
|
|
@echo "All assembler/disassembler test succeeded!"
|
|
|
|
testopt : $(TESTS:%.ll=%.ll.opt)
|
|
|
|
testselect : $(LLCTESTS:%.ll=%.mc)
|
|
|
|
testsched : $(LLCTESTS:%.ll=%.mc)
|
|
|
|
testcodegen : $(LLCTESTS:%.ll=%.mc)
|
|
|
|
clean :
|
|
rm -f *.[123] *.bc *.mc core
|
|
|
|
%.asmdis: %
|
|
@echo "Running assembler/disassembler test on $<"
|
|
@./TestAsmDisasm.sh $<
|
|
|
|
%.opt: %
|
|
@echo "Running optimizier test on $<"
|
|
@./TestOptimizer.sh $<
|
|
|
|
%.bc: %.ll
|
|
$(AS) $< -f
|
|
|
|
%.mc: %.ll $(LLC) $(AS)
|
|
@echo "Generating machine instructions for $<"
|
|
$(AS) < $< | $(LLC) -dsched=t > $@
|
|
|