Home
last modified time | relevance | path

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

123

/freebsd-13.1/bin/pax/
H A Doptions.h68 #define RF 0x00000800 macro
98 #define ISLIST(x) (((x) & (RF|WF)) == 0)
99 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
100 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
101 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
102 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
103 #define ISWRITE(x) (((x) & (RF|WF)) == WF)
110 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
112 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DARMWinEH.cpp15 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()
29 if (PrologueFolding(RF)) in SavedRegisterMask()
30 GPRMask |= (((1 << (NumRegisters + 1)) - 1) << (~RF.StackAdjust() & 0x3)); in SavedRegisterMask()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1169 if (RF.CR() == 1) in dumpPackedARM64Entry()
1172 if (RF.RegF()) in dumpPackedARM64Entry()
1177 if (RF.CR() == 3) { in dumpPackedARM64Entry()
1191 if (RF.H()) { in dumpPackedARM64Entry()
1195 if (RF.RegI() > 0 || RF.RegF() > 0 || RF.CR() == 1) { in dumpPackedARM64Entry()
1204 int FloatRegs = RF.RegF() > 0 ? RF.RegF() + 1 : 0; in dumpPackedARM64Entry()
1210 } else if (I == 0 && RF.RegI() == 0 && RF.CR() != 1) { in dumpPackedARM64Entry()
1218 if (RF.CR() == 1 && (RF.RegI() % 2) == 0) { in dumpPackedARM64Entry()
1219 if (RF.RegI() == 0) in dumpPackedARM64Entry()
1225 if (I == (RF.RegI() + 1) / 2 - 1 && RF.RegI() % 2 == 1) { in dumpPackedARM64Entry()
[all …]
H A DWin64EHDumper.cpp206 const RuntimeFunction &RF) { in printRuntimeFunctionEntry() argument
208 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress)); in printRuntimeFunctionEntry()
210 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress)); in printRuntimeFunctionEntry()
212 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset)); in printRuntimeFunctionEntry()
322 const RuntimeFunction &RF) { in printRuntimeFunction() argument
324 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF); in printRuntimeFunction()
329 Offset = Offset + RF.UnwindInfoOffset; in printRuntimeFunction()
332 uint64_t Address = Ctx.COFF.getImageBase() + RF.UnwindInfoOffset; in printRuntimeFunction()
336 Offset = RF.UnwindInfoOffset - XData->VirtualAddress; in printRuntimeFunction()
378 for (const auto &RF : RuntimeFunctions) { in printData() local
[all …]
H A DWin64EHDumper.h46 const RuntimeFunction &RF);
52 uint64_t SectionOffset, const RuntimeFunction &RF);
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp859 auto &Inst = RF.getInst(); in isFullyRelaxed()
868 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix()
874 if (!isFullyRelaxed(RF)) in padInstructionViaPrefix()
907 Code.append(RF.getContents().begin(), RF.getContents().end()); in padInstructionViaPrefix()
908 RF.getContents() = Code; in padInstructionViaPrefix()
922 if (isFullyRelaxed(RF)) in padInstructionViaRelaxation()
927 MCInst Relaxed = RF.getInst(); in padInstructionViaRelaxation()
940 RF.setInst(Relaxed); in padInstructionViaRelaxation()
941 RF.getContents() = Code; in padInstructionViaRelaxation()
942 RF.getFixups() = Fixups; in padInstructionViaRelaxation()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp532 if (!RF.StartAddress) in printRuntimeFunction()
536 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
538 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
542 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction()
562 RF.StartAddress); in printRuntimeFunctionRels()
569 RF.EndAddress); in printRuntimeFunctionRels()
576 RF.UnwindInfoOffset); in printRuntimeFunctionRels()
590 UnwindInfoOffset += RF.UnwindInfoOffset; in printRuntimeFunctionRels()
616 for (const RuntimeFunction &RF : RFs) in printCOFFUnwindInfo() local
617 printRuntimeFunction(Obj, RF); in printCOFFUnwindInfo()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp49 void ReplaceInstruction(MCCodeEmitter &E, MCRelaxableFragment &RF, in ReplaceInstruction() argument
54 E.encodeInstruction(HMB, VecOS, Fixups, *RF.getSubtargetInfo()); in ReplaceInstruction()
57 RF.setInst(HMB); in ReplaceInstruction()
58 RF.getContents() = Code; in ReplaceInstruction()
59 RF.getFixups() = Fixups; in ReplaceInstruction()
735 auto &RF = cast<MCRelaxableFragment>(*K); in finishLayout() local
736 auto &Inst = const_cast<MCInst &>(RF.getInst()); in finishLayout()
744 Context, *MCII, *RF.getSubtargetInfo(), Inst, in finishLayout()
752 *RF.getSubtargetInfo(), Inst); in finishLayout()
755 ReplaceInstruction(Asm.getEmitter(), RF, Inst); in finishLayout()
[all …]
/freebsd-13.1/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-13.1/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-13.1/sys/mips/conf/
H A DROUTERSTATION.hints37 # GPIO 2: RF LED
44 # RF led
H A DRSPRO.hints38 # GPIO 2: RF LED
45 # RF led
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTFUtils.cpp300 auto *RF = FeatureLists[FeatureID] in addNewTensor() local
304 RF->Resize(Spec.getElementCount(), 0.0); in addNewTensor()
305 return reinterpret_cast<char *>(RF->mutable_data()); in addNewTensor()
307 auto *RF = FeatureLists[FeatureID] in addNewTensor() local
311 RF->Resize(Spec.getElementCount(), 0); in addNewTensor()
312 return reinterpret_cast<char *>(RF->mutable_data()); in addNewTensor()
H A DCallGraph.cpp132 if (Function *RF = RHS->getFunction()) in print() local
133 return LF->getName() < RF->getName(); in print()
/freebsd-13.1/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.
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVCompressInstEmitter.cpp106 std::vector<Record *> RF, IndexedMap<OpData> &SourceMap, in CompressPat()
108 : Source(S), Dest(D), PatReqFeatures(RF), SourceOperandMap(SourceMap), in CompressPat()
464 std::vector<Record *> RF = Rec->getValueAsListOfDefs("Predicates"); in evaluateCompressPat() local
465 copy_if(RF, std::back_inserter(PatReqFeatures), [](Record *R) { in evaluateCompressPat()
670 std::vector<Record *> RF = Dest.TheDef->getValueAsListOfDefs("Predicates"); in emitCompressInstEmitter() local
671 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) { in emitCompressInstEmitter()
H A DCodeGenSchedule.cpp1836 for (Record *RF : RegisterFileDefs) { in collectRegisterFiles()
1839 CodeGenProcModel &PM = getProcModel(RF->getValueAsDef("SchedModel")); in collectRegisterFiles()
1840 PM.RegisterFiles.emplace_back(CodeGenRegisterFile(RF->getName(),RF)); in collectRegisterFiles()
1843 RF->getValueAsInt("MaxMovesEliminatedPerCycle"); in collectRegisterFiles()
1845 RF->getValueAsBit("AllowZeroMoveEliminationOnly"); in collectRegisterFiles()
1849 CGRF.NumPhysRegs = RF->getValueAsInt("NumPhysRegs"); in collectRegisterFiles()
1851 PrintFatalError(RF->getLoc(), in collectRegisterFiles()
1855 RecVec RegisterClasses = RF->getValueAsListOfDefs("RegClasses"); in collectRegisterFiles()
1856 std::vector<int64_t> RegisterCosts = RF->getValueAsListOfInts("RegCosts"); in collectRegisterFiles()
1857 ListInit *MoveElimInfo = RF->getValueAsListInit("AllowMoveElimination"); in collectRegisterFiles()
/freebsd-13.1/tools/tools/ath/athprom/
H A Deeprom-311 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
77 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
125 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
H A Deeprom-413 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
86 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
151 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
H A Deeprom-514 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
100 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
178 | RF Silent $rfKill | XR5 Disable $disableXr5 | XR2 Disable $disableXr2 |
/freebsd-13.1/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp163 llvm::ArrayRef<const char *> RF = llvm::makeArrayRef(ClangArgv); in create() local
164 std::unique_ptr<driver::Compilation> Compilation(Driver.BuildCompilation(RF)); in create()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp494 if (auto *RF = dyn_cast<CXXForRangeStmt>(S)) { in dataTraverseNode() local
497 TraverseStmt(RF->getInit()); in dataTraverseNode()
499 match(*RF->getLoopVariable()); in dataTraverseNode()
500 TraverseStmt(RF->getRangeInit()); in dataTraverseNode()
504 for (auto *SubStmt : RF->children()) { in dataTraverseNode()
505 if (SubStmt != RF->getBody()) in dataTraverseNode()
509 TraverseStmt(RF->getBody()); in dataTraverseNode()
/freebsd-13.1/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-gate.txt1 An i2c gate is useful to e.g. reduce the digital noise for RF tuners connected
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp275 std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F); in callExternalFunction() local
277 if (RF == RawFunctions->end()) { in callExternalFunction()
285 RawFn = RF->second; in callExternalFunction()

123