| author | |
| committer | |
| log | c825b567b26c475e058e074e5d22af006854fab6 |
| tree | 8d91c905760ae925e4f05326dfb7b59a9160e75b |
| parent | 9848623e62d75507d94f4e4276c5e5c888d99f5d |
| signature |
These are quite old GPUs, and it is unlikely that Zig will ever be able to
target them.
See: https://en.wikipedia.org/wiki/Radeon_HD_2000_series8 files changed, 0 insertions(+), 19 deletions(-)
lib/compiler/aro/aro/target.zig-3| ... | ... | @@ -470,7 +470,6 @@ pub fn get32BitArchVariant(target: std.Target) ?std.Target { |
| 470 | 470 | .mipsel, |
| 471 | 471 | .powerpc, |
| 472 | 472 | .powerpcle, |
| 473 | .r600, | |
| 474 | 473 | .riscv32, |
| 475 | 474 | .sparc, |
| 476 | 475 | .sparcel, |
| ... | ... | @@ -527,7 +526,6 @@ pub fn get64BitArchVariant(target: std.Target) ?std.Target { |
| 527 | 526 | .lanai, |
| 528 | 527 | .m68k, |
| 529 | 528 | .msp430, |
| 530 | .r600, | |
| 531 | 529 | .shave, |
| 532 | 530 | .sparcel, |
| 533 | 531 | .spu_2, |
| ... | ... | @@ -616,7 +614,6 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 { |
| 616 | 614 | .powerpcle => "powerpcle", |
| 617 | 615 | .powerpc64 => "powerpc64", |
| 618 | 616 | .powerpc64le => "powerpc64le", |
| 619 | .r600 => "r600", | |
| 620 | 617 | .amdgcn => "amdgcn", |
| 621 | 618 | .riscv32 => "riscv32", |
| 622 | 619 | .riscv64 => "riscv64", |
lib/std/Target.zig-8| ... | ... | @@ -994,7 +994,6 @@ pub const Cpu = struct { |
| 994 | 994 | powerpcle, |
| 995 | 995 | powerpc64, |
| 996 | 996 | powerpc64le, |
| 997 | r600, | |
| 998 | 997 | amdgcn, |
| 999 | 998 | riscv32, |
| 1000 | 999 | riscv64, |
| ... | ... | @@ -1146,7 +1145,6 @@ pub const Cpu = struct { |
| 1146 | 1145 | .mips => .MIPS, |
| 1147 | 1146 | .mipsel => .MIPS_RS3_LE, |
| 1148 | 1147 | .powerpc, .powerpcle => .PPC, |
| 1149 | .r600 => .NONE, | |
| 1150 | 1148 | .riscv32 => .RISCV, |
| 1151 | 1149 | .sparc => .SPARC, |
| 1152 | 1150 | .sparcel => .SPARC, |
| ... | ... | @@ -1208,7 +1206,6 @@ pub const Cpu = struct { |
| 1208 | 1206 | .mips => .Unknown, |
| 1209 | 1207 | .mipsel => .Unknown, |
| 1210 | 1208 | .powerpc, .powerpcle => .POWERPC, |
| 1211 | .r600 => .Unknown, | |
| 1212 | 1209 | .riscv32 => .RISCV32, |
| 1213 | 1210 | .sparc => .Unknown, |
| 1214 | 1211 | .sparcel => .Unknown, |
| ... | ... | @@ -1282,7 +1279,6 @@ pub const Cpu = struct { |
| 1282 | 1279 | .tcele, |
| 1283 | 1280 | .powerpcle, |
| 1284 | 1281 | .powerpc64le, |
| 1285 | .r600, | |
| 1286 | 1282 | .riscv32, |
| 1287 | 1283 | .riscv64, |
| 1288 | 1284 | .x86, |
| ... | ... | @@ -1772,7 +1768,6 @@ pub const DynamicLinker = struct { |
| 1772 | 1768 | .hexagon, |
| 1773 | 1769 | .m68k, |
| 1774 | 1770 | .msp430, |
| 1775 | .r600, | |
| 1776 | 1771 | .amdgcn, |
| 1777 | 1772 | .tce, |
| 1778 | 1773 | .tcele, |
| ... | ... | @@ -1874,7 +1869,6 @@ pub fn ptrBitWidth_cpu_abi(cpu: Cpu, abi: Abi) u16 { |
| 1874 | 1869 | .mipsel, |
| 1875 | 1870 | .powerpc, |
| 1876 | 1871 | .powerpcle, |
| 1877 | .r600, | |
| 1878 | 1872 | .riscv32, |
| 1879 | 1873 | .sparcel, |
| 1880 | 1874 | .tce, |
| ... | ... | @@ -2436,7 +2430,6 @@ pub fn c_type_alignment(target: Target, c_type: CType) u16 { |
| 2436 | 2430 | .lanai, |
| 2437 | 2431 | .nvptx, |
| 2438 | 2432 | .nvptx64, |
| 2439 | .r600, | |
| 2440 | 2433 | .s390x, |
| 2441 | 2434 | .spir64, |
| 2442 | 2435 | .spirv64, |
| ... | ... | @@ -2560,7 +2553,6 @@ pub fn c_type_preferred_alignment(target: Target, c_type: CType) u16 { |
| 2560 | 2553 | .lanai, |
| 2561 | 2554 | .nvptx, |
| 2562 | 2555 | .nvptx64, |
| 2563 | .r600, | |
| 2564 | 2556 | .s390x, |
| 2565 | 2557 | .spir64, |
| 2566 | 2558 | .spirv64, |
src/Type.zig-1| ... | ... | @@ -1599,7 +1599,6 @@ pub fn maxIntAlignment(target: std.Target, use_llvm: bool) u16 { |
| 1599 | 1599 | .mipsel, |
| 1600 | 1600 | .powerpc, |
| 1601 | 1601 | .powerpcle, |
| 1602 | .r600, | |
| 1603 | 1602 | .amdgcn, |
| 1604 | 1603 | .riscv32, |
| 1605 | 1604 | .sparc, |
src/Zcu.zig-1| ... | ... | @@ -3246,7 +3246,6 @@ pub fn atomicPtrAlignment( |
| 3246 | 3246 | .nvptx, |
| 3247 | 3247 | .powerpc, |
| 3248 | 3248 | .powerpcle, |
| 3249 | .r600, | |
| 3250 | 3249 | .riscv32, |
| 3251 | 3250 | .sparc, |
| 3252 | 3251 | .sparcel, |
src/codegen/llvm.zig-3| ... | ... | @@ -65,7 +65,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { |
| 65 | 65 | .powerpcle => "powerpcle", |
| 66 | 66 | .powerpc64 => "powerpc64", |
| 67 | 67 | .powerpc64le => "powerpc64le", |
| 68 | .r600 => "r600", | |
| 69 | 68 | .amdgcn => "amdgcn", |
| 70 | 69 | .riscv32 => "riscv32", |
| 71 | 70 | .riscv64 => "riscv64", |
| ... | ... | @@ -287,7 +286,6 @@ pub fn targetArch(arch_tag: std.Target.Cpu.Arch) llvm.ArchType { |
| 287 | 286 | .powerpcle => .ppcle, |
| 288 | 287 | .powerpc64 => .ppc64, |
| 289 | 288 | .powerpc64le => .ppc64le, |
| 290 | .r600 => .r600, | |
| 291 | 289 | .amdgcn => .amdgcn, |
| 292 | 290 | .riscv32 => .riscv32, |
| 293 | 291 | .riscv64 => .riscv64, |
| ... | ... | @@ -12090,7 +12088,6 @@ pub fn initializeLLVMTarget(arch: std.Target.Cpu.Arch) void { |
| 12090 | 12088 | // LLVM backends that have no initialization functions. |
| 12091 | 12089 | .tce, |
| 12092 | 12090 | .tcele, |
| 12093 | .r600, | |
| 12094 | 12091 | .amdil, |
| 12095 | 12092 | .amdil64, |
| 12096 | 12093 | .hsail, |
src/target.zig-1| ... | ... | @@ -135,7 +135,6 @@ pub fn hasLlvmSupport(target: std.Target, ofmt: std.Target.ObjectFormat) bool { |
| 135 | 135 | .powerpcle, |
| 136 | 136 | .powerpc64, |
| 137 | 137 | .powerpc64le, |
| 138 | .r600, | |
| 139 | 138 | .amdgcn, |
| 140 | 139 | .riscv32, |
| 141 | 140 | .riscv64, |
test/behavior/align.zig-1| ... | ... | @@ -94,7 +94,6 @@ test "alignment and size of structs with 128-bit fields" { |
| 94 | 94 | .mipsel, |
| 95 | 95 | .powerpc, |
| 96 | 96 | .powerpcle, |
| 97 | .r600, | |
| 98 | 97 | .amdgcn, |
| 99 | 98 | .riscv32, |
| 100 | 99 | .sparc, |
test/llvm_targets.zig-1| ... | ... | @@ -76,7 +76,6 @@ const targets = [_]std.Target.Query{ |
| 76 | 76 | .{ .cpu_arch = .powerpc64le, .os_tag = .linux, .abi = .gnu }, |
| 77 | 77 | .{ .cpu_arch = .powerpc64le, .os_tag = .linux, .abi = .musl }, |
| 78 | 78 | .{ .cpu_arch = .powerpc64le, .os_tag = .linux, .abi = .none }, |
| 79 | //.{ .cpu_arch = .r600, .os_tag = .mesa3d, .abi = .none }, | |
| 80 | 79 | .{ .cpu_arch = .riscv32, .os_tag = .freestanding, .abi = .none }, |
| 81 | 80 | .{ .cpu_arch = .riscv32, .os_tag = .linux, .abi = .none }, |
| 82 | 81 | .{ .cpu_arch = .riscv64, .os_tag = .freestanding, .abi = .none }, |