Home
last modified time | relevance | path

Searched refs:CGI (Results 1 – 25 of 30) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAsmWriterInst.cpp49 AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned CGIIndex, in AsmWriterInst() argument
51 : CGI(&CGI), CGIIndex(CGIIndex) { in AsmWriterInst()
56 std::string AsmString = CGI.FlattenAsmStringVariants(CGI.AsmString, Variant); in AsmWriterInst()
94 CGI.TheDef->getLoc(), in AsmWriterInst()
96 CGI.TheDef->getName() + "'!"); in AsmWriterInst()
134 CGI.TheDef->getLoc(), in AsmWriterInst()
136 CGI.TheDef->getName() + "'"); in AsmWriterInst()
143 CGI.TheDef->getLoc(), in AsmWriterInst()
145 CGI.TheDef->getName() + "'"); in AsmWriterInst()
153 PrintFatalError(CGI.TheDef->getLoc(), in AsmWriterInst()
[all …]
H A DWebAssemblyDisassemblerEmitter.cpp32 auto &CGI = *NumberedInstructions[I]; in emitWebAssemblyDisassemblerTables() local
33 auto &Def = *CGI.TheDef; in emitWebAssemblyDisassemblerTables()
80 if (CGIP.second->AsmString.size() <= CGI.AsmString.size()) in emitWebAssemblyDisassemblerTables()
85 CGIP = std::make_pair(I, &CGI); in emitWebAssemblyDisassemblerTables()
112 auto &CGI = *InstIt->second.second; in emitWebAssemblyDisassemblerTables() local
115 OS << ": " << CGI.AsmString << "\n"; in emitWebAssemblyDisassemblerTables()
117 OS << CGI.Operands.OperandList.size() << ", "; in emitWebAssemblyDisassemblerTables()
120 for (auto &Op : CGI.Operands.OperandList) { in emitWebAssemblyDisassemblerTables()
H A DCodeEmitterGen.cpp85 CodeGenInstruction &CGI = Target.getInstruction(R); in AddCodeToMergeInOperand() local
106 if (CGI.Operands.hasOperandNamed(VarName, OpIdx)) { in AddCodeToMergeInOperand()
108 OpIdx = CGI.Operands[OpIdx].MIOperandNo; in AddCodeToMergeInOperand()
109 assert(!CGI.Operands.isFlatOperandNotEmitted(OpIdx) && in AddCodeToMergeInOperand()
112 unsigned NumberOps = CGI.Operands.size(); in AddCodeToMergeInOperand()
116 (CGI.Operands.isFlatOperandNotEmitted(NumberedOp) || in AddCodeToMergeInOperand()
118 CGI.Operands.getSubOperandNumber(NumberedOp).first)))) { in AddCodeToMergeInOperand()
121 if (NumberedOp >= CGI.Operands.back().MIOperandNo + in AddCodeToMergeInOperand()
122 CGI.Operands.back().MINumOperands) { in AddCodeToMergeInOperand()
135 std::pair<unsigned, unsigned> SO = CGI.Operands.getSubOperandNumber(OpIdx); in AddCodeToMergeInOperand()
[all …]
H A DCodeBeadsGen.cpp61 for (const CodeGenInstruction *CGI : NumberedInstructions) { in run() local
62 Record *R = CGI->TheDef; in run()
80 for (const CodeGenInstruction *CGI : NumberedInstructions) { in run() local
81 Record *R = CGI->TheDef; in run()
H A DFixedLenDecoderEmitter.cpp1817 const CodeGenInstruction &CGI, unsigned Opc, in populateInstruction() argument
1819 const Record &Def = *CGI.TheDef; in populateInstruction()
1860 for (unsigned i = 0; i < CGI.Operands.size(); ++i) { in populateInstruction()
1861 int tiedTo = CGI.Operands[i].getTiedRegister(); in populateInstruction()
1864 CGI.Operands.getSubOperandNumber(tiedTo); in populateInstruction()
1886 if (!CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx)) in populateInstruction()
1917 if (CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx)) in populateInstruction()
1939 unsigned NumberOps = CGI.Operands.size(); in populateInstruction()
1941 (CGI.Operands.isFlatOperandNotEmitted(NumberedOp) || in populateInstruction()
1943 CGI.Operands.getSubOperandNumber(NumberedOp).first)))) in populateInstruction()
[all …]
H A DAsmWriterInst.h83 const CodeGenInstruction *CGI; variable
86 AsmWriterInst(const CodeGenInstruction &CGI, unsigned CGIIndex,
H A DAsmWriterEmitter.cpp131 O << " case " << FirstInst.CGI->Namespace << "::" in EmitInstructions()
132 << FirstInst.CGI->TheDef->getName() << ":\n"; in EmitInstructions()
134 O << " case " << AWI.CGI->Namespace << "::" in EmitInstructions()
135 << AWI.CGI->TheDef->getName() << ":\n"; in EmitInstructions()
146 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace.str() + "::" + in EmitInstructions()
147 FirstInst.CGI->TheDef->getName().str(), in EmitInstructions()
151 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace.str()+"::" + in EmitInstructions()
152 AWI.CGI->TheDef->getName().str(), in EmitInstructions()
190 InstrsForCase[idx] += Inst.CGI->TheDef->getName(); in FindUniqueOperandCommands()
194 InstrsForCase.push_back(std::string(Inst.CGI->TheDef->getName())); in FindUniqueOperandCommands()
H A DCodeGenTarget.cpp483 const CodeGenInstruction *CGI = I.second.get(); in ComputeInstrsByEnum() local
484 if (CGI->Namespace != "TargetOpcode") { in ComputeInstrsByEnum()
485 InstrsByEnum.push_back(CGI); in ComputeInstrsByEnum()
486 if (CGI->TheDef->getValueAsBit("isPseudo")) in ComputeInstrsByEnum()
H A DAsmMatcherEmitter.cpp542 MatchableInfo(const CodeGenInstruction &CGI) in MatchableInfo()
543 : AsmVariantID(0), AsmString(CGI.AsmString), TheDef(CGI.TheDef), DefRec(&CGI), in MatchableInfo()
1499 for (const CodeGenInstruction *CGI : Target.getInstructionsByEnumValue()) { in buildInfo() local
1503 if (!StringRef(CGI->TheDef->getName()).startswith(MatchPrefix)) in buildInfo()
1507 if (CGI->TheDef->getValueAsBit("isCodeGenOnly")) in buildInfo()
1511 StringRef V = CGI->TheDef->getValueAsString("AsmVariantName"); in buildInfo()
1515 auto II = std::make_unique<MatchableInfo>(*CGI); in buildInfo()
1668 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>(); in buildInstructionOperandReference() local
1669 const CGIOperandList &Operands = CGI.Operands; in buildInstructionOperandReference()
H A DCodeGenDAGPatterns.cpp3703 CodeGenInstruction &CGI, ListInit *Pat, DAGInstMap &DAGInsts) { in parseInstructionPattern() argument
3705 assert(!DAGInsts.count(CGI.TheDef) && "Instruction already parsed!"); in parseInstructionPattern()
3708 TreePattern I(CGI.TheDef, Pat, true, *this); in parseInstructionPattern()
3757 if (i == CGI.Operands.size()) { in parseInstructionPattern()
3769 const std::string &OpName = CGI.Operands[i].Name; in parseInstructionPattern()
3783 if (!checkOperandClass(CGI.Operands[i], R)) in parseInstructionPattern()
3787 Results.push_back(CGI.Operands[i].Rec); in parseInstructionPattern()
3799 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) { in parseInstructionPattern()
3800 CGIOperandList::OperandInfo &Op = CGI.Operands[i]; in parseInstructionPattern()
3922 CodeGenInstruction &CGI = Target.getInstruction(Instr); in ParseInstructions() local
[all …]
H A DCodeGenDAGPatterns.h1205 CodeGenInstruction &CGI, ListInit *Pattern,
/netbsd-src/libexec/httpd/
H A DCHANGES70 o fix CGI '+' parameter handling, some error checking, and a double
107 o add search-word support for CGI
108 o fix a security issue in CGI suffix handler support which would
110 o -C option supports now CGI scripts only
113 o add CGI support for ~user translation (-E switch)
168 o fix dynamic CGI content maps, from rudolf
187 o close leaking file descriptors for CGI and daemon mode
204 o refactor url processing to handle query strings correctly for CGI
231 o properly support nph- CGI
237 o HTTP/1.x protocol headers are now properly merged for CGI
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCallGraphSCCPass.cpp514 scc_iterator<CallGraph*> CGI = scc_begin(&CG); in runOnModule() local
516 CallGraphSCC CurSCC(CG, &CGI); in runOnModule()
517 while (!CGI.isAtEnd()) { in runOnModule()
520 const std::vector<CallGraphNode *> &NodeVec = *CGI; in runOnModule()
522 ++CGI; in runOnModule()
607 scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context; in ReplaceNode() local
608 CGI->ReplaceNode(Old, New); in ReplaceNode()
H A DLoopAccessAnalysis.cpp242 const RuntimeCheckingPtrGroup &CGI = CheckingGroups[I]; in generateChecks() local
245 if (needsChecking(CGI, CGJ)) in generateChecks()
246 Checks.push_back(std::make_pair(&CGI, &CGJ)); in generateChecks()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1724 scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get()); in buildFunctionOrder() local
1725 while (!CGI.isAtEnd()) { in buildFunctionOrder()
1726 for (ProfiledCallGraphNode *Node : *CGI) { in buildFunctionOrder()
1731 ++CGI; in buildFunctionOrder()
1734 scc_iterator<CallGraph *> CGI = scc_begin(CG); in buildFunctionOrder() local
1735 while (!CGI.isAtEnd()) { in buildFunctionOrder()
1736 for (CallGraphNode *Node : *CGI) { in buildFunctionOrder()
1741 ++CGI; in buildFunctionOrder()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp535 const CodeGenInstruction *CGI = PartitionToInstr[PartitionIdx]; in applyForPartition() local
559 if (CGI == nullptr) in applyForPartition()
576 E.value()->getFromMO()->getIdx() < CGI->Operands.size()) { in applyForPartition()
/netbsd-src/external/mit/libuv/dist/docs/src/guide/
H A Dprocesses.rst222 A sample CGI script/executable is:
228 The CGI server combines the concepts from this chapter and :doc:`networking` so
248 The ``stdout`` of the CGI script is set to the socket so that whatever our tick
/netbsd-src/external/bsd/mdocml/dist/
H A DINSTALL36 1. If you want to build the CGI program, man.cgi(8), too,
H A DTODO529 * CGI issues
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Daspell.en.pws17 CGI
H A Dsasl.sdf570 their identity, but the web server CGI cannot authenticate to the
578 authorized, the CGI makes changes to the LDAP entry of the user,
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man1/
H A Docsp.pod446 It is possible to run the B<ocsp> application in responder mode via a CGI
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man1/
H A Dopenssl-ocsp.pod.in463 It is possible to run this command in responder mode via a CGI
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/
H A DDoxyfile.global917 # The CGI_NAME tag should be the name of the CGI script that
/netbsd-src/share/misc/
H A Dacronyms.comp252 CGI common gateway interface

12