Home
last modified time | relevance | path

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

1234

/netbsd-src/bin/pax/
H A Doptions.h69 #define RF 0x000000800ULL macro
102 #define ISLIST(x) (((x) & (RF|WF)) == 0)
103 #define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
104 #define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
105 #define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
106 #define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
107 #define ISWRITE(x) (((x) & (RF|WF)) == WF)
114 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
116 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CMF|CPF|CXF|CYF|CZF)
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/ia64/
H A Ddiv.md39 [(set (match_operand:RF 0 "fr_register_operand" "=f,f")
40 (if_then_else:RF (ne:RF (match_operand:CCI 1 "register_operand" "c,c")
42 (plus:RF
43 (match_operand:RF 2 "fr_reg_or_fp01_operand" "fG,fG")
44 (match_operand:RF 3 "fr_reg_or_fp01_operand" "fG,fG"))
45 (match_operand:RF 4 "fr_reg_or_0_operand" "0,H")))
54 [(set (match_operand:RF 0 "fr_register_operand" "=f,f")
55 (if_then_else:RF (ne:RF (match_operand:CCI 1 "register_operand" "c,c")
57 (minus:RF
58 (match_operand:RF 2 "fr_reg_or_fp01_operand" "fG,fG")
[all …]
H A Dia64-modes.def30 FRACTIONAL_FLOAT_MODE (RF, 82, 16, ieee_extended_intel_128_format);
59 ADJUST_FLOAT_FORMAT (RF, (TARGET_ILP32 && !TARGET_HPUX)
62 ADJUST_BYTESIZE (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 12 : 16);
63 ADJUST_ALIGNMENT (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 4 : 16);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/ia64/
H A Ddiv.md39 [(set (match_operand:RF 0 "fr_register_operand" "=f,f")
40 (if_then_else:RF (ne:RF (match_operand:CCI 1 "register_operand" "c,c")
42 (plus:RF
43 (match_operand:RF 2 "fr_reg_or_fp01_operand" "fG,fG")
44 (match_operand:RF 3 "fr_reg_or_fp01_operand" "fG,fG"))
45 (match_operand:RF 4 "fr_reg_or_0_operand" "0,H")))
54 [(set (match_operand:RF 0 "fr_register_operand" "=f,f")
55 (if_then_else:RF (ne:RF (match_operand:CCI 1 "register_operand" "c,c")
57 (minus:RF
58 (match_operand:RF 2 "fr_reg_or_fp01_operand" "fG,fG")
[all …]
H A Dia64-modes.def30 FRACTIONAL_FLOAT_MODE (RF, 82, 16, ieee_extended_intel_128_format);
59 ADJUST_FLOAT_FORMAT (RF, (TARGET_ILP32 && !TARGET_HPUX)
62 ADJUST_BYTESIZE (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 12 : 16);
63 ADJUST_ALIGNMENT (RF, (TARGET_ILP32 && !TARGET_HPUX) ? 4 : 16);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1017 unsigned Index, const RuntimeFunction &RF) { in dumpUnpackedEntry() argument
1018 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked && in dumpUnpackedEntry()
1023 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpUnpackedEntry()
1028 COFF, Section, Offset + 4, RF.ExceptionInformationRVA(), XDataAddress, in dumpUnpackedEntry()
1031 if (!RF.BeginAddress && !Function) in dumpUnpackedEntry()
1033 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry()
1087 unsigned Index, const RuntimeFunction &RF) { in dumpPackedEntry() argument
1088 assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed || in dumpPackedEntry()
1089 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) && in dumpPackedEntry()
1094 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpPackedEntry()
[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);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp198 bool padInstructionViaRelaxation(MCRelaxableFragment &RF,
202 bool padInstructionViaPrefix(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
205 bool padInstructionEncoding(MCRelaxableFragment &RF, MCCodeEmitter &Emitter,
858 static bool isFullyRelaxed(const MCRelaxableFragment &RF) { in isFullyRelaxed() argument
859 auto &Inst = RF.getInst(); in isFullyRelaxed()
860 auto &STI = *RF.getSubtargetInfo(); in isFullyRelaxed()
865 bool X86AsmBackend::padInstructionViaPrefix(MCRelaxableFragment &RF, in padInstructionViaPrefix() argument
868 if (!RF.getAllowAutoPadding()) in padInstructionViaPrefix()
874 if (!isFullyRelaxed(RF)) in padInstructionViaPrefix()
877 const unsigned OldSize = RF.getContents().size(); in padInstructionViaPrefix()
[all …]
/netbsd-src/external/apache2/llvm/dist/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);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp531 const RuntimeFunction &RF) { in printRuntimeFunction() argument
532 if (!RF.StartAddress) in printRuntimeFunction()
536 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
538 static_cast<uint32_t>(RF.EndAddress)) in printRuntimeFunction()
540 static_cast<uint32_t>(RF.UnwindInfoOffset)); in printRuntimeFunction()
542 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr)) in printRuntimeFunction()
554 const RuntimeFunction &RF, in printRuntimeFunctionRels() argument
562 RF.StartAddress); in printRuntimeFunctionRels()
569 RF.EndAddress); in printRuntimeFunctionRels()
576 RF.UnwindInfoOffset); in printRuntimeFunctionRels()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-arm.c25173 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
25174 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
25175 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
25176 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
25178 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
25179 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
25180 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
25181 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
25183 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
25184 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-arm.c25206 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
25207 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
25208 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
25209 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
25211 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
25212 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
25213 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
25214 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
25216 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
25217 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
[all …]
/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/crypto/external/bsd/heimdal/dist/cf/
H A Dw32-list-externs-from-objs.pl80 open (RF, '<', $fn) or die "Can't open response file $fn";
82 while (<RF>) {
87 close RF;
H A Dw32-def-from-dll.pl170 open (RF, '<', $fn) or die "Can't open response file $fn";
172 while (<RF>) {
177 close RF;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp86 const MCRegisterFileDesc &RF = Info.RegisterFiles[I]; in initialize() local
87 assert(RF.NumPhysRegs && "Invalid PRF with zero physical registers!"); in initialize()
91 unsigned Length = RF.NumRegisterCostEntries; in initialize()
93 &Info.RegisterCostTable[RF.RegisterCostEntryIdx]; in initialize()
94 addRegisterFile(RF, ArrayRef<MCRegisterCostEntry>(FirstElt, Length)); in initialize()
140 void RegisterFile::addRegisterFile(const MCRegisterFileDesc &RF, in addRegisterFile() argument
148 RegisterFiles.emplace_back(RF.NumPhysRegs, RF.MaxMovesEliminatedPerCycle, in addRegisterFile()
149 RF.AllowZeroMoveEliminationOnly); in addRegisterFile()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp187 WindowsResource *RF = Binary.get(); in main() local
191 ResourceEntryRef Entry = error(RF->getHeadEntry()); in main()
201 error(Parser.parse(RF, Duplicates)); in main()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nvptx/
H A Dnvptx.md240 (match_operand:SDFM 1 "general_operand" "RF,m,R"))]
558 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")]))]
669 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")
670 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")))]
687 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")
688 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")))]
704 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")]))]
720 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")]))]
791 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")))]
805 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")))]
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nvptx/
H A Dnvptx.md284 (match_operand:SDFM 1 "general_operand" "RF,m,R"))]
888 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")]))]
896 (match_operand:HF 3 "nvptx_nonmemory_operand" "RF")]))]
1028 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")
1029 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")))]
1046 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")
1047 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")))]
1097 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")])))]
1113 (match_operand:SDFM 3 "nvptx_nonmemory_operand" "RF")]))]
1205 (match_operand:SDFM 2 "nvptx_nonmemory_operand" "RF")))]
[all …]
/netbsd-src/external/gpl2/groff/dist/contrib/mm/examples/
H A DReferences84 .RF
100 .RF
159 .RF
195 .RF
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/sys/external/isc/atheros_hal/conf/
H A Dstd.ath_hal18 # Atheros AR5212/AR5312 RF Support

1234