Searched refs:ExtractBit (Results 1 - 11 of 11) sorted by relevance
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 2268 if (instr->ExtractBit(10) == 0) { in Simulator() 2975 index = (instr->ExtractBit(22) << 2) | instr->ExtractBits(20, 19); in Simulator() 2991 index = instr->ExtractBit(20); in Simulator() 3017 Instr index = (instr->ExtractBit(20) << 1) | instr->ExtractBit(11); in Simulator() 3076 Instr index = (instr->ExtractBits(20, 19) << 1) | instr->ExtractBit(11); in Simulator() 3133 VectorFormat vform = (instr->ExtractBit(22) == 0) ? kFormatVnS : kFormatVnD; in Simulator() 3189 int idx_s = instr->ExtractBit(20); in Simulator() 3565 int rot = (instr->ExtractBit(10) == 0) ? 90 : 270; in Simulator() 3814 PACKey key = (instr->ExtractBit(1 in Simulator() [all...] |
H A D | instructions-aarch64.cc | 268 if (ExtractBit(14) == 0) return false; in CanTakeSVEMovprfx() 587 int index = ExtractBit(11); in GetSVEMulLongZmAndIndex() 597 index |= ExtractBit(20) << 1; in GetSVEMulLongZmAndIndex()
|
H A D | disasm-aarch64.cc | 1447 const char *suffix = (instr->ExtractBit(18) == 0) ? "'s1710" : "'u1710"; in Disassembler() 2452 if ((instr->GetNEONQ() == 0) || (instr->ExtractBit(22) == 1)) { in Disassembler() 2511 const char *form = instr->ExtractBit(30) ? "'Vd.4s, 'Vn.16" : "'Vd.2s, 'Vn.8"; in Disassembler() 2591 ((vform == kFormatS) && (instr->ExtractBit(30) == 0))) { in Disassembler() 3405 if (instr->ExtractBit(22) == 0) { in Disassembler() 3724 bool sign_extend = instr->ExtractBit(14) == 0; in Disassembler() 4070 (instr->ExtractBit(13) == 1)) in Disassembler() 4075 form = (instr->ExtractBit(13) == 0) ? "'Zd.'t, #'s1205" in Disassembler() 4087 if (instr->ExtractBit(23) == 1) { in Disassembler() 4116 const char *form = (instr->ExtractBit(2 in Disassembler() [all...] |
H A D | instructions-aarch64.h | 240 int ExtractBit(int pos) const { return (GetInstructionBits() >> pos) & 1; } in ExtractBit() function in vixl::aarch64::Instruction 241 VIXL_DEPRECATED("ExtractBit", int Bit(int pos) const) { 242 return ExtractBit(pos);
|
H A D | assembler-sve-aarch64.cc | 1578 imm_field = ExtractBit(index, 1) << 20; in SVEMulLongIndexHelper() 1583 imm_field |= ExtractBit(index, 0) << 11; in SVEMulLongIndexHelper() 7140 (ExtractBit(index, 0) << 11) | Rx<18, 16>(zm); in fmlalb() 7172 (ExtractBit(index, 0) << 11) | Rx<18, 16>(zm); in fmlalt() 7204 (ExtractBit(index, 0) << 11) | Rx<18, 16>(zm); in fmlslb() 7236 (ExtractBit(index, 0) << 11) | Rx<18, 16>(zm); in fmlslt() 8020 (ExtractBit(index, 0) << 11) | Rx<18, 16>(zm); in sqdmlalb() 8025 zm_and_idx = (ExtractBit(index, 1) << 20) | (ExtractBit(index, 0) << 11) | in sqdmlalb() 8083 (ExtractBit(inde in sqdmlalt() [all...] |
H A D | cpu-features-auditor-aarch64.cc | 911 if (instr->ExtractBit(11)) scope.Record(CPUFeatures::kNEONHalf); in VisitNEONModifiedImmediate()
|
H A D | logic-aarch64.cc | 7520 bool is_signed = instr->ExtractBit(14) == 0; 7521 bool is_ff = instr->ExtractBit(13) == 1; 7524 int scale = instr->ExtractBit(21) * msize_in_bytes_log2;
|
H A D | simulator-aarch64.h | 636 return ExtractBit(byte, bit_offset); in IsActive()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | macro-assembler-ppc.h | 836 inline void ExtractBit(Register dst, Register src, uint32_t bitNumber, in ExtractBit() function in v8::internal::TurboAssembler
|
/third_party/vixl/src/ |
H A D | utils-vixl.h | 799 inline T ExtractBit(T value, unsigned bit) { in ExtractBit() function
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | macro-assembler-s390.h | 979 inline void ExtractBit(Register dst, Register src, uint32_t bitNumber) { in ExtractBit() function in v8::internal::TurboAssembler
|
Completed in 60 milliseconds