Home
last modified time | relevance | path

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

/external/vixl/src/aarch64/
Dinstructions-aarch64.h156 Instr GetInstructionBits() const { in GetInstructionBits() function
160 return GetInstructionBits();
167 int ExtractBit(int pos) const { return (GetInstructionBits() >> pos) & 1; } in ExtractBit()
173 return ExtractUnsignedBitfield32(msb, lsb, GetInstructionBits()); in ExtractBits()
190 return GetInstructionBits() & mask; in Mask()
594 instrbits_ = instr->GetInstructionBits(); in NEONFormatDecoder()
598 instrbits_ = instr->GetInstructionBits(); in NEONFormatDecoder()
604 instrbits_ = instr->GetInstructionBits(); in NEONFormatDecoder()
611 instrbits_ = instr->GetInstructionBits(); in NEONFormatDecoder()
Dcpu-features-auditor-aarch64.cc987 switch (instr->GetInstructionBits()) { in VisitSystem()
Ddisasm-aarch64.cc1999 if (instr->GetInstructionBits() == XPACLRI) { in VisitSystem()
5785 instr->GetInstructionBits(), in ProcessOutput()
Dsimulator-aarch64.cc1046 instr->GetInstructionBits()); in VisitUnimplemented()
1054 instr->GetInstructionBits()); in VisitUnallocated()
3642 if (instr->GetInstructionBits() == XPACLRI) { in VisitSystem()
/external/vixl/examples/aarch64/
Dnon-const-visitor.h49 Instr instr_bits = mutable_instr->GetInstructionBits(); in VisitAddSubShifted()