HomeSort by relevance Sort by last modified time
    Searched defs:opcodep (Results 1 - 5 of 5) sorted by null

  /toolchain/binutils/binutils-2.25/opcodes/
mmix-dis.c 149 const struct mmix_opcode *opcodep = mmix_opcodes; local
155 opcodep = opcodes[opcode_part];
156 if (opcodep == NULL
157 || (opcodep->match & insn) != opcodep->match
158 || (opcodep->lose & insn) != 0)
161 for (opcodep = mmix_opcodes; opcodep->name != NULL; opcodep++)
164 if ((opcodep->match & (opcode_part << 24)) == opcode_par
250 const struct mmix_opcode *opcodep; local
    [all...]
cris-dis.c 293 const struct cris_opcode *opcodep;
296 for (opcodep = cris_opcodes;
297 opcodep->name != NULL;
298 opcodep++)
304 switch (opcodep->applicable_version)
332 switch (opcodep->applicable_version)
362 if ((opcodep->match & insn) == opcodep->match
363 && (opcodep->lose & insn) == 0
365 = cris_constraint (opcodep->args
292 const struct cris_opcode *opcodep; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-sh64.c 808 char *opcodep; local
844 opcodep = fragP->fr_opcode;
846 insn = target_big_endian ? bfd_getb32 (opcodep) : bfd_getl32 (opcodep);
883 md_number_to_chars (opcodep,
893 fix_new (opc_fragP, opcodep - opc_fragP->fr_literal, 4,
909 md_number_to_chars (opcodep,
937 fix_new (opc_fragP, opcodep - opc_fragP->fr_literal, 4,
955 md_number_to_chars (opcodep,
    [all...]
tc-cris.c 813 char *opcodep; local
840 opcodep = fragP->fr_opcode;
853 opcodep[0] = branch_disp ((target_address - address_of_var_part));
864 opcodep[0] = BRANCH_PC_LOW;
865 opcodep[1] &= 0xF0;
866 opcodep[1] |= BRANCH_INCR_HIGH;
914 opcodep[0] = BA_DWORD_OPCODE & 255;
915 opcodep[1] = (BA_DWORD_OPCODE >> 8) & 255;
943 opcodep[0] |= (offset / 2) & 0xf;
950 md_number_to_chars (opcodep,
1251 char *opcodep; local
3263 char *opcodep; local
    [all...]
tc-mmix.c 406 mmix_set_geta_branch_offset (char *opcodep, offsetT value)
411 opcodep[0] |= 1;
415 md_number_to_chars (opcodep + 2, value, 2);
421 mmix_set_jmp_offset (char *opcodep, offsetT value)
426 opcodep[0] |= 1;
430 md_number_to_chars (opcodep + 1, value, 3);
436 mmix_fill_nops (char *opcodep, int n)
441 md_number_to_chars (opcodep + i * 4, SWYM_INSN_BYTE << 24, 4);
827 /* unsigned */ char *opcodep = NULL; local
1073 opcodep = frag_more (4)
2296 char *opcodep; local
    [all...]

Completed in 2698 milliseconds