Home
last modified time | relevance | path

Searched refs:BITS (Results 1 – 4 of 4) sorted by relevance

/toolchain/binutils/binutils-2.25/opcodes/
Darc-dis.c61 #define BITS(word,s,e) (((word) >> s) & ((1 << (e + 1 - s)) - 1)) macro
62 #define OPCODE(word) (BITS ((word), 27, 31))
63 #define FIELDA(word) (BITS ((word), 21, 26))
64 #define FIELDB(word) (BITS ((word), 15, 20))
65 #define FIELDC(word) (BITS ((word), 9, 14))
68 #define FIELDD(word) ((BITS ((word), 0, 8) ^ 0x100) - 0x100)
85 state->nullifyMode = BITS (state->words[0], 5, 6); \
86 cond = BITS (state->words[0], 0, 4); \
95 cond = BITS (state->words[0], 0, 4); \
575 switch (BITS (state->words[0],1,2)) in dsmOneArcInst()
[all …]
DChangeLog-2012960 * arc-dis.c (BITS): Don't use shifts to mask off bits.
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
Dstruct.s39 .bss BITS, BIT_LEN ; 000006 0000 (len = 67)
40 BITS .tag BIT_REC label
41 add BITS.BIT7,a ; 000004 0046
/toolchain/binutils/binutils-2.25/gas/config/
Dtc-tic6x.c3773 #define MODIFY_VALUE(NEWVAL, VALUE, SHIFT, POS, BITS) \ argument
3775 (NEWVAL) &= 0xffffffffU & ~(((1U << (BITS)) - 1) << (POS)); \
3776 (NEWVAL) |= (((VALUE) >> (SHIFT)) & ((1U << (BITS)) - 1)) << (POS); \