Searched refs:CGI (Results 1 - 25 of 26) sorted by relevance

12

/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DAsmWriterInst.cpp50 AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned CGIIndex, argument
52 : CGI(&CGI), CGIIndex(CGIIndex) {
57 std::string AsmString = CGI.FlattenAsmStringVariants(CGI.AsmString, Variant);
95 CGI.TheDef->getLoc(),
97 CGI.TheDef->getName() + "'!");
135 CGI.TheDef->getLoc(),
137 CGI.TheDef->getName() + "'");
144 CGI
[all...]
H A DX86MnemonicTables.cpp74 const CodeGenInstruction *CGI = *Mnemonics.begin(); local
75 OS << "\treturn Opcode == " << CGI->TheDef->getName() << ";\n}\n\n";
78 for (const CodeGenInstruction *CGI : Mnemonics) {
79 OS << "\tcase " << CGI->TheDef->getName() << ":\n";
H A DWebAssemblyDisassemblerEmitter.cpp35 auto &CGI = *NumberedInstructions[I]; local
36 auto &Def = *CGI.TheDef;
77 if (CGIP.second->AsmString.size() <= CGI.AsmString.size())
82 CGIP = std::make_pair(I, &CGI);
109 auto &CGI = *InstIt->second.second; local
112 OS << ": " << CGI.AsmString << "\n";
114 OS << CGI.Operands.OperandList.size() << ", ";
117 for (auto &Op : CGI.Operands.OperandList) {
H A DCodeEmitterGen.cpp87 CodeGenInstruction &CGI = Target.getInstruction(R); local
110 if (CGI.Operands.hasSubOperandAlias(VarName, SubOp)) {
111 OpIdx = CGI.Operands[SubOp.first].MIOperandNo + SubOp.second;
112 } else if (CGI.Operands.hasOperandNamed(VarName, OpIdx)) {
114 OpIdx = CGI.Operands[OpIdx].MIOperandNo;
123 unsigned NumberOps = CGI.Operands.size();
127 (CGI.Operands.isFlatOperandNotEmitted(NumberedOp) ||
129 CGI.Operands.getSubOperandNumber(NumberedOp).first)))) {
134 CGI.Operands.back().MIOperandNo + CGI
329 CodeGenInstruction &CGI = Target.getInstruction(R); local
[all...]
H A DAsmWriterInst.h84 const CodeGenInstruction *CGI; member in class:llvm::AsmWriterInst
87 AsmWriterInst(const CodeGenInstruction &CGI, unsigned CGIIndex,
H A DDecoderEmitter.cpp1856 const CodeGenInstruction &CGI) {
1862 for (unsigned Idx = 0; Idx < CGI.Operands.size(); ++Idx) {
1863 auto &Op = CGI.Operands[Idx];
1892 const_cast<CodeGenInstruction &>(CGI).Operands.ParseOperandName(
1894 unsigned OpIdx = CGI.Operands.getFlattenedOperandNumber(OpSubOpPair);
1901 unsigned OpIdx = CGI.Operands.getFlattenedOperandNumber(
1962 const CodeGenInstruction &CGI, unsigned Opc,
1965 const Record &Def = *CGI.TheDef;
2007 for (unsigned i = 0; i < CGI.Operands.size(); ++i) {
2008 auto &Op = CGI
[all...]
H A DVarLenCodeEmitterGen.cpp220 for (const CodeGenInstruction *CGI : NumberedInstructions) {
221 Record *R = CGI->TheDef;
361 for (const CodeGenInstruction *CGI : NumberedInstructions) {
362 Record *R = CGI->TheDef;
446 CodeGenInstruction &CGI = Target.getInstruction(R); local
475 auto OpIdx = CGI.Operands.ParseOperandName(OperandName);
476 unsigned FlatOpIdx = CGI.Operands.getFlattenedOperandNumber(OpIdx);
478 CGI.Operands[OpIdx.first].EncoderMethodNames[OpIdx.second];
H A DAsmWriterEmitter.cpp130 O << " case " << FirstInst.CGI->Namespace << "::"
131 << FirstInst.CGI->TheDef->getName() << ":\n";
133 O << " case " << AWI.CGI->Namespace << "::"
134 << AWI.CGI->TheDef->getName() << ":\n";
145 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace.str() + "::" +
146 FirstInst.CGI->TheDef->getName().str(),
150 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace.str()+"::" +
151 AWI.CGI->TheDef->getName().str(),
189 InstrsForCase[idx] += Inst.CGI->TheDef->getName();
193 InstrsForCase.push_back(std::string(Inst.CGI
[all...]
H A DCodeGenTarget.cpp512 const CodeGenInstruction *CGI = I.second.get(); local
513 if (CGI->Namespace != "TargetOpcode") {
514 InstrsByEnum.push_back(CGI);
515 if (CGI->TheDef->getValueAsBit("isPseudo"))
H A DAsmMatcherEmitter.cpp543 MatchableInfo(const CodeGenInstruction &CGI) argument
544 : AsmVariantID(0), AsmString(CGI.AsmString), TheDef(CGI.TheDef), DefRec(&CGI),
1516 for (const CodeGenInstruction *CGI : Target.getInstructionsByEnumValue()) {
1520 if (!StringRef(CGI->TheDef->getName()).startswith(MatchPrefix))
1524 if (CGI->TheDef->getValueAsBit("isCodeGenOnly"))
1528 StringRef V = CGI->TheDef->getValueAsString("AsmVariantName");
1532 auto II = std::make_unique<MatchableInfo>(*CGI);
1685 const CodeGenInstruction &CGI
[all...]
H A DCodeGenDAGPatterns.cpp3780 CodeGenInstruction &CGI, ListInit *Pat, DAGInstMap &DAGInsts) {
3782 assert(!DAGInsts.count(CGI.TheDef) && "Instruction already parsed!");
3785 TreePattern I(CGI.TheDef, Pat, true, *this);
3834 if (i == CGI.Operands.size()) {
3846 const std::string &OpName = CGI.Operands[i].Name;
3860 if (!checkOperandClass(CGI.Operands[i], R))
3864 Results.push_back(CGI.Operands[i].Rec);
3876 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) {
3877 CGIOperandList::OperandInfo &Op = CGI.Operands[i];
3999 CodeGenInstruction &CGI local
3779 parseInstructionPattern( CodeGenInstruction &CGI, ListInit *Pat, DAGInstMap &DAGInsts) argument
[all...]
H A DCodeGenDAGPatterns.h1213 CodeGenInstruction &CGI, ListInit *Pattern,
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DCallGraphSCCPass.cpp505 scc_iterator<CallGraph*> CGI = scc_begin(&CG); local
507 CallGraphSCC CurSCC(CG, &CGI);
508 while (!CGI.isAtEnd()) {
511 const std::vector<CallGraphNode *> &NodeVec = *CGI;
513 ++CGI;
598 scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context; local
599 CGI->ReplaceNode(Old, New);
H A DLoopAccessAnalysis.cpp245 const RuntimeCheckingPtrGroup &CGI, const RuntimeCheckingPtrGroup &CGJ) {
252 if (CGI.Members.size() != 1 || CGJ.Members.size() != 1) {
257 PointerInfo *Src = &Pointers[CGI.Members[0]];
317 DL.getPointerSizeInBits(CGI.AddressSpace));
339 const RuntimeCheckingPtrGroup &CGI = CheckingGroups[I]; local
342 if (needsChecking(CGI, CGJ)) {
343 tryToCreateDiffCheck(CGI, CGJ);
344 Checks.push_back(std::make_pair(&CGI, &CGJ));
244 tryToCreateDiffCheck( const RuntimeCheckingPtrGroup &CGI, const RuntimeCheckingPtrGroup &CGJ) argument
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A Dparse_version.t33 q[$CGI::VERSION='3.63'] => '3.63',
/openbsd-current/gnu/llvm/clang/www/demo/
H A Dindex.cgi6 use CGI;
117 $c = new CGI;
434 # Get the source presented by the user to CGI, convert newline sequences to simple \n.
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1914 scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get()); local
1915 while (!CGI.isAtEnd()) {
1916 auto Range = *CGI;
1919 scc_member_iterator<ProfiledCallGraph *> SI(*CGI);
1927 ++CGI;
1930 scc_iterator<CallGraph *> CGI = scc_begin(CG); local
1931 while (!CGI.isAtEnd()) {
1932 for (CallGraphNode *Node : *CGI) {
1937 ++CGI;
/openbsd-current/gnu/llvm/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp535 const CodeGenInstruction *CGI = PartitionToInstr[PartitionIdx]; local
559 if (CGI == nullptr)
576 E.value()->getFromMO()->getIdx() < CGI->Operands.size()) {
/openbsd-current/gnu/usr.bin/perl/cpan/Module-Load/lib/Module/
H A DLoad.pm171 load CGI, ':all'; # like 'use CGI qw[:standard]'
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h519 /// DiffCheck for checking groups \p CGI and \p CGJ. If pointer-difference
521 void tryToCreateDiffCheck(const RuntimeCheckingPtrGroup &CGI,
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/App/
H A DCpan.pm235 cpan -fi CGI::Minimal URI
238 cpan -Ti CGI::Minimal URI
/openbsd-current/gnu/usr.bin/perl/dist/Exporter/lib/
H A DExporter.pm408 F<CGI.pm> creates an ":all" tag which contains some (but not really
/openbsd-current/gnu/usr.bin/perl/pod/
H A Dperlmodlib.PL305 World Wide Web, HTML, HTTP, CGI, MIME
/openbsd-current/gnu/usr.bin/perl/ext/B/
H A DB.pm420 # Walk CGI's symbol table calling print_subs on each symbol.
421 # Recurse only into CGI::Util::
422 walksymtable(\%CGI::, 'print_subs',
423 sub { $_[0] eq 'CGI::Util::' }, 'CGI::');
/openbsd-current/gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP/
H A DTiny.pm175 # under CGI, bypass HTTP_PROXY as request sets it from Proxy header
2203 If the C<REQUEST_METHOD> environment variable is set, then this might be a CGI

Completed in 488 milliseconds

12