HomeSort by: relevance | last modified time | path
    Searched defs:RF (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp 163 llvm::ArrayRef<const char *> RF = llvm::makeArrayRef(ClangArgv);
164 std::unique_ptr<driver::Compilation> Compilation(Driver.BuildCompilation(RF));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 187 WindowsResource *RF = Binary.get();
191 ResourceEntryRef Entry = error(RF->getHeadEntry());
201 error(Parser.parse(RF, Duplicates));
  /src/bin/pax/
options.h 69 #define RF 0x000000800ULL
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
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 273 std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F);
275 if (RF == RawFunctions->end()) {
283 RawFn = RF->second;
  /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
RegisterFile.cpp 86 const MCRegisterFileDesc &RF = Info.RegisterFiles[I];
87 assert(RF.NumPhysRegs && "Invalid PRF with zero physical registers!");
91 unsigned Length = RF.NumRegisterCostEntries;
93 &Info.RegisterCostTable[RF.RegisterCostEntryIdx];
94 addRegisterFile(RF, ArrayRef<MCRegisterCostEntry>(FirstElt, Length));
140 void RegisterFile::addRegisterFile(const MCRegisterFileDesc &RF,
148 RegisterFiles.emplace_back(RF.NumPhysRegs, RF.MaxMovesEliminatedPerCycle,
149 RF.AllowZeroMoveEliminationOnly);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp 49 void ReplaceInstruction(MCCodeEmitter &E, MCRelaxableFragment &RF,
54 E.encodeInstruction(HMB, VecOS, Fixups, *RF.getSubtargetInfo());
57 RF.setInst(HMB);
58 RF.getContents() = Code;
59 RF.getFixups() = Fixups;
735 auto &RF = cast<MCRelaxableFragment>(*K);
736 auto &Inst = const_cast<MCInst &>(RF.getInst());
744 Context, *MCII, *RF.getSubtargetInfo(), Inst,
752 *RF.getSubtargetInfo(), Inst);
755 ReplaceInstruction(Asm.getEmitter(), RF, Inst)
    [all...]
  /src/usr.sbin/lpr/common_source/
common.c 94 const char *RF; /* name of fortran text filter (per job) */
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
RISCVCompressInstEmitter.cpp 106 std::vector<Record *> RF, IndexedMap<OpData> &SourceMap,
108 : Source(S), Dest(D), PatReqFeatures(RF), SourceOperandMap(SourceMap),
464 std::vector<Record *> RF = Rec->getValueAsListOfDefs("Predicates");
465 copy_if(RF, std::back_inserter(PatReqFeatures), [](Record *R) {
670 std::vector<Record *> RF = Dest.TheDef->getValueAsListOfDefs("Predicates");
671 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) {
AsmWriterEmitter.cpp 990 std::vector<Record *> RF =
992 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) {
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAssembler.cpp 900 MCRelaxableFragment &RF = cast<MCRelaxableFragment>(Frag);
901 Fixups = RF.getFixups();
902 Contents = RF.getContents();
903 STI = RF.getSubtargetInfo();
904 assert(!RF.hasInstructions() || STI != nullptr);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 198 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) {
859 auto &Inst = RF.getInst();
860 auto &STI = *RF.getSubtargetInfo();
865 bool X86AsmBackend::padInstructionViaPrefix(MCRelaxableFragment &RF,
868 if (!RF.getAllowAutoPadding())
874 if (!isFullyRelaxed(RF))
877 const unsigned OldSize = RF.getContents().size()
    [all...]
  /src/external/bsd/ntp/dist/ntpq/
ntpq.c 125 #define RF 4 /* refid (sometimes string, sometimes not) */
142 { "refid", RF },
3710 case RF:
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 2927 llvm::Value *RF = Builder.CreateExtractValue(R, I);
2928 llvm::Value *Cmp = Builder.CreateICmp(Eq, LF, RF, "memptr.cmp.rest");

Completed in 48 milliseconds