Home
last modified time | relevance | path

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

123

/freebsd/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/bin/pax/
H A Doptions.h65 #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 DARMWinEHPrinter.cpp1194 unsigned Index, const RuntimeFunction &RF) { in dumpUnpackedEntry() argument
1195 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked && in dumpUnpackedEntry()
1200 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpUnpackedEntry()
1205 COFF, Section, Offset + 4, RF.ExceptionInformationRVA(), XDataAddress, in dumpUnpackedEntry()
1208 if (!RF.BeginAddress && !Function) in dumpUnpackedEntry()
1210 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry()
1262 unsigned Index, const RuntimeFunction &RF) { in dumpPackedEntry() argument
1263 assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed || in dumpPackedEntry()
1264 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) && in dumpPackedEntry()
1269 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpPackedEntry()
[all …]
H A DWin64EHDumper.cpp247 const RuntimeFunction &RF) { in printRuntimeFunctionEntry() argument
249 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress)); in printRuntimeFunctionEntry()
251 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress, in printRuntimeFunctionEntry()
254 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset)); in printRuntimeFunctionEntry()
383 const RuntimeFunction &RF) { in printRuntimeFunction() argument
385 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF); in printRuntimeFunction()
390 Offset = Offset + RF.UnwindInfoOffset; in printRuntimeFunction()
393 uint64_t Address = Ctx.COFF.getImageBase() + RF.UnwindInfoOffset; in printRuntimeFunction()
397 Offset = RF.UnwindInfoOffset - XData->VirtualAddress; in printRuntimeFunction()
439 for (const auto &RF : RuntimeFunctions) { in printData() local
[all …]
H A DWin64EHDumper.h46 const RuntimeFunction &RF);
53 uint64_t SectionOffset, const RuntimeFunction &RF);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp186 bool padInstructionViaRelaxation(MCRelaxableFragment &RF,
190 bool padInstructionViaPrefix(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
193 bool padInstructionEncoding(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
788 bool X86AsmBackend::padInstructionViaPrefix(MCRelaxableFragment &RF, in padInstructionViaPrefix() argument
791 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix()
797 if (mayNeedRelaxation(RF.getOpcode(), RF.getOperands(), in padInstructionViaPrefix()
798 *RF.getSubtargetInfo())) in padInstructionViaPrefix()
801 const unsigned OldSize = RF.getContents().size(); in padInstructionViaPrefix()
808 X86_MC::emitPrefix(Emitter, RF.getInst(), Code, STI); in padInstructionViaPrefix()
826 const uint8_t Prefix = determinePaddingPrefix(RF.getInst()); in padInstructionViaPrefix()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h189 inline bool PrologueFolding(const RuntimeFunction &RF) { in PrologueFolding() argument
190 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x4); in PrologueFolding()
194 inline bool EpilogueFolding(const RuntimeFunction &RF) { in EpilogueFolding() argument
195 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x8); in EpilogueFolding()
200 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { in StackAdjustment() argument
201 uint16_t Adjustment = RF.StackAdjust(); in StackAdjustment()
210 SavedRegisterMask(const RuntimeFunction &RF, bool Prologue = true);
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.h57 auto RF = RP.get_future(); in lookup() local
59 return RF.get(); in lookup()
66 auto RF = RP.get_future(); in lookup() local
68 return RF.get(); in lookup()
H A DDylibManager.h55 auto RF = RP.get_future(); in lookupSymbols() local
58 return RF.get(); in lookupSymbols()
H A DExecutorProcessControl.h255 auto RF = RP.get_future(); in callWrapper() local
261 return RF.get(); in callWrapper()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp49 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.setContents(Code); in ReplaceInstruction()
58 RF.getFixups() = Fixups; in ReplaceInstruction()
598 auto &RF = cast<MCRelaxableFragment>(*Frags[K]); in finishLayout() local
599 MCInst Inst = RF.getInst(); in finishLayout()
602 Asm.symbols(), [&Asm, &RF, &Inst](MCSymbol const &sym) { in finishLayout()
609 Offset <= (Asm.getFragmentOffset(RF) + PacketSizeBytes); in finishLayout()
625 Context, *MCII, *RF.getSubtargetInfo(), Inst, in finishLayout()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp695 const RuntimeFunction &RF) { in printRuntimeFunction() argument
696 if (!RF.StartAddress) in printRuntimeFunction()
700 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
702 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
704 static_cast<uint32_t>(RF.UnwindInfoOffset)); in printRuntimeFunction()
706 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction()
718 const RuntimeFunction &RF, in printRuntimeFunctionRels() argument
726 RF.StartAddress); in printRuntimeFunctionRels()
733 RF.EndAddress); in printRuntimeFunctionRels()
740 RF.UnwindInfoOffset); in printRuntimeFunctionRels()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dmaxim,max2175.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.
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/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp93 const MCRegisterFileDesc &RF = Info.RegisterFiles[I]; in initialize() local
94 assert(RF.NumPhysRegs && "Invalid PRF with zero physical registers!"); in initialize()
98 unsigned Length = RF.NumRegisterCostEntries; in initialize()
100 &Info.RegisterCostTable[RF.RegisterCostEntryIdx]; in initialize()
101 addRegisterFile(RF, ArrayRef<MCRegisterCostEntry>(FirstElt, Length)); in initialize()
152 void RegisterFile::addRegisterFile(const MCRegisterFileDesc &RF, in addRegisterFile() argument
160 RegisterFiles.emplace_back(RF.NumPhysRegs, RF.MaxMovesEliminatedPerCycle, in addRegisterFile()
161 RF.AllowZeroMoveEliminationOnly); in addRegisterFile()
/freebsd/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/contrib/llvm-project/llvm/lib/MC/
H A DMCExpr.cpp364 const auto *RF = dyn_cast<MCRelaxableFragment>(F); in attemptToFoldSymbolOffsetDifference() local
365 if (RF && RF->isLinkerRelaxable()) in attemptToFoldSymbolOffsetDifference()
379 } else if (auto *RF = dyn_cast<MCRelaxableFragment>(F); in attemptToFoldSymbolOffsetDifference() local
380 RF && Asm->hasFinalLayout()) { in attemptToFoldSymbolOffsetDifference()
384 Displacement += RF->getContents().size(); in attemptToFoldSymbolOffsetDifference()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp120 std::vector<const Record *> RF, in CompressPat()
123 : Source(S), Dest(D), PatReqFeatures(std::move(RF)), in CompressPat()
509 std::vector<const Record *> RF = Rec->getValueAsListOfDefs("Predicates"); in evaluateCompressPat() local
510 copy_if(RF, std::back_inserter(PatReqFeatures), [](const Record *R) { in evaluateCompressPat()
718 std::vector<const Record *> RF = in emitCompressInstEmitter() local
720 copy_if(RF, std::back_inserter(ReqFeatures), [](const Record *R) { in emitCompressInstEmitter()
/freebsd/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 |
/freebsd/crypto/openssl/test/certs/
H A Dgoodcn2-key.pem10 rP/RF/CSzFhB+KxCNbPt5fPYGOoUrfjHgc74jyqHEPsYsseDSe0O5UOLkZHaRHQX
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenSchedule.cpp1784 for (const Record *RF : Records.getAllDerivedDefinitions("RegisterFile")) { in collectRegisterFiles() local
1787 CodeGenProcModel &PM = getProcModel(RF->getValueAsDef("SchedModel")); in collectRegisterFiles()
1788 PM.RegisterFiles.emplace_back(CodeGenRegisterFile(RF->getName(), RF)); in collectRegisterFiles()
1791 RF->getValueAsInt("MaxMovesEliminatedPerCycle"); in collectRegisterFiles()
1793 RF->getValueAsBit("AllowZeroMoveEliminationOnly"); in collectRegisterFiles()
1797 CGRF.NumPhysRegs = RF->getValueAsInt("NumPhysRegs"); in collectRegisterFiles()
1799 PrintFatalError(RF->getLoc(), in collectRegisterFiles()
1803 ConstRecVec RegisterClasses = RF->getValueAsListOfDefs("RegClasses"); in collectRegisterFiles()
1804 std::vector<int64_t> RegisterCosts = RF->getValueAsListOfInts("RegCosts"); in collectRegisterFiles()
1806 RF->getValueAsListInit("AllowMoveElimination"); in collectRegisterFiles()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCallGraph.cpp125 if (Function *RF = RHS->getFunction()) in print() local
126 return LF->getName() < RF->getName(); in print()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DASTUtils.cpp59 if (auto *RF = POE->getResultExpr()) { in tryToFindPtrOrigin() local
60 E = RF; in tryToFindPtrOrigin()
/freebsd/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

123