| 2844 | } |
| 2845 | |
| 2846 | static DecodeStatus DecodeVLDST4Instruction(MCInst *Inst, unsigned Insn, |
| 2847 | uint64_t Address, const void *Decoder) |
| 2848 | { |
| 2849 | unsigned load; |
| 2850 | unsigned size = fieldFromInstruction_4(Insn, 6, 2); |
| 2851 | if (size == 3) return MCDisassembler_Fail; |
| 2852 | |
| 2853 | load = fieldFromInstruction_4(Insn, 21, 1); |
| 2854 | |
| 2855 | return load ? DecodeVLDInstruction(Inst, Insn, Address, Decoder) |
| 2856 | : DecodeVSTInstruction(Inst, Insn, Address, Decoder); |
| 2857 | } |
| 2858 | |
| 2859 | static DecodeStatus DecodeVSTInstruction(MCInst *Inst, unsigned Insn, |
| 2860 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…