Home
last modified time | relevance | path

Searched refs:OpcodeDecoder (Results 1 – 2 of 2) sorted by relevance

/external/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h29 class OpcodeDecoder {
36 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI); member
67 OpcodeDecoder(ScopedPrinter &SW) : SW(SW), OS(SW.getOStream()) {} in OpcodeDecoder() function
71 const OpcodeDecoder::RingEntry OpcodeDecoder::Ring[] = {
72 { 0xc0, 0x00, &OpcodeDecoder::Decode_00xxxxxx },
73 { 0xc0, 0x40, &OpcodeDecoder::Decode_01xxxxxx },
74 { 0xf0, 0x80, &OpcodeDecoder::Decode_1000iiii_iiiiiiii },
75 { 0xff, 0x9d, &OpcodeDecoder::Decode_10011101 },
76 { 0xff, 0x9f, &OpcodeDecoder::Decode_10011111 },
77 { 0xf0, 0x90, &OpcodeDecoder::Decode_1001nnnn },
[all …]
/external/llvm-project/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h27 class OpcodeDecoder {
34 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI); member
65 OpcodeDecoder(ScopedPrinter &SW) : SW(SW), OS(SW.getOStream()) {} in OpcodeDecoder() function
69 inline ArrayRef<OpcodeDecoder::RingEntry> OpcodeDecoder::ring() { in ring()
70 static const OpcodeDecoder::RingEntry Ring[] = { in ring()
71 {0xc0, 0x00, &OpcodeDecoder::Decode_00xxxxxx}, in ring()
72 {0xc0, 0x40, &OpcodeDecoder::Decode_01xxxxxx}, in ring()
73 {0xf0, 0x80, &OpcodeDecoder::Decode_1000iiii_iiiiiiii}, in ring()
74 {0xff, 0x9d, &OpcodeDecoder::Decode_10011101}, in ring()
75 {0xff, 0x9f, &OpcodeDecoder::Decode_10011111}, in ring()
[all …]