HomeSort by relevance Sort by last modified time
    Searched refs:inst (Results 1 - 25 of 1129) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
nops.s 2 .inst 0x0320f000
3 .inst 0x7320f000
4 .inst 0x7320d700
inst-po-2.s 7 .inst .L1
10 .inst.w 1
11 .inst.n 1
14 .inst 0xf000
15 .inst.n 1<<31
mask_1.s 2 .inst 0xfe011a10 @ mcr2 10, 0, r1, cr1, cr0, {0} <UNPREDICTABLE>
3 .inst 0xfe011b10 @ mcr2 11, 0, r1, cr1, cr0, {0} <UNPREDICTABLE>
4 .inst 0xfe811a10 @ mcr2 10, 4, r1, cr1, cr0, {0} <UNPREDICTABLE>
5 .inst 0xfe811b10 @ mcr2 11, 4, r1, cr1, cr0, {0} <UNPREDICTABLE>
6 .inst 0xfe811a50 @ mcr2 10, 4, r1, cr1, cr0, {2} <UNPREDICTABLE>
7 .inst 0xfe811b50 @ mcr2 11, 4, r1, cr1, cr0, {2} <UNPREDICTABLE>
8 .inst 0xfefb0ae0 @ <UNDEFINED> instruction: 0xfefb0ae0
9 .inst 0xfefb0be0 @ <UNDEFINED> instruction: 0xfefb0be0
10 .inst 0xfefb0ae0 @ <UNDEFINED> instruction: 0xfefb0ae0
11 .inst 0xfefb0be0 @ <UNDEFINED> instruction: 0xfefb0be
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
inst-directive.s 0 // inst-directive.s Test file for AArch64 .inst directive.
5 .inst 0x3619194c
codealign_1.s 3 .inst 0xd503201f
  /external/llvm/test/MC/AArch64/
inst-directive-diagnostic.s 9 .inst
12 .inst 0x5e104020,
15 .inst .Label
18 .inst 0x5e104020 0x5e104020
inst-directive.s 13 .section .inst.aarch64_inst
19 .inst 0x5e104020
25 // CHECK-ASM: .inst 0x5e104020
28 // CHECK-OBJ: Name: .inst.aarch64_inst
33 // CHECK-SYMS-NOT: 0000000000000000 .inst.aarch64_inst 00000000 $d
34 // CHECK-SYMS: 0000000000000000 .inst.aarch64_inst 00000000 $x
35 // CHECK-SYMS-NOT: 0000000000000000 .inst.aarch64_inst 00000000 $d
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
isac_float_type.h 21 static inline int16_t Control(instance_type* inst,
24 return WebRtcIsac_Control(inst, rate, framesize);
26 static inline int16_t ControlBwe(instance_type* inst,
30 return WebRtcIsac_ControlBwe(inst, rate_bps, frame_size_ms,
33 static inline int16_t Create(instance_type** inst) {
34 return WebRtcIsac_Create(inst);
36 static inline int DecodeInternal(instance_type* inst,
41 return WebRtcIsac_Decode(inst, encoded, len, decoded, speech_type);
43 static inline size_t DecodePlc(instance_type* inst,
46 return WebRtcIsac_DecodePlc(inst, decoded, num_lost_frames)
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_asm.c 36 check_uniforms(const struct etna_inst *inst)
43 const struct etna_inst_src *src = &inst->src[i];
62 etna_assemble(uint32_t *out, const struct etna_inst *inst)
65 if (inst->imm && inst->src[2].use)
68 if (!check_uniforms(inst))
71 out[0] = VIV_ISA_WORD_0_OPCODE(inst->opcode) |
72 VIV_ISA_WORD_0_COND(inst->cond) |
73 COND(inst->sat, VIV_ISA_WORD_0_SAT) |
74 COND(inst->dst.use, VIV_ISA_WORD_0_DST_USE)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_lower_pack.cpp 35 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
36 if (inst->opcode != FS_OPCODE_PACK)
39 assert(inst->dst.file == VGRF);
40 assert(inst->saturate == false);
41 fs_reg dst = inst->dst;
43 const fs_builder ibld(this, block, inst);
44 for (unsigned i = 0; i < inst->sources; i++)
45 ibld.MOV(subscript(dst, inst->src[i].type, i), inst->src[i]);
47 inst->remove(block)
    [all...]
brw_fs_lower_d2x.cpp 35 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
36 if (inst->opcode != BRW_OPCODE_MOV)
39 if (inst->dst.type != BRW_REGISTER_TYPE_F &&
40 inst->dst.type != BRW_REGISTER_TYPE_D &&
41 inst->dst.type != BRW_REGISTER_TYPE_UD)
44 if (inst->src[0].type != BRW_REGISTER_TYPE_DF)
47 assert(inst->dst.file == VGRF);
48 assert(inst->saturate == false);
49 fs_reg dst = inst->dst;
51 const fs_builder ibld(this, block, inst);
    [all...]
brw_vec4_cmod_propagation.cpp 44 foreach_inst_in_block_reverse_safe(vec4_instruction, inst, block) {
47 if ((inst->opcode != BRW_OPCODE_AND &&
48 inst->opcode != BRW_OPCODE_CMP &&
49 inst->opcode != BRW_OPCODE_MOV) ||
50 inst->predicate != BRW_PREDICATE_NONE ||
51 !inst->dst.is_null() ||
52 inst->src[0].file != VGRF ||
53 inst->src[0].abs)
56 if (inst->opcode == BRW_OPCODE_AND &&
57 !(inst->src[1].is_one() &
    [all...]
brw_fs_cmod_propagation.cpp 57 foreach_inst_in_block_reverse_safe(fs_inst, inst, block) {
60 if ((inst->opcode != BRW_OPCODE_AND &&
61 inst->opcode != BRW_OPCODE_CMP &&
62 inst->opcode != BRW_OPCODE_MOV) ||
63 inst->predicate != BRW_PREDICATE_NONE ||
64 !inst->dst.is_null() ||
65 inst->src[0].file != VGRF ||
66 inst->src[0].abs)
76 if (inst->opcode == BRW_OPCODE_AND &&
77 !(inst->src[1].is_one() &
    [all...]
brw_fs_dead_code_eliminate.cpp 41 can_eliminate(const fs_inst *inst, BITSET_WORD *flag_live)
43 return !inst->is_control_flow() &&
44 !inst->has_side_effects() &&
45 !(flag_live[0] & inst->flags_written()) &&
46 !inst->writes_accumulator;
53 can_omit_write(const fs_inst *inst)
55 switch (inst->opcode) {
65 if (inst->opcode < 128 && inst->mlen == 0)
90 foreach_inst_in_block_reverse_safe(fs_inst, inst, block)
    [all...]
brw_fs_validate.cpp 36 dump_instruction(inst, stderr); \
44 foreach_block_and_inst (block, fs_inst, inst, cfg) {
45 if (inst->dst.file == VGRF) {
46 fsv_assert(inst->dst.offset / REG_SIZE + regs_written(inst) <=
47 alloc.sizes[inst->dst.nr]);
50 for (unsigned i = 0; i < inst->sources; i++) {
51 if (inst->src[i].file == VGRF) {
52 fsv_assert(inst->src[i].offset / REG_SIZE + regs_read(inst, i) <
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/aarch64/
unallocated-encoding.d 10 0: 0d0047de .inst 0x0d0047de ; undefined
11 4: 0d2047dd .inst 0x0d2047dd ; undefined
12 8: 0d0067dc .inst 0x0d0067dc ; undefined
13 c: 0d2067db .inst 0x0d2067db ; undefined
14 10: 0d008bde .inst 0x0d008bde ; undefined
15 14: 0d208bdd .inst 0x0d208bdd ; undefined
16 18: 0d00abdc .inst 0x0d00abdc ; undefined
17 1c: 0d20abdb .inst 0x0d20abdb ; undefined
18 20: 0d008fde .inst 0x0d008fde ; undefined
19 24: 0d208fdd .inst 0x0d208fdd ; undefine
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_algebraic.c 41 dump_from(struct vc4_compile *c, struct qinst *inst)
47 qir_dump_inst(c, inst);
52 dump_to(struct vc4_compile *c, struct qinst *inst)
58 qir_dump_inst(c, inst);
94 replace_with_mov(struct vc4_compile *c, struct qinst *inst, struct qreg arg)
96 dump_from(c, inst);
98 inst->src[0] = arg;
99 if (qir_has_implicit_tex_uniform(inst))
100 inst->src[1] = inst->src[qir_get_tex_uniform_src(inst)]
    [all...]
vc4_qpu_validate.c 28 fail_instr(uint64_t inst, const char *msg)
31 vc4_qpu_disasm(&inst, 1);
37 writes_reg(uint64_t inst, uint32_t w)
39 return (QPU_GET_FIELD(inst, QPU_WADDR_ADD) == w ||
40 QPU_GET_FIELD(inst, QPU_WADDR_MUL) == w);
44 _reads_reg(uint64_t inst, uint32_t r, bool ignore_a, bool ignore_b)
49 { QPU_GET_FIELD(inst, QPU_ADD_A) },
50 { QPU_GET_FIELD(inst, QPU_ADD_B) },
51 { QPU_GET_FIELD(inst, QPU_MUL_A) },
52 { QPU_GET_FIELD(inst, QPU_MUL_B) }
127 uint64_t inst = insts[i]; local
200 uint64_t inst = insts[i]; local
213 uint64_t inst = insts[i]; local
229 uint64_t inst = insts[i]; local
257 uint64_t inst = insts[i]; local
273 uint64_t inst = insts[i]; local
330 uint64_t inst = insts[i]; local
346 uint64_t inst = insts[i]; local
359 uint64_t inst = insts[i]; local
382 uint64_t inst = insts[i]; local
    [all...]
vc4_opt_coalesce_ff_writes.c 45 qir_for_each_inst_inorder(inst, c) {
46 for (int i = 0; i < qir_get_nsrc(inst); i++) {
47 if (inst->src[i].file == QFILE_TEMP) {
48 uint32_t temp = inst->src[i].index;
67 struct qinst *inst = c->defs[temp]; local
68 if (!inst)
75 if (qir_is_tex(mov_inst) && qir_has_uniform_read(inst))
78 if (qir_depends_on_flags(inst) || inst->sf)
81 if (qir_has_side_effects(c, inst) ||
    [all...]
vc4_opt_dead_code.c 43 dce(struct vc4_compile *c, struct qinst *inst)
47 qir_dump_inst(c, inst);
50 assert(!inst->sf);
51 qir_remove_instruction(c, inst);
55 has_nonremovable_reads(struct vc4_compile *c, struct qinst *inst)
57 for (int i = 0; i < qir_get_nsrc(inst); i++) {
58 if (inst->src[i].file == QFILE_VPM) {
59 uint32_t attr = inst->src[i].index / 4;
60 uint32_t offset = (inst->src[i].index % 4) * 4;
75 if (inst->src[i].file == QFILE_VARY &
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
isac_fix_type.h 23 static inline int16_t Control(instance_type* inst,
26 return WebRtcIsacfix_Control(inst, rate, framesize);
28 static inline int16_t ControlBwe(instance_type* inst,
32 return WebRtcIsacfix_ControlBwe(inst, rate_bps, frame_size_ms,
35 static inline int16_t Create(instance_type** inst) {
36 return WebRtcIsacfix_Create(inst);
38 static inline int DecodeInternal(instance_type* inst,
43 return WebRtcIsacfix_Decode(inst, encoded, len, decoded, speech_type);
45 static inline size_t DecodePlc(instance_type* inst,
48 return WebRtcIsacfix_DecodePlc(inst, decoded, num_lost_frames)
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/shader/
toy_optimize.c 38 struct toy_inst *inst; local
41 while ((inst = tc_next(tc)) != NULL) {
42 switch (inst->opcode) {
55 if (tdst_is_null(inst->dst) || !inst->dst.writemask) {
57 if ((inst->opcode == GEN6_OPCODE_MATH ||
58 inst->cond_modifier == GEN6_COND_NONE) &&
59 !inst->acc_wr_ctrl)
60 tc_discard_inst(tc, inst);
  /external/clang/test/Index/
cursor-ref-names.cpp 17 Sub inst; local
18 inst.func();
19 inst[1];
20 inst.operator[](1);
22 inst.Base<int>::operator[](1);
30 // CHECK: cursor-ref-names.cpp:17:9: VarDecl=inst:17:9 (Definition) Extent=[17:5 - 17:13]
35 // CHECK: cursor-ref-names.cpp:18:5: DeclRefExpr=inst:17:9 Extent=[18:5 - 18:9]
37 // CHECK: cursor-ref-names.cpp:19:5: DeclRefExpr=inst:17:9 Extent=[19:5 - 19:9]
41 // CHECK: cursor-ref-names.cpp:20:5: DeclRefExpr=inst:17:9 Extent=[20:5 - 20:9]
44 // CHECK: cursor-ref-names.cpp:22:5: DeclRefExpr=inst:17:9 Extent=[22:5 - 22:9
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/ns/
nsx_core.c 164 // if (gain <= inst->denoiseBound) {
165 // factor2 = 1.0 - 0.3 * (blim - inst->denoiseBound);
238 // sum of log2(i) from table index to inst->anaLen2 in Q5
252 // sum of log2(i)^2 from table index to inst->anaLen2 in Q2
303 static void UpdateNoiseEstimate(NoiseSuppressionFixedC* inst, int offset) {
311 tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset,
312 inst->magnLen);
314 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(
316 for (i = 0; i < inst->magnLen; i++) {
317 // inst->quantile[i]=exp(inst->lquantile[offset+i])
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog.c 65 struct rc_instruction * inst; local
76 if (writer->ReaderCount > 1 || writer->Inst->IP < inst_if->IP) {
85 for (inst = writer->Inst; inst != inst_if; inst = inst->Next) {
87 rc_get_opcode_info(inst->U.I.Opcode);
132 switch(writer->Inst->U.I.Opcode) {
157 writer->Inst->U.I.Opcode = RC_OPCODE_SUB
374 uint32_t inst; local
    [all...]

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>