Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dns32knbsd-nat.c35 #define RF(dst, src) \ macro
52 RF (R0_REGNUM + 0, inferior_registers.r_r0); in fetch_inferior_registers()
53 RF (R0_REGNUM + 1, inferior_registers.r_r1); in fetch_inferior_registers()
54 RF (R0_REGNUM + 2, inferior_registers.r_r2); in fetch_inferior_registers()
55 RF (R0_REGNUM + 3, inferior_registers.r_r3); in fetch_inferior_registers()
56 RF (R0_REGNUM + 4, inferior_registers.r_r4); in fetch_inferior_registers()
57 RF (R0_REGNUM + 5, inferior_registers.r_r5); in fetch_inferior_registers()
58 RF (R0_REGNUM + 6, inferior_registers.r_r6); in fetch_inferior_registers()
59 RF (R0_REGNUM + 7, inferior_registers.r_r7); in fetch_inferior_registers()
61 RF (SP_REGNUM, inferior_registers.r_sp); in fetch_inferior_registers()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1133 unsigned Index, const RuntimeFunction &RF) { in dumpUnpackedEntry() argument
1134 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked && in dumpUnpackedEntry()
1139 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpUnpackedEntry()
1144 COFF, Section, Offset + 4, RF.ExceptionInformationRVA(), XDataAddress, in dumpUnpackedEntry()
1147 if (!RF.BeginAddress && !Function) in dumpUnpackedEntry()
1149 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry()
1201 unsigned Index, const RuntimeFunction &RF) { in dumpPackedEntry() argument
1202 assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed || in dumpPackedEntry()
1203 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) && in dumpPackedEntry()
1208 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpPackedEntry()
[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);
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-arm.c9543 cCL(ldfs, c100100, 2, (RF, ADDR), rd_cpaddr),
9544 cCL(ldfd, c108100, 2, (RF, ADDR), rd_cpaddr),
9545 cCL(ldfe, c500100, 2, (RF, ADDR), rd_cpaddr),
9546 cCL(ldfp, c508100, 2, (RF, ADDR), rd_cpaddr),
9548 cCL(stfs, c000100, 2, (RF, ADDR), rd_cpaddr),
9549 cCL(stfd, c008100, 2, (RF, ADDR), rd_cpaddr),
9550 cCL(stfe, c400100, 2, (RF, ADDR), rd_cpaddr),
9551 cCL(stfp, c408100, 2, (RF, ADDR), rd_cpaddr),
9553 cCL(mvfs, e008100, 2, (RF, RF_IF), rd_rm),
9554 cCL(mvfsp, e008120, 2, (RF, RF_IF), rd_rm),
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp193 bool padInstructionViaRelaxation(MCRelaxableFragment &RF,
197 bool padInstructionViaPrefix(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
200 bool padInstructionEncoding(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
773 static bool isFullyRelaxed(const MCRelaxableFragment &RF) { in isFullyRelaxed() argument
774 auto &Inst = RF.getInst(); in isFullyRelaxed()
775 auto &STI = *RF.getSubtargetInfo(); in isFullyRelaxed()
780 bool X86AsmBackend::padInstructionViaPrefix(MCRelaxableFragment &RF, in padInstructionViaPrefix() argument
783 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix()
789 if (!isFullyRelaxed(RF)) in padInstructionViaPrefix()
792 const unsigned OldSize = RF.getContents().size(); in padInstructionViaPrefix()
[all …]
/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp50 void ReplaceInstruction(MCCodeEmitter &E, MCRelaxableFragment &RF, in ReplaceInstruction() argument
55 E.encodeInstruction(HMB, VecOS, Fixups, *RF.getSubtargetInfo()); in ReplaceInstruction()
58 RF.setInst(HMB); in ReplaceInstruction()
59 RF.getContents() = Code; in ReplaceInstruction()
60 RF.getFixups() = Fixups; in ReplaceInstruction()
737 auto &RF = cast<MCRelaxableFragment>(*K); in finishLayout() local
738 auto &Inst = const_cast<MCInst &>(RF.getInst()); in finishLayout()
746 Context, *MCII, *RF.getSubtargetInfo(), Inst, in finishLayout()
754 *RF.getSubtargetInfo(), Inst); in finishLayout()
757 ReplaceInstruction(Asm.getEmitter(), RF, Inst); in finishLayout()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp667 const RuntimeFunction &RF) { in printRuntimeFunction() argument
668 if (!RF.StartAddress) in printRuntimeFunction()
672 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
674 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
676 static_cast<uint32_t>(RF.UnwindInfoOffset)); in printRuntimeFunction()
678 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction()
690 const RuntimeFunction &RF, in printRuntimeFunctionRels() argument
698 RF.StartAddress); in printRuntimeFunctionRels()
705 RF.EndAddress); in printRuntimeFunctionRels()
712 RF.UnwindInfoOffset); in printRuntimeFunctionRels()
[all …]
/openbsd-src/bin/pax/
H A Doptions.c82 #define RF 0x00000800 macro
113 #define ISLIST(x) (((x) & (RF|WF)) == 0)
114 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
115 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
116 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
117 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
118 #define ISWRITE(x) (((x) & (RF|WF)) == WF)
125 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
127 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
449 flg |= RF; in pax_options()
/openbsd-src/gnu/gcc/gcc/config/ia64/
H A Dia64-modes.def31 FRACTIONAL_FLOAT_MODE (RF, 82, 16, ieee_extended_intel_128_format);
60 ADJUST_FLOAT_FORMAT (RF, (TARGET_ILP32 && !TARGET_HPUX)
63 ADJUST_BYTESIZE (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 12 : 16);
64 ADJUST_ALIGNMENT (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 4 : 16);
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp189 WindowsResource *RF = Binary.get(); in main() local
193 ResourceEntryRef Entry = error(RF->getHeadEntry()); in main()
203 error(Parser.parse(RF, Duplicates)); in main()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp115 std::vector<Record *> RF, IndexedMap<OpData> &SourceMap, in CompressPat()
117 : Source(S), Dest(D), PatReqFeatures(RF), SourceOperandMap(SourceMap), in CompressPat()
473 std::vector<Record *> RF = Rec->getValueAsListOfDefs("Predicates"); in evaluateCompressPat() local
474 copy_if(RF, std::back_inserter(PatReqFeatures), [](Record *R) { in evaluateCompressPat()
682 std::vector<Record *> RF = Dest.TheDef->getValueAsListOfDefs("Predicates"); in emitCompressInstEmitter() local
683 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) { in emitCompressInstEmitter()
H A DCodeGenSchedule.cpp1842 for (Record *RF : RegisterFileDefs) { in collectRegisterFiles()
1845 CodeGenProcModel &PM = getProcModel(RF->getValueAsDef("SchedModel")); in collectRegisterFiles()
1846 PM.RegisterFiles.emplace_back(CodeGenRegisterFile(RF->getName(),RF)); in collectRegisterFiles()
1849 RF->getValueAsInt("MaxMovesEliminatedPerCycle"); in collectRegisterFiles()
1851 RF->getValueAsBit("AllowZeroMoveEliminationOnly"); in collectRegisterFiles()
1855 CGRF.NumPhysRegs = RF->getValueAsInt("NumPhysRegs"); in collectRegisterFiles()
1857 PrintFatalError(RF->getLoc(), in collectRegisterFiles()
1861 RecVec RegisterClasses = RF->getValueAsListOfDefs("RegClasses"); in collectRegisterFiles()
1862 std::vector<int64_t> RegisterCosts = RF->getValueAsListOfInts("RegCosts"); in collectRegisterFiles()
1863 ListInit *MoveElimInfo = RF->getValueAsListInit("AllowMoveElimination"); in collectRegisterFiles()
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D2953.crt17 nOn6zfuqRrsd62WTjRVJYQ5Q9/mWSIZauar6FMMjW/Cr8DPQ3XX8gmyw2Sj/6+RF
H A D1901.key4 eUH/yLXFltxCyfXBw1cL6udD+igJooPdDAB/RF+X/0cvyohUm5JJxbThy3ZME8ka
/openbsd-src/usr.sbin/lpr/common_source/
H A Dlp.h61 extern char *RF; /* name of fortran text filter (per job) */
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/Interpreter/
H A DInterpreter.cpp161 llvm::ArrayRef<const char *> RF = llvm::ArrayRef(ClangArgv); in create() local
162 std::unique_ptr<driver::Compilation> Compilation(Driver.BuildCompilation(RF)); in create()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp510 if (auto *RF = dyn_cast<CXXForRangeStmt>(S)) { in dataTraverseNode() local
513 TraverseStmt(RF->getInit()); in dataTraverseNode()
515 match(*RF->getLoopVariable()); in dataTraverseNode()
516 TraverseStmt(RF->getRangeInit()); in dataTraverseNode()
520 for (auto *SubStmt : RF->children()) { in dataTraverseNode()
521 if (SubStmt != RF->getBody()) in dataTraverseNode()
525 TraverseStmt(RF->getBody()); in dataTraverseNode()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DCallGraph.cpp127 if (Function *RF = RHS->getFunction()) in print() local
128 return LF->getName() < RF->getName(); in print()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCAssembler.cpp890 MCRelaxableFragment &RF = cast<MCRelaxableFragment>(Frag); in layout() local
891 Fixups = RF.getFixups(); in layout()
892 Contents = RF.getContents(); in layout()
893 STI = RF.getSubtargetInfo(); in layout()
894 assert(!RF.hasInstructions() || STI != nullptr); in layout()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h212 void addRegisterFile(const MCRegisterFileDesc &RF,

12