Home
last modified time | relevance | path

Searched full:a (Results 1 – 25 of 7472) sorted by relevance

12345678910>>...299

/openbmc/qemu/target/openrisc/
H A Ddisas.c13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * You should have received a copy of the GNU General Public License
54 static bool trans_l_##opcode(disassemble_info *info, arg_l_##opcode *a) \
60 INSN(add, "r%d, r%d, r%d", a->d, a->a, a->b)
61 INSN(addc, "r%d, r%d, r%d", a->d, a->a, a->b)
62 INSN(sub, "r%d, r%d, r%d", a->d, a->a, a->b)
63 INSN(and, "r%d, r%d, r%d", a->d, a->a, a->b)
64 INSN(or, "r%d, r%d, r%d", a->d, a->a, a->b)
65 INSN(xor, "r%d, r%d, r%d", a->d, a->a, a->b)
66 INSN(sll, "r%d, r%d, r%d", a->d, a->a, a->b)
[all …]
H A Dtranslate.c14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * You should have received a copy of the GNU Lesser General Public
53 /* If not -1, jmp_pc contains this value and so is a direct jump. */
419 static bool trans_l_add(DisasContext *dc, arg_dab *a) in trans_l_add() argument
421 check_r0_write(dc, a->d); in trans_l_add()
422 gen_add(dc, cpu_R(dc, a->d), cpu_R(dc, a->a), cpu_R(dc, a->b)); in trans_l_add()
426 static bool trans_l_addc(DisasContext *dc, arg_dab *a) in trans_l_addc() argument
428 check_r0_write(dc, a->d); in trans_l_addc()
429 gen_addc(dc, cpu_R(dc, a->d), cpu_R(dc, a->a), cpu_R(dc, a->b)); in trans_l_addc()
433 static bool trans_l_sub(DisasContext *dc, arg_dab *a) in trans_l_sub() argument
[all …]
/openbmc/qemu/target/tricore/
H A Dcsfr.h.inc1 /* A(ll) access permitted
5 A|R|E(offset, register, feature introducing reg)
7 NOTE: PSW is handled as a special case in gen_mtcr/mfcr */
9 A(0xfe00, PCXI, TRICORE_FEATURE_13)
10 A(0xfe08, PC, TRICORE_FEATURE_13)
11 A(0xfe14, SYSCON, TRICORE_FEATURE_13)
17 A(0xfe2c, ICR, TRICORE_FEATURE_13)
18 A(0xfe38, FCX, TRICORE_FEATURE_13)
19 A(0xfe3c, LCX, TRICORE_FEATURE_13)
22 A(0xC000, DPR0_0L, TRICORE_FEATURE_13)
[all …]
/openbmc/qemu/include/qemu/
H A Dint128.h15 static inline Int128 int128_make64(uint64_t a) in int128_make64() argument
17 return a; in int128_make64()
20 static inline Int128 int128_makes64(int64_t a) in int128_makes64() argument
22 return a; in int128_makes64()
30 static inline uint64_t int128_get64(Int128 a) in int128_get64() argument
32 uint64_t r = a; in int128_get64()
33 assert(r == a); in int128_get64()
37 static inline uint64_t int128_getlo(Int128 a) in int128_getlo() argument
39 return a; in int128_getlo()
42 static inline int64_t int128_gethi(Int128 a) in int128_gethi() argument
[all …]
/openbmc/u-boot/arch/x86/include/asm/arch-baytrail/acpi/
H A Dirqroute.h9 PCI_DEV_PIRQ_ROUTE(GFX_DEV, A, A, A, A), \
10 PCI_DEV_PIRQ_ROUTE(EMMC_DEV, A, A, A, A), \
11 PCI_DEV_PIRQ_ROUTE(SDIO_DEV, A, A, A, A), \
12 PCI_DEV_PIRQ_ROUTE(SD_DEV, A, A, A, A), \
13 PCI_DEV_PIRQ_ROUTE(SATA_DEV, A, A, A, A), \
14 PCI_DEV_PIRQ_ROUTE(XHCI_DEV, A, A, A, A), \
15 PCI_DEV_PIRQ_ROUTE(LPE_DEV, A, A, A, A), \
16 PCI_DEV_PIRQ_ROUTE(MMC45_DEV, A, A, A, A), \
17 PCI_DEV_PIRQ_ROUTE(SIO1_DEV, A, B, C, D), \
18 PCI_DEV_PIRQ_ROUTE(TXE_DEV, A, A, A, A), \
[all …]
/openbmc/qemu/target/riscv/insn_trans/
H A Dtrans_rvd.c.inc14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
42 static bool trans_fld(DisasContext *ctx, arg_fld *a)
65 addr = get_address(ctx, a->rs1, a->imm);
66 tcg_gen_qemu_ld_i64(cpu_fpr[a->rd], addr, ctx->mem_idx, memop);
72 static bool trans_fsd(DisasContext *ctx, arg_fsd *a)
89 addr = get_address(ctx, a->rs1, a->imm);
90 tcg_gen_qemu_st_i64(cpu_fpr[a->rs2], addr, ctx->mem_idx, memop);
94 static bool trans_c_fld(DisasContext *ctx, arg_fld *a)
97 return trans_fld(ctx, a);
[all …]
H A Dtrans_rvzfh.c.inc12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
43 static bool trans_flh(DisasContext *ctx, arg_flh *a)
52 t0 = get_gpr(ctx, a->rs1, EXT_NONE);
53 if (a->imm) {
55 tcg_gen_addi_tl(temp, t0, a->imm);
59 dest = cpu_fpr[a->rd];
67 static bool trans_fsh(DisasContext *ctx, arg_fsh *a)
75 t0 = get_gpr(ctx, a->rs1, EXT_NONE);
76 if (a->imm) {
[all …]
H A Dtrans_rvf.c.inc14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
42 static bool trans_flw(DisasContext *ctx, arg_flw *a)
56 addr = get_address(ctx, a->rs1, a->imm);
57 dest = cpu_fpr[a->rd];
65 static bool trans_fsw(DisasContext *ctx, arg_fsw *a)
78 addr = get_address(ctx, a->rs1, a->imm);
79 tcg_gen_qemu_st_i64(cpu_fpr[a->rs2], addr, ctx->mem_idx, memop);
83 static bool trans_c_flw(DisasContext *ctx, arg_flw *a)
86 return trans_flw(ctx, a);
[all …]
/openbmc/qemu/tests/tcg/s390x/
H A Dvfminmax.c56 …{/* -inf */ "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", …
57 …{/* -Fn */ "T(b)", "T(M(a,b))", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", …
58 …{/* -0 */ "T(b)", "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", …
59 …{/* +0 */ "T(b)", "T(b)", "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", …
60 …Fn */ "T(b)", "T(b)", "T(b)", "T(b)", "T(M(a,b))", "T(a)", "T(a)", …
61 … "T(b)", "T(b)", "T(b)", "T(b)", "T(b)", "T(a)", "T(a)", "Xi: T…
62 …", "T(b)", "T(b)", "T(b)", "T(b)", "T(b)", "T(a)", "Xi: T(b*)"},
63 …{/* SNaN */ "Xi: T(a*)", "Xi: T(a*)", "Xi: T(a*)", "Xi: T(a*)", "Xi: T(a*)", "Xi: T(a*)", "Xi: T(a
72 …{/* -inf */ "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "T(b)", …
73 …{/* -Fn */ "T(b)", "T(M(a,b))", "T(a)", "T(a)", "T(a)", "T(a)", "T(b)", …
[all …]
/openbmc/qemu/target/rx/
H A Ddisas.c12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
196 static bool trans_MOV_rm(DisasContext *ctx, arg_MOV_rm *a) in trans_MOV_rm() argument
198 if (a->dsp > 0) { in trans_MOV_rm()
200 size[a->sz], a->rs, a->dsp << a->sz, a->rd); in trans_MOV_rm()
203 size[a->sz], a->rs, a->rd); in trans_MOV_rm()
209 static bool trans_MOV_mr(DisasContext *ctx, arg_MOV_mr *a) in trans_MOV_mr() argument
211 if (a->dsp > 0) { in trans_MOV_mr()
213 size[a->sz], a->dsp << a->sz, a->rs, a->rd); in trans_MOV_mr()
216 size[a->sz], a->rs, a->rd); in trans_MOV_mr()
[all …]
/openbmc/qemu/target/avr/
H A Ddisas.c14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * You should have received a copy of the GNU General Public License
104 static bool trans_##opcode(DisasContext *pctx, arg_##opcode * a) \
111 static bool trans_##opcode(DisasContext *pctx, arg_##opcode * a) \
140 INSN(ADD, "r%d, r%d", a->rd, a->rr)
141 INSN(ADC, "r%d, r%d", a->rd, a->rr)
142 INSN(ADIW, "r%d:r%d, %d", a->rd + 1, a->rd, a->imm)
143 INSN(SUB, "r%d, r%d", a->rd, a->rr)
144 INSN(SUBI, "r%d, %d", a->rd, a->imm)
145 INSN(SBC, "r%d, r%d", a->rd, a->rr)
[all …]
/openbmc/qemu/target/hexagon/
H A Dfma_emu.c11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * You should have received a copy of the GNU General Public License
93 static Int128 int128_sub_borrow(Int128 a, Int128 b, int borrow) in int128_sub_borrow() argument
95 Int128 ret = int128_sub(a, b); in int128_sub_borrow()
121 static Accum accum_norm_left(Accum a) in accum_norm_left() argument
123 a.exp--; in accum_norm_left()
124 a.mant = int128_lshift(a.mant, 1); in accum_norm_left()
125 a.mant = int128_or(a.mant, int128_make64(a.guard)); in accum_norm_left()
126 a.guard = a.round; in accum_norm_left()
127 a.round = a.sticky; in accum_norm_left()
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-sme.c13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * You should have received a copy of the GNU Lesser General Public
44 /* Resolve tile.size[rs+imm] to a host pointer. */
57 * Round the vector index down to a multiple of vec_mod if necessary. in get_tile_rowcol()
60 * several times in a loop with an increasing offset. We rely on in get_tile_rowcol()
62 * [rs + offset] to be a multiple of vec_mod. The pseudocode usually in get_tile_rowcol()
71 /* Prepare a power-of-two modulo via extraction of @len bits. */ in get_tile_rowcol()
128 /* Resolve ZArray[rs+imm] to a host pointer. */
137 * Resolve tile.size[0] to a host pointer.
151 static bool trans_ZERO(DisasContext *s, arg_ZERO *a) in trans_ZERO() argument
[all …]
/openbmc/qemu/target/ppc/translate/
H A Dfixedpoint-impl.c.inc13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * You should have received a copy of the GNU Lesser General Public
48 static bool do_ldst_D(DisasContext *ctx, arg_D *a, bool update, bool store,
51 return do_ldst(ctx, a->rt, a->ra, tcg_constant_tl(a->si), update, store, mop);
54 static bool do_ldst_PLS_D(DisasContext *ctx, arg_PLS_D *a, bool update,
58 if (!resolve_PLS_D(ctx, &d, a)) {
64 static bool do_ldst_X(DisasContext *ctx, arg_X *a, bool update,
67 return do_ldst(ctx, a->rt, a->ra, cpu_gpr[a->rb], update, store, mop);
70 static bool do_ldst_quad(DisasContext *ctx, arg_D *a, bool store, bool prefixed)
89 if (!store && unlikely(a->ra == a->rt)) {
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.25/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 24-Oct-2014 13:05 …
6 <a href="libmount-docs/">libmount-docs/</a> 24-Oct-2014 13:06 …
7 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 24-Oct-2014 13:…
8 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:53 …
9 <a href="util-linux-2.25-rc1.tar.gz">util-linux-2.25-rc1.tar.gz</a> 18-Jun-…
10 <a href="util-linux-2.25-rc1.tar.sign">util-linux-2.25-rc1.tar.sign</a> 18-Ju…
11 <a href="util-linux-2.25-rc1.tar.xz">util-linux-2.25-rc1.tar.xz</a> 18-Jun-…
12 <a href="util-linux-2.25-rc2.tar.gz">util-linux-2.25-rc2.tar.gz</a> 02-Jul-…
13 <a href="util-linux-2.25-rc2.tar.sign">util-linux-2.25-rc2.tar.sign</a> 02-Ju…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.24/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 24-Apr-2014 10:15 …
6 <a href="libmount-docs/">libmount-docs/</a> 24-Apr-2014 10:17 …
7 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:53 …
8 <a href="util-linux-2.24-rc1.tar.bz2">util-linux-2.24-rc1.tar.bz2</a> 27-Sep…
9 <a href="util-linux-2.24-rc1.tar.gz">util-linux-2.24-rc1.tar.gz</a> 27-Sep-…
10 <a href="util-linux-2.24-rc1.tar.sign">util-linux-2.24-rc1.tar.sign</a> 27-Se…
11 <a href="util-linux-2.24-rc1.tar.xz">util-linux-2.24-rc1.tar.xz</a> 27-Sep-…
12 <a href="util-linux-2.24-rc2.tar.bz2">util-linux-2.24-rc2.tar.bz2</a> 11-Oct…
13 <a href="util-linux-2.24-rc2.tar.gz">util-linux-2.24-rc2.tar.gz</a> 11-Oct-…
[all …]
/openbmc/rest-dbus/resources/
H A Djquery.min.js2a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):fu… argument
4a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&… argument
5a,b,c,d,e)}m.Tween=Za,Za.prototype={constructor:Za,init:function(a,b,c,d,e,f){this.elem=a,this.pro… argument
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.23/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 31-Jul-2013 12:35 …
6 <a href="libmount-docs/">libmount-docs/</a> 31-Jul-2013 12:39 …
7 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:53 …
8 <a href="util-linux-2.23-rc1.tar.bz2">util-linux-2.23-rc1.tar.bz2</a> 22-Mar…
9 <a href="util-linux-2.23-rc1.tar.gz">util-linux-2.23-rc1.tar.gz</a> 22-Mar-…
10 <a href="util-linux-2.23-rc1.tar.sign">util-linux-2.23-rc1.tar.sign</a> 22-Ma…
11 <a href="util-linux-2.23-rc1.tar.xz">util-linux-2.23-rc1.tar.xz</a> 22-Mar-…
12 <a href="util-linux-2.23-rc2.tar.bz2">util-linux-2.23-rc2.tar.bz2</a> 10-Apr…
13 <a href="util-linux-2.23-rc2.tar.gz">util-linux-2.23-rc2.tar.gz</a> 10-Apr-…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.28/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 07-Sep-2016 12:00 …
6 <a href="libfdisk-docs/">libfdisk-docs/</a> 07-Sep-2016 12:02 …
7 <a href="libmount-docs/">libmount-docs/</a> 07-Sep-2016 12:04 …
8 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 07-Sep-2016 12:…
9 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:55 …
10 <a href="util-linux-2.28-rc1.tar.gz">util-linux-2.28-rc1.tar.gz</a> 11-Mar-…
11 <a href="util-linux-2.28-rc1.tar.sign">util-linux-2.28-rc1.tar.sign</a> 11-Ma…
12 <a href="util-linux-2.28-rc1.tar.xz">util-linux-2.28-rc1.tar.xz</a> 11-Mar-…
13 <a href="util-linux-2.28-rc2.tar.gz">util-linux-2.28-rc2.tar.gz</a> 29-Mar-…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.33/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 09-Apr-2019 13:55 …
6 <a href="libfdisk-docs/">libfdisk-docs/</a> 09-Apr-2019 13:56 …
7 <a href="libmount-docs/">libmount-docs/</a> 09-Apr-2019 13:56 …
8 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 09-Apr-2019 13:…
9 <a href="sha256sums.asc">sha256sums.asc</a> 09-Apr-2019 14:01 …
10 <a href="util-linux-2.33-rc1.tar.gz">util-linux-2.33-rc1.tar.gz</a> 25-Sep-…
11 <a href="util-linux-2.33-rc1.tar.sign">util-linux-2.33-rc1.tar.sign</a> 25-Se…
12 <a href="util-linux-2.33-rc1.tar.xz">util-linux-2.33-rc1.tar.xz</a> 25-Sep-…
13 <a href="util-linux-2.33-rc2.tar.gz">util-linux-2.33-rc2.tar.gz</a> 19-Oct-…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.26/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 30-Apr-2015 10:38 …
6 <a href="libfdisk-docs/">libfdisk-docs/</a> 30-Apr-2015 10:40 …
7 <a href="libmount-docs/">libmount-docs/</a> 30-Apr-2015 10:42 …
8 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 30-Apr-2015 10:…
9 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:54 …
10 <a href="util-linux-2.26-rc1.tar.gz">util-linux-2.26-rc1.tar.gz</a> 14-Jan-…
11 <a href="util-linux-2.26-rc1.tar.sign">util-linux-2.26-rc1.tar.sign</a> 14-Ja…
12 <a href="util-linux-2.26-rc1.tar.xz">util-linux-2.26-rc1.tar.xz</a> 14-Jan-…
13 <a href="util-linux-2.26-rc2.tar.gz">util-linux-2.26-rc2.tar.gz</a> 04-Feb-…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.30/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 21-Sep-2017 09:49 …
6 <a href="libfdisk-docs/">libfdisk-docs/</a> 21-Sep-2017 09:50 …
7 <a href="libmount-docs/">libmount-docs/</a> 21-Sep-2017 09:50 …
8 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 21-Sep-2017 09:…
9 <a href="sha256sums.asc">sha256sums.asc</a> 21-Sep-2017 09:52 …
10 <a href="util-linux-2.30-rc1.tar.gz">util-linux-2.30-rc1.tar.gz</a> 12-May-…
11 <a href="util-linux-2.30-rc1.tar.sign">util-linux-2.30-rc1.tar.sign</a> 12-Ma…
12 <a href="util-linux-2.30-rc1.tar.xz">util-linux-2.30-rc1.tar.xz</a> 12-May-…
13 <a href="util-linux-2.30-rc2.tar.gz">util-linux-2.30-rc2.tar.gz</a> 23-May-…
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/
H A Dindex.html4 <h1>Index of /pub/linux/utils/util-linux/v2.29/</h1><hr><pre><a href="../">../</a>
5 <a href="libblkid-docs/">libblkid-docs/</a> 22-Feb-2017 15:20 …
6 <a href="libfdisk-docs/">libfdisk-docs/</a> 22-Feb-2017 15:22 …
7 <a href="libmount-docs/">libmount-docs/</a> 22-Feb-2017 15:24 …
8 <a href="libsmartcols-docs/">libsmartcols-docs/</a> 22-Feb-2017 15:…
9 <a href="sha256sums.asc">sha256sums.asc</a> 12-May-2017 10:55 …
10 <a href="util-linux-2.29-rc1.tar.gz">util-linux-2.29-rc1.tar.gz</a> 30-Sep-…
11 <a href="util-linux-2.29-rc1.tar.sign">util-linux-2.29-rc1.tar.sign</a> 30-Se…
12 <a href="util-linux-2.29-rc1.tar.xz">util-linux-2.29-rc1.tar.xz</a> 30-Sep-…
13 <a href="util-linux-2.29-rc2.tar.gz">util-linux-2.29-rc2.tar.gz</a> 19-Oct-…
[all …]
/openbmc/openbmc/poky/meta/conf/machine/include/arm/
H A Darch-armv8-3a.inc1 DEFAULTTUNE ?= "armv8-3a"
3 TUNEVALID[armv8-3a] = "Enable instructions for ARMv8.3-a"
4 TUNE_CCARGS_MARCH .= "${@bb.utils.contains('TUNE_FEATURES', 'armv8-3a', ' -march=armv8.3-a', '', d)…
6 MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'armv8-3a', 'armv8-3a:', '', d)}"
10 AVAILTUNES += "armv8-3a armv8-3a-crypto armv8-3a-crypto-sve"
11 ARMPKGARCH:tune-armv8-3a ?= "armv8-3a"
12 ARMPKGARCH:tune-armv8-3a-crypto ?= "armv8-3a"
13 ARMPKGARCH:tune-armv8-3a-crypto-sve ?= "armv8-3a"
14 TUNE_FEATURES:tune-armv8-3a = "aarch64 armv8-3a"
15 TUNE_FEATURES:tune-armv8-3a-crypto = "${TUNE_FEATURES:tune-armv8-3a} crypto"
[all …]
H A Darch-armv8-6a.inc1 DEFAULTTUNE ?= "armv8-6a"
3 TUNEVALID[armv8-6a] = "Enable instructions for ARMv8.6-a"
4 TUNE_CCARGS_MARCH .= "${@bb.utils.contains('TUNE_FEATURES', 'armv8-6a', ' -march=armv8.6-a', '', d)…
6 MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'armv8-6a', 'armv8-6a:', '', d)}"
10 AVAILTUNES += "armv8-6a armv8-6a-crypto armv8-6a-crypto-sve"
11 ARMPKGARCH:tune-armv8-6a ?= "armv8-6a"
12 ARMPKGARCH:tune-armv8-6a-crypto ?= "armv8-6a"
13 ARMPKGARCH:tune-armv8-6a-crypto-sve ?= "armv8-6a"
14 TUNE_FEATURES:tune-armv8-6a = "aarch64 armv8-6a"
15 TUNE_FEATURES:tune-armv8-6a-crypto = "${TUNE_FEATURES:tune-armv8-6a} crypto"
[all …]

12345678910>>...299