/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ARMWinEH.cpp | 14 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF, in SavedRegisterMask() argument 16 uint8_t NumRegisters = RF.Reg(); in SavedRegisterMask() 17 uint8_t RegistersVFP = RF.R(); in SavedRegisterMask() 18 uint8_t LinkRegister = RF.L(); in SavedRegisterMask() 19 uint8_t ChainedFrame = RF.C(); in SavedRegisterMask() 28 if (RF.Ret() != ReturnType::RT_POP) in SavedRegisterMask() 30 else if (!RF.H()) // If H == 0, we pop directly into Pc in SavedRegisterMask() 40 if ((PrologueFolding(RF) && Prologue) || (EpilogueFolding(RF) && !Prologue)) in SavedRegisterMask() 41 GPRMask |= (((1 << ((RF.StackAdjust() & 0x3) + 1)) - 1) in SavedRegisterMask() 42 << (~RF.StackAdjust() & 0x3)); in SavedRegisterMask()
|
/freebsd/bin/pax/ |
H A D | options.h | 65 #define RF 0x00000800 macro 95 #define ISLIST(x) (((x) & (RF|WF)) == 0) 96 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF) 97 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF) 98 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF)) 99 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF)) 100 #define ISWRITE(x) (((x) & (RF|WF)) == WF) 107 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF) 109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ARMWinEHPrinter.cpp | 1141 unsigned Index, const RuntimeFunction &RF) { in dumpUnpackedEntry() 1142 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked && in dumpUnpackedEntry() 1147 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpUnpackedEntry() 1152 COFF, Section, Offset + 4, RF.ExceptionInformationRVA(), XDataAddress, in dumpUnpackedEntry() 1155 if (!RF.BeginAddress && !Function) in dumpUnpackedEntry() 1157 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry() 1209 unsigned Index, const RuntimeFunction &RF) { in dumpPackedEntry() 1210 assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed || in dumpPackedEntry() 1211 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) && in dumpPackedEntry() 1216 COFF, Section, Offset, RF in dumpPackedEntry() 1133 dumpUnpackedEntry(const COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunction & RF) dumpUnpackedEntry() argument 1201 dumpPackedEntry(const object::COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunction & RF) dumpPackedEntry() argument 1300 dumpPackedARM64Entry(const object::COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunctionARM64 & RF) dumpPackedARM64Entry() argument [all...] |
H A D | Win64EHDumper.cpp | 244 const RuntimeFunction &RF) { in printRuntimeFunctionEntry() argument 246 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress)); in printRuntimeFunctionEntry() 248 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress, in printRuntimeFunctionEntry() 251 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset)); in printRuntimeFunctionEntry() 361 const RuntimeFunction &RF) { in printRuntimeFunction() argument 363 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF); in printRuntimeFunction() 368 Offset = Offset + RF.UnwindInfoOffset; in printRuntimeFunction() 371 uint64_t Address = Ctx.COFF.getImageBase() + RF.UnwindInfoOffset; in printRuntimeFunction() 375 Offset = RF.UnwindInfoOffset - XData->VirtualAddress; in printRuntimeFunction() 417 for (const auto &RF in printData() local [all...] |
H A D | Win64EHDumper.h | 46 const RuntimeFunction &RF); 52 uint64_t SectionOffset, const RuntimeFunction &RF);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ARMWinEH.h | 188 inline bool PrologueFolding(const RuntimeFunction &RF) { in PrologueFolding() argument 189 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x4); in PrologueFolding() 193 inline bool EpilogueFolding(const RuntimeFunction &RF) { in EpilogueFolding() argument 194 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x8); in EpilogueFolding() 199 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() argument 200 uint16_t Adjustment = RF.StackAdjust(); in StackAdjustment() 208 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86AsmBackend.cpp | 194 bool padInstructionViaRelaxation(MCRelaxableFragment &RF, 198 bool padInstructionViaPrefix(MCRelaxableFragment &RF, MCCodeEmitter &Emitter, 201 bool padInstructionEncoding(MCRelaxableFragment &RF, MCCodeEmitter &Emitter, 768 bool X86AsmBackend::padInstructionViaPrefix(MCRelaxableFragment &RF, in padInstructionViaPrefix() argument 771 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix() 777 if (mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in padInstructionViaPrefix() 780 const unsigned OldSize = RF.getContents().size(); in padInstructionViaPrefix() 787 X86_MC::emitPrefix(Emitter, RF.getInst(), Code, STI); in padInstructionViaPrefix() 805 const uint8_t Prefix = determinePaddingPrefix(RF.getInst()); in padInstructionViaPrefix() 809 Code.append(RF.getContents().begin(), RF.getContents().end()); in padInstructionViaPrefix() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | EPCGenericDylibManager.h | 56 auto RF = RP.get_future(); in lookup() local 58 return RF.get(); in lookup() 65 auto RF = RP.get_future(); in lookup() local 67 return RF.get(); in lookup()
|
H A D | ExecutorProcessControl.h | 296 auto RF = RP.get_future(); in lookupSymbols() local 299 return RF.get(); in lookupSymbols() 366 auto RF = RP.get_future(); in callWrapper() local 372 return RF.get(); in callWrapper()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | COFFDump.cpp | 677 const RuntimeFunction &RF) { in printRuntimeFunction() argument 678 if (!RF.StartAddress) in printRuntimeFunction() 682 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction() 684 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction() 686 static_cast<uint32_t>(RF.UnwindInfoOffset)); in printRuntimeFunction() 688 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction() 700 const RuntimeFunction &RF, in printRuntimeFunctionRels() argument 708 RF.StartAddress); in printRuntimeFunctionRels() 715 RF.EndAddress); in printRuntimeFunctionRels() 722 RF in printRuntimeFunctionRels() 762 for (const RuntimeFunction &RF : RFs) printCOFFUnwindInfo() local 767 for (const RuntimeFunction &RF : RFs) { printCOFFUnwindInfo() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonAsmBackend.cpp | 49 void ReplaceInstruction(MCCodeEmitter &E, MCRelaxableFragment &RF, in ReplaceInstruction() argument 53 E.encodeInstruction(HMB, Code, Fixups, *RF.getSubtargetInfo()); in ReplaceInstruction() 56 RF.setInst(HMB); in ReplaceInstruction() 57 RF.getContents() = Code; in ReplaceInstruction() 58 RF.getFixups() = Fixups; in ReplaceInstruction() 729 auto &RF = cast<MCRelaxableFragment>(*Frags[K]); in finishLayout() local 730 auto &Inst = const_cast<MCInst &>(RF.getInst()); in finishLayout() 738 Context, *MCII, *RF.getSubtargetInfo(), Inst, in finishLayout() 746 *RF.getSubtargetInfo(), Inst); in finishLayout() 749 ReplaceInstruction(Asm.getEmitter(), RF, Inst); in finishLayout()
|
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | max2175.txt | 1 Maxim Integrated MAX2175 RF to Bits tuner 5 RF to Bits® front-end designed for software-defined radio solutions. 9 - compatible: "maxim,max2175" for MAX2175 RF-to-bits tuner.
|
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | RegisterFile.cpp | 88 const MCRegisterFileDesc &RF = Info.RegisterFiles[I]; in initialize() local 89 assert(RF.NumPhysRegs && "Invalid PRF with zero physical registers!"); in initialize() 93 unsigned Length = RF.NumRegisterCostEntries; in initialize() 95 &Info.RegisterCostTable[RF.RegisterCostEntryIdx]; in initialize() 96 addRegisterFile(RF, ArrayRef<MCRegisterCostEntry>(FirstElt, Length)); in initialize() 147 void RegisterFile::addRegisterFile(const MCRegisterFileDesc &RF, in addRegisterFile() argument 155 RegisterFiles.emplace_back(RF.NumPhysRegs, RF.MaxMovesEliminatedPerCycle, in addRegisterFile() 156 RF.AllowZeroMoveEliminationOnly); in addRegisterFile()
|
/freebsd/sys/contrib/device-tree/Bindings/iio/frequency/ |
H A D | adf4350.txt | 55 - adi,aux-output-enable: Enables auxiliary RF output. 57 the auxiliary RF output. Default = Output of RF dividers.
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | CompressInstEmitter.cpp | 116 std::vector<Record *> RF, IndexedMap<OpData> &SourceMap, in CompressPat() 118 : Source(S), Dest(D), PatReqFeatures(RF), SourceOperandMap(SourceMap), in CompressPat() 476 std::vector<Record *> RF = Rec->getValueAsListOfDefs("Predicates"); in evaluateCompressPat() local 477 copy_if(RF, std::back_inserter(PatReqFeatures), [](Record *R) { in evaluateCompressPat() 684 std::vector<Record *> RF = Dest.TheDef->getValueAsListOfDefs("Predicates"); in emitCompressInstEmitter() local 685 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) { in emitCompressInstEmitter()
|
/freebsd/tools/tools/ath/athprom/ |
H A D | eeprom-3 | 10 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 76 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 124 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
|
H A D | eeprom-4 | 12 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 85 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 150 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
|
H A D | eeprom-5 | 13 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 99 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 | 177 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
|
/freebsd/crypto/openssl/test/certs/ |
H A D | goodcn2-key.pem | 10 rP/RF/CSzFhB+KxCNbPt5fPYGOoUrfjHgc74jyqHEPsYsseDSe0O5UOLkZHaRHQX
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | ExternalFunctions.cpp | 287 std::map<const Function *, RawFunc>::iterator RF = Fns.RawFunctions.find(F); in callExternalFunction() local 289 if (RF == Fns.RawFunctions.end()) { in callExternalFunction() 297 RawFn = RF->second; in callExternalFunction()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenSchedule.cpp | 1839 for (Record *RF : RegisterFileDefs) { in collectRegisterFiles() 1842 CodeGenProcModel &PM = getProcModel(RF->getValueAsDef("SchedModel")); in collectRegisterFiles() 1843 PM.RegisterFiles.emplace_back(CodeGenRegisterFile(RF->getName(), RF)); in collectRegisterFiles() 1846 RF->getValueAsInt("MaxMovesEliminatedPerCycle"); in collectRegisterFiles() 1848 RF->getValueAsBit("AllowZeroMoveEliminationOnly"); in collectRegisterFiles() 1852 CGRF.NumPhysRegs = RF->getValueAsInt("NumPhysRegs"); in collectRegisterFiles() 1854 PrintFatalError(RF->getLoc(), in collectRegisterFiles() 1858 RecVec RegisterClasses = RF->getValueAsListOfDefs("RegClasses"); in collectRegisterFiles() 1859 std::vector<int64_t> RegisterCosts = RF->getValueAsListOfInts("RegCosts"); in collectRegisterFiles() 1860 ListInit *MoveElimInfo = RF->getValueAsListInit("AllowMoveElimination"); in collectRegisterFiles()
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | i2c-gate.txt | 1 An i2c gate is useful to e.g. reduce the digital noise for RF tuners connected
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CallGraph.cpp | 127 if (Function *RF = RHS->getFunction()) in print() local 128 return LF->getName() < RF->getName(); in print()
|
/freebsd/sys/contrib/device-tree/Bindings/net/nfc/ |
H A D | trf7970a.txt | 17 - en2-rf-quirk: Specify that the trf7970a being used has the "EN2 RF"
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAssembler.cpp | 994 MCRelaxableFragment &RF = cast<MCRelaxableFragment>(Frag); in layout() local 995 Fixups = RF.getFixups(); in layout() 996 Contents = RF.getContents(); in layout() 997 STI = RF.getSubtargetInfo(); in layout() 998 assert(!RF.hasInstructions() || STI != nullptr); in layout()
|