Home
last modified time | relevance | path

Searched refs:percent_op (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/binutils/dist/gas/config/
Dtc-riscv.c2244 const struct percent_op_match *percent_op) in parse_relocation() argument
2246 for ( ; percent_op->str; percent_op++) in parse_relocation()
2247 if (strncasecmp (*str + 1, percent_op->str, strlen (percent_op->str)) == 0) in parse_relocation()
2249 size_t len = 1 + strlen (percent_op->str); in parse_relocation()
2257 *reloc = percent_op->reloc; in parse_relocation()
2265 "current ABI", percent_op->str); in parse_relocation()
2294 char *str, const struct percent_op_match *percent_op) in my_getSmallExpression() argument
2321 && parse_relocation (&str, reloc, percent_op)); in my_getSmallExpression()
Dtc-mips.c14719 const struct percent_op_match *percent_op; in parse_relocation() local
14724 percent_op = mips16_percent_op; in parse_relocation()
14729 percent_op = mips_percent_op; in parse_relocation()
14734 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0) in parse_relocation()
14736 int len = strlen (percent_op[i].str); in parse_relocation()
14741 *str += strlen (percent_op[i].str); in parse_relocation()
14742 *reloc = percent_op[i].reloc; in parse_relocation()
14746 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc)) in parse_relocation()
14749 percent_op[i].str); in parse_relocation()
/netbsd/src/external/gpl3/binutils/dist/gas/
DChangeLog-02032720 (percent_op): Make constant. Record the BFD relocation code
7307 * config/tc-mips.c (percent_op): Ensure longer percent_op's are
7310 percent_op's. Code cleanup.
DChangeLog-20053521 * config/tc-mips.c (percent_op): Add %tlsgd, %tlsldm, %dtprel_hi,
/netbsd/src/external/gpl3/binutils/dist/
DChangeLog.git52839 RISC-V: drop "percent_op" parameter from my_getOpcodeExpression()