Home
last modified time | relevance | path

Searched refs:RF (Results 1 – 25 of 69) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DARMWinEH.cpp14 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-14.2/bin/pax/
H A Doptions.h67 #define RF 0x00000800 macro
97 #define ISLIST(x) (((x) & (RF|WF)) == 0)
98 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
99 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
100 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
101 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
102 #define ISWRITE(x) (((x) & (RF|WF)) == WF)
109 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
111 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1250 if (StackAdjustment(RF) && !PrologueFolding(RF)) in dumpPackedEntry()
1270 if (RF.H()) in dumpPackedEntry()
1280 if (StackAdjustment(RF) && !EpilogueFolding(RF)) in dumpPackedEntry()
1293 if (RF.L() == 0 || RF.Ret() != ReturnType::RT_POP) in dumpPackedEntry()
1355 if (RF.CR() == 2 || RF.CR() == 3) { in dumpPackedARM64Entry()
1369 if (RF.H()) { in dumpPackedARM64Entry()
1373 if (RF.RegI() > 0 || RF.RegF() > 0 || RF.CR() == 1) { in dumpPackedARM64Entry()
1382 int FloatRegs = RF.RegF() > 0 ? RF.RegF() + 1 : 0; in dumpPackedARM64Entry()
1388 } else if (I == 0 && RF.RegI() == 0 && RF.CR() != 1) { in dumpPackedARM64Entry()
1396 if (RF.CR() == 1 && (RF.RegI() % 2) == 0) { in dumpPackedARM64Entry()
[all …]
H A DWin64EHDumper.cpp244 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 : RuntimeFunctions) { in printData() local
[all …]
H A DWin64EHDumper.h46 const RuntimeFunction &RF);
52 uint64_t SectionOffset, const RuntimeFunction &RF);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp761 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix()
767 if (mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in padInstructionViaPrefix()
799 Code.append(RF.getContents().begin(), RF.getContents().end()); in padInstructionViaPrefix()
800 RF.getContents() = Code; in padInstructionViaPrefix()
814 if (!mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in padInstructionViaRelaxation()
819 MCInst Relaxed = RF.getInst(); in padInstructionViaRelaxation()
831 RF.setInst(Relaxed); in padInstructionViaRelaxation()
832 RF.getContents() = Code; in padInstructionViaRelaxation()
833 RF.getFixups() = Fixups; in padInstructionViaRelaxation()
885 Relaxable.push_back(&RF); in finishLayout()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h188 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-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp50 void ReplaceInstruction(MCCodeEmitter &E, MCRelaxableFragment &RF, in ReplaceInstruction() argument
54 E.encodeInstruction(HMB, Code, Fixups, *RF.getSubtargetInfo()); in ReplaceInstruction()
57 RF.setInst(HMB); in ReplaceInstruction()
58 RF.getContents() = Code; in ReplaceInstruction()
59 RF.getFixups() = Fixups; in ReplaceInstruction()
736 auto &RF = cast<MCRelaxableFragment>(*K); in finishLayout() local
737 auto &Inst = const_cast<MCInst &>(RF.getInst()); in finishLayout()
745 Context, *MCII, *RF.getSubtargetInfo(), Inst, in finishLayout()
753 *RF.getSubtargetInfo(), Inst); in finishLayout()
756 ReplaceInstruction(Asm.getEmitter(), RF, Inst); in finishLayout()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp678 if (!RF.StartAddress) in printRuntimeFunction()
682 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
684 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
688 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction()
708 RF.StartAddress); in printRuntimeFunctionRels()
715 RF.EndAddress); in printRuntimeFunctionRels()
722 RF.UnwindInfoOffset); in printRuntimeFunctionRels()
736 UnwindInfoOffset += RF.UnwindInfoOffset; in printRuntimeFunctionRels()
762 for (const RuntimeFunction &RF : RFs) in printCOFFUnwindInfo() local
763 printRuntimeFunction(Obj, RF); in printCOFFUnwindInfo()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/media/i2c/
H A Dmax2175.txt1 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-14.2/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp88 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-14.2/sys/contrib/device-tree/Bindings/iio/frequency/
H A Dadf4350.txt55 - adi,aux-output-enable: Enables auxiliary RF output.
57 the auxiliary RF output. Default = Output of RF dividers.
H A Dadi,adf4350.yaml129 description: Enables auxiliary RF output.
134 Selects fundamental VCO output on the auxiliary RF output.
135 Default = Output of RF dividers.
H A Dadi,adrf6780.yaml43 RF Variable Gain Amplifier Buffer Enable. Gain is controlled by
99 VDET Output Select Enable. Expose the RF detector output to the
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp116 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()
H A DCodeGenSchedule.cpp1861 for (Record *RF : RegisterFileDefs) { in collectRegisterFiles()
1864 CodeGenProcModel &PM = getProcModel(RF->getValueAsDef("SchedModel")); in collectRegisterFiles()
1865 PM.RegisterFiles.emplace_back(CodeGenRegisterFile(RF->getName(),RF)); in collectRegisterFiles()
1868 RF->getValueAsInt("MaxMovesEliminatedPerCycle"); in collectRegisterFiles()
1870 RF->getValueAsBit("AllowZeroMoveEliminationOnly"); in collectRegisterFiles()
1874 CGRF.NumPhysRegs = RF->getValueAsInt("NumPhysRegs"); in collectRegisterFiles()
1876 PrintFatalError(RF->getLoc(), in collectRegisterFiles()
1880 RecVec RegisterClasses = RF->getValueAsListOfDefs("RegClasses"); in collectRegisterFiles()
1881 std::vector<int64_t> RegisterCosts = RF->getValueAsListOfInts("RegCosts"); in collectRegisterFiles()
1882 ListInit *MoveElimInfo = RF->getValueAsListInit("AllowMoveElimination"); in collectRegisterFiles()
/freebsd-14.2/tools/tools/ath/athprom/
H A Deeprom-310 | 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 Deeprom-412 | 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 Deeprom-513 | 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-14.2/crypto/openssl/test/certs/
H A Dgoodcn2-key.pem10 rP/RF/CSzFhB+KxCNbPt5fPYGOoUrfjHgc74jyqHEPsYsseDSe0O5UOLkZHaRHQX
/freebsd-14.2/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-gate.yaml13 An i2c gate is useful to e.g. reduce the digital noise for RF tuners connected
H A Di2c-gate.txt1 An i2c gate is useful to e.g. reduce the digital noise for RF tuners connected
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp287 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-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DCallGraph.cpp127 if (Function *RF = RHS->getFunction()) in print() local
128 return LF->getName() < RF->getName(); in print()
/freebsd-14.2/sys/contrib/device-tree/Bindings/net/nfc/
H A Dtrf7970a.txt17 - en2-rf-quirk: Specify that the trf7970a being used has the "EN2 RF"

123