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

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
AsmWriterInst.h 83 const CodeGenInstruction *CGI;
86 AsmWriterInst(const CodeGenInstruction &CGI, unsigned CGIIndex,
WebAssemblyDisassemblerEmitter.cpp 32 auto &CGI = *NumberedInstructions[I];
33 auto &Def = *CGI.TheDef;
80 if (CGIP.second->AsmString.size() <= CGI.AsmString.size())
85 CGIP = std::make_pair(I, &CGI);
112 auto &CGI = *InstIt->second.second;
115 OS << ": " << CGI.AsmString << "\n";
117 OS << CGI.Operands.OperandList.size() << ", ";
120 for (auto &Op : CGI.Operands.OperandList) {
CodeEmitterGen.cpp 85 CodeGenInstruction &CGI = Target.getInstruction(R);
106 if (CGI.Operands.hasOperandNamed(VarName, OpIdx)) {
108 OpIdx = CGI.Operands[OpIdx].MIOperandNo;
109 assert(!CGI.Operands.isFlatOperandNotEmitted(OpIdx) &&
112 unsigned NumberOps = CGI.Operands.size();
116 (CGI.Operands.isFlatOperandNotEmitted(NumberedOp) ||
118 CGI.Operands.getSubOperandNumber(NumberedOp).first)))) {
121 if (NumberedOp >= CGI.Operands.back().MIOperandNo +
122 CGI.Operands.back().MINumOperands) {
135 std::pair<unsigned, unsigned> SO = CGI.Operands.getSubOperandNumber(OpIdx)
    [all...]
CodeGenTarget.cpp 483 const CodeGenInstruction *CGI = I.second.get();
484 if (CGI->Namespace != "TargetOpcode") {
485 InstrsByEnum.push_back(CGI);
486 if (CGI->TheDef->getValueAsBit("isPseudo"))
CodeGenDAGPatterns.cpp 3703 CodeGenInstruction &CGI, ListInit *Pat, DAGInstMap &DAGInsts) {
3705 assert(!DAGInsts.count(CGI.TheDef) && "Instruction already parsed!");
3708 TreePattern I(CGI.TheDef, Pat, true, *this);
3757 if (i == CGI.Operands.size()) {
3769 const std::string &OpName = CGI.Operands[i].Name;
3783 if (!checkOperandClass(CGI.Operands[i], R))
3787 Results.push_back(CGI.Operands[i].Rec);
3799 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) {
3800 CGIOperandList::OperandInfo &Op = CGI.Operands[i];
3922 CodeGenInstruction &CGI = Target.getInstruction(Instr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
GIMatchTree.cpp 535 const CodeGenInstruction *CGI = PartitionToInstr[PartitionIdx];
559 if (CGI == nullptr)
576 E.value()->getFromMO()->getIdx() < CGI->Operands.size()) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraphSCCPass.cpp 514 scc_iterator<CallGraph*> CGI = scc_begin(&CG);
516 CallGraphSCC CurSCC(CG, &CGI);
517 while (!CGI.isAtEnd()) {
520 const std::vector<CallGraphNode *> &NodeVec = *CGI;
522 ++CGI;
607 scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context;
608 CGI->ReplaceNode(Old, New);
LoopAccessAnalysis.cpp 242 const RuntimeCheckingPtrGroup &CGI = CheckingGroups[I];
245 if (needsChecking(CGI, CGJ))
246 Checks.push_back(std::make_pair(&CGI, &CGJ));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 1724 scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get());
1725 while (!CGI.isAtEnd()) {
1726 for (ProfiledCallGraphNode *Node : *CGI) {
1731 ++CGI;
1734 scc_iterator<CallGraph *> CGI = scc_begin(CG);
1735 while (!CGI.isAtEnd()) {
1736 for (CallGraphNode *Node : *CGI) {
1741 ++CGI;

Completed in 80 milliseconds