Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit 04db2a7

Browse files
committed
Remove vestiges of the C Backend from the test-suite.
Signed off by Eric Christopher. git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@154856 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 94ae8bb commit 04db2a7

File tree

10 files changed

+5
-85
lines changed

10 files changed

+5
-85
lines changed

External/skidmarks10/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ include $(LEVEL)/Makefile.config
44
PROG = skidmarks
55

66
DISABLE_JIT = 1
7-
DISABLE_CBE = 1
87

98
SourceDir := $(SKIDMARKS10_ROOT)/source
109
RUN_OPTIONS = 0 $(SKIDMARKS10_ROOT)/golden

LLVMSource/Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ $(LLVM_SOURCE_BYTECODES): \
1717
Output/%.llvm.bc: %.ll $(LLVMAS) Output/.dir
1818
$(LLVMAS) $< -f -o $@
1919

20-
all:: $(CBEOUTPUT)
21-
2220
ifdef TARGET_HAS_JIT
2321
all:: $(JITOUTPUT)
2422
endif

Makefile.programs

-13
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ BYTECODE := $(addsuffix .llvm.bc, $(PREFIXED_PROGRAMS_TO_TEST))
160160

161161
LLCCODEGEN := $(addsuffix .llc.s, $(PREFIXED_PROGRAMS_TO_TEST))
162162
LLCBETACODEGEN := $(addsuffix .llc-beta.s, $(PREFIXED_PROGRAMS_TO_TEST))
163-
CBECODEGEN := $(addsuffix .cbe, $(PREFIXED_PROGRAMS_TO_TEST))
164163

165164
# Output produced by programs run
166165
GCCOUTPUT := $(addsuffix .ll, $(addprefix Output/,$basename $(Source)))
@@ -170,7 +169,6 @@ JITOUTPUT := $(addsuffix .out-jit, $(PREFIXED_PROGRAMS_TO_TEST))
170169
JITBETAOUTPUT := $(addsuffix .out-jit-beta, $(PREFIXED_PROGRAMS_TO_TEST))
171170
LLCOUTPUT := $(addsuffix .out-llc, $(PREFIXED_PROGRAMS_TO_TEST))
172171
LLCBETAOUTPUT := $(addsuffix .out-llc-beta, $(PREFIXED_PROGRAMS_TO_TEST))
173-
CBEOUTPUT := $(addsuffix .out-cbe, $(PREFIXED_PROGRAMS_TO_TEST))
174172

175173
# Diffs of program runs vs the native program
176174
LLIDIFFS := $(addsuffix .diff-lli, $(PREFIXED_PROGRAMS_TO_TEST))
@@ -179,7 +177,6 @@ JITBETADIFFS := $(addsuffix .diff-jit-beta, $(PREFIXED_PROGRAMS_TO_TEST))
179177
LLCDIFFS := $(addsuffix .diff-llc, $(PREFIXED_PROGRAMS_TO_TEST))
180178
LLCBETADIFFS := $(addsuffix .diff-llc-beta, $(PREFIXED_PROGRAMS_TO_TEST))
181179
OPTBETADIFFS := $(addsuffix .diff-opt-beta, $(PREFIXED_PROGRAMS_TO_TEST))
182-
CBEDIFFS := $(addsuffix .diff-cbe, $(PREFIXED_PROGRAMS_TO_TEST))
183180

184181
# Profiles for the program.
185182
PROFOUTPUT := $(addsuffix .prof, $(PREFIXED_PROGRAMS_TO_TEST))
@@ -215,12 +212,6 @@ ifdef DISABLE_LLC
215212
DISABLE_LLC_DIFFS = 1
216213
endif
217214

218-
ifndef DISABLE_CBE
219-
all:: $(CBECODEGEN)
220-
else
221-
DISABLE_CBE_DIFFS = 1
222-
endif
223-
224215
ifndef DISABLE_DIFFS
225216
ifndef DISABLE_LLC_DIFFS
226217
all:: $(LLCDIFFS)
@@ -229,10 +220,6 @@ all:: $(LLCBETADIFFS)
229220
endif
230221
endif#DISABLE_LLC_DIFFS
231222

232-
ifndef DISABLE_CBE_DIFFS
233-
all:: $(CBEDIFFS)
234-
endif
235-
236223
ifdef TARGET_HAS_JIT
237224
ifndef DISABLE_JIT
238225
all:: $(JITDIFFS)

MultiSource/Applications/viterbi/dec_viterbi_F.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ void dec_viterbi_F(dvector* Metr_mem, unsigned char* history_mem, bitvector* bit
1414
#if 0
1515
/* FIXME */
1616
/* Time varies between runs giving false negatives about which run
17-
(JIT, CBE, or LLC) failed */
17+
(JIT or LLC) failed */
1818
double startTime, now, estTotal;
1919
#endif /* 0 */
2020

@@ -38,15 +38,15 @@ void dec_viterbi_F(dvector* Metr_mem, unsigned char* history_mem, bitvector* bit
3838
#if 0
3939
/* FIXME */
4040
/* Time varies between runs giving false negatives about which run
41-
(JIT, CBE, or LLC) failed */
41+
(JIT or LLC) failed */
4242
startTime = sTime();
4343
#endif /* 0 */
4444
i_punct = 0;
4545
while (i_in<bit_stream->length) {
4646
#if 0
4747
/* FIXME */
4848
/* Time varies between runs giving false negatives about which run
49-
(JIT, CBE, or LLC) failed */
49+
(JIT or LLC) failed */
5050
if (i_in && (i_in % 10000 == 0)) {
5151
now = sTime();
5252
estTotal = ((double)1.02*bit_stream->length/((double)i_in))*(now-startTime);

SingleSource/UnitTests/2005-05-11-Popcount-ffs-fls.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ int main(void) {
7373

7474
/* note: we don't test zero, because the _native_ test will get it
7575
* wrong (GCC returns garbage for ctz/clz of 0), and the nightly tester
76-
* will wrongly conclude that CBE and LLC are both failing.
76+
* will wrongly conclude that LLC is failing.
7777
*/
7878
for(i=10; i<139045193; i*=-3) {
7979
printf("LLVM: n: %d, clz(n): %d, popcount(n): %d, ctz(n): %d\n",

SingleSource/UnitTests/Integer/Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ ENABLE_LARGE_INTEGERS := 0
1616
# None of these test cases can use a native code generator because
1717
# those targets are not set up to deal with arbitrary precision
1818
# integer types. Consequently, we must disable the LLI, LLC,
19-
# LLC-BETA, and JIT test cases. This leaves the CBE which can
20-
# handle the arbitrary precision integers.
19+
# LLC-BETA, and JIT test cases.
2120

22-
DISABLE_CBE := 1
2321
DISABLE_LLC := 1
2422
DISABLE_JIT := 1
2523
ENABLE_LLI := 1

SingleSource/UnitTests/Vector/Altivec/Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ LEVEL = ../../../..
66
FP_TOLERANCE := 0.002
77
include $(LEVEL)/SingleSource/Makefile.singlesrc
88

9-
# FIXME: CBE doesn't support vectors: PR1126
10-
DISABLE_CBE=1
11-
129
TARGET_FLAGS += -maltivec -faltivec
1310
LCCFLAGS += -maltivec -faltivec

TEST.nightly.Makefile

-18
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ ifndef DISABLE_JIT
1919
REPORTS_TO_GEN += jit compile
2020
REPORT_DEPENDENCIES += $(LLI) $(LOPT)
2121
endif
22-
ifndef DISABLE_CBE
23-
REPORTS_TO_GEN += cbe compile
24-
REPORT_DEPENDENCIES += $(CBE) $(LOPT)
25-
endif
2622
ifdef ENABLE_LLCBETA
2723
REPORTS_TO_GEN += llc-beta compile
2824
REPORT_DEPENDENCIES += $(LLC) $(LOPT)
@@ -104,20 +100,6 @@ Output/%.nightly.opt-beta.report.txt: Output/%.exe-opt-beta
104100
echo "TEST-FAIL: opt-beta $(RELDIR)/$*" >> $@;\
105101
fi
106102

107-
# CBE tests
108-
$(PROGRAMS_TO_TEST:%=Output/%.nightly.cbe.report.txt): \
109-
Output/%.nightly.cbe.report.txt: Output/%.exe-cbe
110-
@echo > $@
111-
@-if test -f Output/$*.exe-cbe; then \
112-
head -n 100 Output/$*.exe-cbe >> $@; \
113-
echo "TEST-PASS: cbe $(RELDIR)/$*" >> $@;\
114-
printf "TEST-RESULT-cbe-time: " >> $@;\
115-
grep "^program" Output/$*.out-cbe.time >> $@;\
116-
echo >> $@;\
117-
else \
118-
echo "TEST-FAIL: cbe $(RELDIR)/$*" >> $@;\
119-
fi
120-
121103
# JIT tests
122104
$(PROGRAMS_TO_TEST:%=Output/%.nightly.jit.report.txt): \
123105
Output/%.nightly.jit.report.txt: Output/%.exe-jit

TEST.nightly.report

-11
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ sub FormatTime {
2020
return sprintf("%7.4f", $Time);
2121
}
2222

23-
sub GCCCBERatio {
24-
my ($Cols, $Col) = @_;
25-
my $GCC = $Cols->[$Col-6];
26-
my $CBE = $Cols->[$Col-5];
27-
return "n/a" if ($GCC eq "*" or $CBE eq "*");
28-
return sprintf("%3.2f", $GCC/$CBE) if ($GCC >= 0.1 and $CBE >= 0.1);
29-
return "-";
30-
}
31-
3223
sub GCCLLCRatio {
3324
my ($Cols, $Col) = @_;
3425
my $GCC = $Cols->[$Col-7];
@@ -77,12 +68,10 @@ $HilightColumns{17} = 1;
7768
["JIT codegen" , "TEST-RESULT-jit-comptime: .*$WallTimeRE"],
7869
[],
7970
["GCC" , 'TEST-RESULT-nat-time: program\s*([.0-9m:]+)', \&FormatTime],
80-
["CBE" , 'TEST-RESULT-cbe-time: program\s*([.0-9m:]+)', \&FormatTime],
8171
["LLC" , 'TEST-RESULT-llc-time: program\s*([.0-9m:]+)', \&FormatTime],
8272
["LLC-BETA" , 'TEST-RESULT-llc-beta-time: program\s*([.0-9m:]+)',\&FormatTime],
8373
["JIT" , 'TEST-RESULT-jit-time: program\s*([.0-9m:]+)', \&FormatTime],
8474
[],
85-
["GCC/CBE" , \&GCCCBERatio],
8675
["GCC/LLC" , \&GCCLLCRatio],
8776
["GCC/LLC-BETA" , \&GCCLLC_BETARatio],
8877
["LLC/LLC-BETA" , \&LLCLLC_BETARatio]

TEST.vtl.Makefile

-30
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,3 @@ P4_EVENTS := "-ec en='2nd Level Cache Read Misses' en='2nd-Level Cache Read Refe
1717
P3_EVENTS := "-ec en='L2 Cache Request Misses (highly correlated)'"
1818

1919
EVENTS := $(P4_EVENTS)
20-
21-
#
22-
# Generate events for LLC
23-
#
24-
#$(PROGRAMS_TO_TEST:%=test.$(TEST).%): \
25-
#test.$(TEST).%: Output/%.llc
26-
#@echo "========================================="
27-
#@echo "Running '$(TEST)' test on '$(TESTNAME)' program"
28-
#$(VERB) $(VTL) activity $* -d 50 -c sampling -o $(EVENTS) -app $<
29-
#-$(VERB) $(VTL) run $*
30-
#-$(VERB) $(VTL) view > $@
31-
#$(VERB) $(VTL) delete $* -f
32-
33-
34-
#
35-
# Generate events for CBE
36-
#
37-
$(PROGRAMS_TO_TEST:%=test.$(TEST).%): \
38-
test.$(TEST).%: Output/%.cbe
39-
@echo "========================================="
40-
@echo "Running '$(TEST)' test on '$(TESTNAME)' program"
41-
ifeq ($(RUN_OPTIONS),)
42-
$(VERB) cat $(STDIN_FILENAME) | $(VTL) activity $* -d 50 -c sampling -o $(EVENTS) -app $<
43-
else
44-
$(VERB) cat $(STDIN_FILENAME) | $(VTL) activity $* -d 50 -c sampling -o $(EVENTS) -app $<,"$(RUN_OPTIONS)"
45-
endif
46-
-$(VERB) $(VTL) run $*
47-
-$(VERB) $(VTL) view > $@
48-
$(VERB) $(VTL) delete $* -f
49-

0 commit comments

Comments
 (0)