Home
last modified time | relevance | path

Searched refs:VFPMask (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DARMWinEH.cpp22 uint32_t VFPMask = 0; in SavedRegisterMask() local
36 VFPMask |= (((1 << ((NumRegisters + 1) % 8)) - 1) << 8); in SavedRegisterMask()
44 return std::make_pair(GPRMask, VFPMask); in SavedRegisterMask()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp216 void Decoder::printVFPMask(uint32_t VFPMask) { in printVFPMask()
219 printRange(OS, VFPMask, LS, 0, 31, 'd'); in printVFPMask()
407 uint32_t VFPMask = (((1 << (High + 1)) - 1) << 8); in opcode_11100xxx()
411 printVFPMask(VFPMask); in opcode_11100xxx()
483 uint32_t VFPMask = ((1 << (End + 1 - Start)) - 1) << Start; in opcode_11110101()
487 printVFPMask(VFPMask); in opcode_11110101()
498 uint32_t VFPMask = ((1 << (End + 1 - Start)) - 1) << (16 + Start); in opcode_11110110()
502 printVFPMask(VFPMask); in opcode_11110110()
1247 uint16_t GPRMask, VFPMask; in dumpPackedEntry()
1248 std::tie(GPRMask, VFPMask) in dumpPackedEntry()
215 printVFPMask(uint32_t VFPMask) printVFPMask() argument
406 uint32_t VFPMask = (((1 << (High + 1)) - 1) << 8); opcode_11100xxx() local
482 uint32_t VFPMask = ((1 << (End + 1 - Start)) - 1) << Start; opcode_11110101() local
497 uint32_t VFPMask = ((1 << (End + 1 - Start)) - 1) << (16 + Start); opcode_11110110() local
1239 uint16_t GPRMask, VFPMask; dumpPackedEntry() local
1269 uint16_t GPRMask, VFPMask; dumpPackedEntry() local
[all...]
H A DARMEHABIPrinter.h292 inline void OpcodeDecoder::PrintRegisters(uint32_t VFPMask, StringRef Prefix) { in PrintRegisters() argument
296 if (VFPMask & (1 << RI)) { in PrintRegisters()