Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4c9fca9

Browse filesBrowse files
author
Dan Gohman
committed
Remove the Alpha backend.
llvm-svn: 143164
1 parent f211416 commit 4c9fca9
Copy full SHA for 4c9fca9

File tree

Expand file treeCollapse file tree

98 files changed

+12
-6266
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

98 files changed

+12
-6266
lines changed
Open diff view settings
Collapse file

‎llvm/CMakeLists.txt‎

Copy file name to clipboardExpand all lines: llvm/CMakeLists.txt
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ Please clean the source directory.")
6464
endif()
6565

6666
set(LLVM_ALL_TARGETS
67-
Alpha
6867
ARM
6968
CBackend
7069
CellSPU
Collapse file

‎llvm/autoconf/configure.ac‎

Copy file name to clipboardExpand all lines: llvm/autoconf/configure.ac
+2-6Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,6 @@ AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
352352
amd64-* | x86_64-*) llvm_cv_target_arch="x86_64" ;;
353353
sparc*-*) llvm_cv_target_arch="Sparc" ;;
354354
powerpc*-*) llvm_cv_target_arch="PowerPC" ;;
355-
alpha*-*) llvm_cv_target_arch="Alpha" ;;
356355
arm*-*) llvm_cv_target_arch="ARM" ;;
357356
mips-*) llvm_cv_target_arch="Mips" ;;
358357
xcore-*) llvm_cv_target_arch="XCore" ;;
@@ -487,7 +486,6 @@ else
487486
Sparc) AC_SUBST(TARGET_HAS_JIT,0) ;;
488487
PowerPC) AC_SUBST(TARGET_HAS_JIT,1) ;;
489488
x86_64) AC_SUBST(TARGET_HAS_JIT,1) ;;
490-
Alpha) AC_SUBST(TARGET_HAS_JIT,0) ;;
491489
ARM) AC_SUBST(TARGET_HAS_JIT,1) ;;
492490
Mips) AC_SUBST(TARGET_HAS_JIT,1) ;;
493491
XCore) AC_SUBST(TARGET_HAS_JIT,0) ;;
@@ -603,21 +601,20 @@ dnl Allow specific targets to be specified for building (or not)
603601
TARGETS_TO_BUILD=""
604602
AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
605603
[Build specific host targets: all or target1,target2,... Valid targets are:
606-
host, x86, x86_64, sparc, powerpc, alpha, arm, mips, spu,
604+
host, x86, x86_64, sparc, powerpc, arm, mips, spu,
607605
xcore, msp430, ptx, cbe, and cpp (default=all)]),,
608606
enableval=all)
609607
if test "$enableval" = host-only ; then
610608
enableval=host
611609
fi
612610
case "$enableval" in
613-
all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU XCore MSP430 CBackend CppBackend MBlaze PTX" ;;
611+
all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CBackend CppBackend MBlaze PTX" ;;
614612
*)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
615613
case "$a_target" in
616614
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
617615
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
618616
sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
619617
powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
620-
alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
621618
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
622619
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
623620
spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
@@ -632,7 +629,6 @@ case "$enableval" in
632629
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
633630
Sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
634631
PowerPC) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
635-
Alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
636632
ARM) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
637633
Mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
638634
MBlaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
Collapse file

‎llvm/cmake/config-ix.cmake‎

Copy file name to clipboardExpand all lines: llvm/cmake/config-ix.cmake
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,6 @@ elseif (LLVM_NATIVE_ARCH MATCHES "sparc")
309309
set(LLVM_NATIVE_ARCH Sparc)
310310
elseif (LLVM_NATIVE_ARCH MATCHES "powerpc")
311311
set(LLVM_NATIVE_ARCH PowerPC)
312-
elseif (LLVM_NATIVE_ARCH MATCHES "alpha")
313-
set(LLVM_NATIVE_ARCH Alpha)
314312
elseif (LLVM_NATIVE_ARCH MATCHES "arm")
315313
set(LLVM_NATIVE_ARCH ARM)
316314
elseif (LLVM_NATIVE_ARCH MATCHES "mips")
Collapse file

‎llvm/configure‎

Copy file name to clipboardExpand all lines: llvm/configure
+2-7Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ Optional Features:
14151415
(default is YES)
14161416
--enable-targets Build specific host targets: all or
14171417
target1,target2,... Valid targets are: host, x86,
1418-
x86_64, sparc, powerpc, alpha, arm, mips, spu,
1418+
x86_64, sparc, powerpc, arm, mips, spu,
14191419
xcore, msp430, ptx, cbe, and cpp (default=all)
14201420
--enable-cbe-printf-a Enable C Backend output with hex floating point via
14211421
%a (default is YES)
@@ -3874,7 +3874,6 @@ else
38743874
amd64-* | x86_64-*) llvm_cv_target_arch="x86_64" ;;
38753875
sparc*-*) llvm_cv_target_arch="Sparc" ;;
38763876
powerpc*-*) llvm_cv_target_arch="PowerPC" ;;
3877-
alpha*-*) llvm_cv_target_arch="Alpha" ;;
38783877
arm*-*) llvm_cv_target_arch="ARM" ;;
38793878
mips-*) llvm_cv_target_arch="Mips" ;;
38803879
xcore-*) llvm_cv_target_arch="XCore" ;;
@@ -5071,8 +5070,6 @@ else
50715070
PowerPC) TARGET_HAS_JIT=1
50725071
;;
50735072
x86_64) TARGET_HAS_JIT=1
5074-
;;
5075-
Alpha) TARGET_HAS_JIT=0
50765073
;;
50775074
ARM) TARGET_HAS_JIT=1
50785075
;;
@@ -5270,14 +5267,13 @@ if test "$enableval" = host-only ; then
52705267
enableval=host
52715268
fi
52725269
case "$enableval" in
5273-
all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU XCore MSP430 CBackend CppBackend MBlaze PTX" ;;
5270+
all) TARGETS_TO_BUILD="X86 Sparc PowerPC ARM Mips CellSPU XCore MSP430 CBackend CppBackend MBlaze PTX" ;;
52745271
*)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
52755272
case "$a_target" in
52765273
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
52775274
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
52785275
sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
52795276
powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
5280-
alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
52815277
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
52825278
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
52835279
spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
@@ -5292,7 +5288,6 @@ case "$enableval" in
52925288
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
52935289
Sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
52945290
PowerPC) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
5295-
Alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
52965291
ARM) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
52975292
Mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
52985293
MBlaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
Collapse file

‎llvm/docs/CMake.html‎

Copy file name to clipboardExpand all lines: llvm/docs/CMake.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ <h3>
249249
<dd>Semicolon-separated list of targets to build, or <i>all</i> for
250250
building all targets. Case-sensitive. For Visual C++ defaults
251251
to <i>X86</i>. On the other cases defaults to <i>all</i>. Example:
252-
<i>-DLLVM_TARGETS_TO_BUILD="X86;PowerPC;Alpha"</i>.</dd>
252+
<i>-DLLVM_TARGETS_TO_BUILD="X86;PowerPC"</i>.</dd>
253253

254254
<dt><b>LLVM_BUILD_TOOLS</b>:BOOL</dt>
255255
<dd>Build LLVM tools. Defaults to ON. Targets for building each tool
Collapse file

‎llvm/docs/CodeGenerator.html‎

Copy file name to clipboardExpand all lines: llvm/docs/CodeGenerator.html
-8Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2208,7 +2208,6 @@ <h3>
22082208
<tr>
22092209
<th>Feature</th>
22102210
<th>ARM</th>
2211-
<th>Alpha</th>
22122211
<th>CellSPU</th>
22132212
<th>MBlaze</th>
22142213
<th>MSP430</th>
@@ -2223,7 +2222,6 @@ <h3>
22232222
<tr>
22242223
<td><a href="#feat_reliable">is generally reliable</a></td>
22252224
<td class="yes"></td> <!-- ARM -->
2226-
<td class="unknown"></td> <!-- Alpha -->
22272225
<td class="no"></td> <!-- CellSPU -->
22282226
<td class="no"></td> <!-- MBlaze -->
22292227
<td class="unknown"></td> <!-- MSP430 -->
@@ -2238,7 +2236,6 @@ <h3>
22382236
<tr>
22392237
<td><a href="#feat_asmparser">assembly parser</a></td>
22402238
<td class="no"></td> <!-- ARM -->
2241-
<td class="no"></td> <!-- Alpha -->
22422239
<td class="no"></td> <!-- CellSPU -->
22432240
<td class="yes"></td> <!-- MBlaze -->
22442241
<td class="no"></td> <!-- MSP430 -->
@@ -2253,7 +2250,6 @@ <h3>
22532250
<tr>
22542251
<td><a href="#feat_disassembler">disassembler</a></td>
22552252
<td class="yes"></td> <!-- ARM -->
2256-
<td class="no"></td> <!-- Alpha -->
22572253
<td class="no"></td> <!-- CellSPU -->
22582254
<td class="yes"></td> <!-- MBlaze -->
22592255
<td class="no"></td> <!-- MSP430 -->
@@ -2268,7 +2264,6 @@ <h3>
22682264
<tr>
22692265
<td><a href="#feat_inlineasm">inline asm</a></td>
22702266
<td class="yes"></td> <!-- ARM -->
2271-
<td class="unknown"></td> <!-- Alpha -->
22722267
<td class="no"></td> <!-- CellSPU -->
22732268
<td class="yes"></td> <!-- MBlaze -->
22742269
<td class="unknown"></td> <!-- MSP430 -->
@@ -2283,7 +2278,6 @@ <h3>
22832278
<tr>
22842279
<td><a href="#feat_jit">jit</a></td>
22852280
<td class="partial"><a href="#feat_jit_arm">*</a></td> <!-- ARM -->
2286-
<td class="no"></td> <!-- Alpha -->
22872281
<td class="no"></td> <!-- CellSPU -->
22882282
<td class="no"></td> <!-- MBlaze -->
22892283
<td class="unknown"></td> <!-- MSP430 -->
@@ -2298,7 +2292,6 @@ <h3>
22982292
<tr>
22992293
<td><a href="#feat_objectwrite">.o&nbsp;file writing</a></td>
23002294
<td class="no"></td> <!-- ARM -->
2301-
<td class="no"></td> <!-- Alpha -->
23022295
<td class="no"></td> <!-- CellSPU -->
23032296
<td class="yes"></td> <!-- MBlaze -->
23042297
<td class="no"></td> <!-- MSP430 -->
@@ -2313,7 +2306,6 @@ <h3>
23132306
<tr>
23142307
<td><a href="#feat_tailcall">tail calls</a></td>
23152308
<td class="yes"></td> <!-- ARM -->
2316-
<td class="unknown"></td> <!-- Alpha -->
23172309
<td class="no"></td> <!-- CellSPU -->
23182310
<td class="no"></td> <!-- MBlaze -->
23192311
<td class="unknown"></td> <!-- MSP430 -->
Collapse file

‎llvm/docs/CompilerWriterInfo.html‎

Copy file name to clipboardExpand all lines: llvm/docs/CompilerWriterInfo.html
-12Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ <h1>
2121
<ol>
2222
<li><a href="#hw">Hardware</a>
2323
<ol>
24-
<li><a href="#alpha">Alpha</a></li>
2524
<li><a href="#arm">ARM</a></li>
2625
<li><a href="#ia64">Itanium</a></li>
2726
<li><a href="#mips">MIPS</a></li>
@@ -48,17 +47,6 @@ <h2><a name="hw">Hardware</a></h2>
4847

4948
<div>
5049

51-
<!-- ======================================================================= -->
52-
<h3><a name="alpha">Alpha</a></h3>
53-
54-
<div>
55-
<ul>
56-
<li><a
57-
href="http://ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html">Alpha manuals</a>
58-
</li>
59-
</ul>
60-
</div>
61-
6250
<!-- ======================================================================= -->
6351
<h3><a name="arm">ARM</a></h3>
6452

Collapse file

‎llvm/docs/UsingLibraries.html‎

Copy file name to clipboardExpand all lines: llvm/docs/UsingLibraries.html
-10Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ <h2><a name="descriptions">Library Descriptions</a></h2>
126126
<td>Aggressive instruction selector for directed acyclic graphs</td></tr>
127127

128128
<tr><th colspan="3">Target Libraries</th></tr>
129-
<tr><td>LLVMAlpha</td><td><tt>.o</tt></td>
130-
<td>Code generation for Alpha architecture</td></tr>
131129
<tr><td>LLVMARM</td><td><tt>.o</tt></td>
132130
<td>Code generation for ARM architecture</td></tr>
133131
<tr><td>LLVMCBackend</td><td><tt>.o</tt></td>
@@ -333,14 +331,6 @@ <h3>Dependency Relationships Of Object Files</h3>
333331
<li>libLLVMSystem.a</li>
334332
<li>libLLVMTarget.a</li>
335333
</ul></dd>
336-
<dt><b>LLVMAlpha.o</b></dt><dd><ul>
337-
<li>libLLVMCodeGen.a</li>
338-
<li>libLLVMCore.a</li>
339-
<li>libLLVMSelectionDAG.a</li>
340-
<li>libLLVMSupport.a</li>
341-
<li>libLLVMSystem.a</li>
342-
<li>libLLVMTarget.a</li>
343-
</ul></dd>
344334
<dt><b>LLVMCBackend.o</b></dt><dd><ul>
345335
<li>libLLVMAnalysis.a</li>
346336
<li>libLLVMCodeGen.a</li>
Collapse file

‎llvm/include/llvm/ADT/Triple.h‎

Copy file name to clipboardExpand all lines: llvm/include/llvm/ADT/Triple.h
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ class Triple {
4343
enum ArchType {
4444
UnknownArch,
4545

46-
alpha, // Alpha: alpha
4746
arm, // ARM; arm, armv.*, xscale
4847
cellspu, // CellSPU: spu, cellspu
4948
mips, // MIPS: mips, mipsallegrex
Collapse file

‎llvm/include/llvm/Intrinsics.td‎

Copy file name to clipboardExpand all lines: llvm/include/llvm/Intrinsics.td
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,5 @@ include "llvm/IntrinsicsPowerPC.td"
443443
include "llvm/IntrinsicsX86.td"
444444
include "llvm/IntrinsicsARM.td"
445445
include "llvm/IntrinsicsCellSPU.td"
446-
include "llvm/IntrinsicsAlpha.td"
447446
include "llvm/IntrinsicsXCore.td"
448447
include "llvm/IntrinsicsPTX.td"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.