/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | TGParser.cpp | 657 if (Lex.getCode() == K) { in consume() 671 switch (Lex.getCode()) { in ParseObjectName() 709 if (Lex.getCode() != tgtok::Id) { in ParseClassID() 736 if (Lex.getCode() != tgtok::Id) { in ParseMultiClassID() 839 switch (Lex.getCode()) { in ParseSliceElement() 931 if (Lex.getCode() != tgtok::comma) in ParseSliceElements() 941 } while (Lex.getCode() != tgtok::r_square); in ParseSliceElements() 985 switch (Lex.getCode()) { in ParseRangePiece() 1091 switch (Lex.getCode()) { in ParseType() 1186 switch (Lex.getCode()) { in ParseOperation() [all …]
|
H A D | TGLexer.h | 223 tgtok::TokKind getCode() const { return CurCode; } in getCode() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugAbbrev.cpp | 45 FirstAbbrCode = AbbrDecl.getCode(); in extract() 46 } else if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract() 50 PrevAbbrCode = AbbrDecl.getCode(); in extract() 66 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration() 81 Codes.push_back(Decl.getCode()); in getCodeRange()
|
H A D | DWARFExpression.cpp | 378 if (Op.getCode() == DW_OP_entry_value || in print() 379 Op.getCode() == DW_OP_GNU_entry_value) { in print() 448 uint8_t Opcode = Op.getCode(); in printCompactDWARFExpr()
|
H A D | DWARFAbbreviationDeclaration.cpp | 149 OS << '[' << getCode() << "] "; in dump()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | RDFGraph.h | 613 template <typename T> T getCode() const { // in getCode() function 634 MachineInstr *getCode() const { return nullptr; } in getCode() function 638 MachineInstr *getCode() const { // in getCode() function 639 return CodeNode::getCode<MachineInstr *>(); in getCode() 644 MachineBasicBlock *getCode() const { in getCode() function 645 return CodeNode::getCode<MachineBasicBlock *>(); in getCode() 652 MachineFunction *getCode() const { in getCode() function 653 return CodeNode::getCode<MachineFunction *>(); in getCode()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RDFLiveness.cpp | 161 return NodeAddr<StmtNode *>(IA).Addr->getCode()->getParent(); in getAllReachingDefs() 165 return BA.Addr->getCode(); in getAllReachingDefs() 193 const MachineInstr *InA = NodeAddr<StmtNode *>(OA).Addr->getCode(); in getAllReachingDefs() 194 const MachineInstr *InB = NodeAddr<StmtNode *>(OB).Addr->getCode(); in getAllReachingDefs() 397 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef() 748 MachineBasicBlock *BB = BA.Addr->getCode(); in computeLiveIns() 786 MachineBasicBlock *MB = BA.Addr->getCode(); in computeLiveIns() 831 RefMap &LOX = PhiLOX[PrA.Addr->getCode()]; in computeLiveIns() 1060 if (B != BA.Addr->getCode()) { in traverse() 1095 if (BTA.Addr->getCode() != B) { in traverse()
|
H A D | RDFGraph.cpp | 225 const MachineInstr &MI = *P.Obj.Addr->getCode(); in operator <<() 264 MachineBasicBlock *BB = P.Obj.Addr->getCode(); in operator <<() 298 << ": Function: " << P.Obj.Addr->getCode()->getName() << '\n'; in operator <<() 571 auto EqBB = [BB](Node NA) -> bool { return Block(NA).Addr->getCode() == BB; }; in findBlock() 580 MachineBasicBlock *EntryB = &getCode()->front(); in getEntryBlock() 914 MachineBasicBlock &EntryB = *EA.Addr->getCode(); in build() 941 const MachineBasicBlock &B = *BA.Addr->getCode(); in build() 1111 MachineInstr *MI = Stmt(IA).Addr->getCode(); in pushDefs() 1386 MachineBasicBlock *BB = BA.Addr->getCode(); in recordDefsForDF() 1434 const MachineBasicBlock *MBB = BA.Addr->getCode(); in buildPhis() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonOptAddrMode.cpp | 191 MachineInstr &UseMI = *NodeAddr<StmtNode *>(IA).Addr->getCode(); in canRemoveAddasl() 324 MachineInstr *UseMI = NodeAddr<StmtNode *>(IA).Addr->getCode(); in isSafeToExtLR() 426 MachineInstr *MI = SN.Addr->getCode(); in processAddUses() 474 MachineInstr *UseMI = OwnerN.Addr->getCode(); in processAddUses() 521 MachineInstr &MI = *SN.Addr->getCode(); in analyzeUses() 701 MachineInstr *UseMI = UseIA.Addr->getCode(); in changeAddAsl() 774 MachineInstr *MI = SA.Addr->getCode(); in processBlock() 828 MachineInstr *UseMI = OwnerN.Addr->getCode(); in processBlock()
|
H A D | RDFCopy.cpp | 113 if (interpretAsCopy(SA.Addr->getCode(), EM)) in scanBlock() 135 dbgs() << "Instr: " << *DFG.addr<StmtNode*>(I).Addr->getCode(); in run() 216 << *NodeAddr<StmtNode*>(IA).Addr->getCode(); in run()
|
H A D | HexagonRDFOpt.cpp | 187 dbgs() << "Partly dead: " << *SA.Addr->getCode(); in run() 195 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode(); in removeOperand() 224 MachineInstr &MI = *NodeAddr<StmtNode*>(IA).Addr->getCode(); in rewrite()
|
H A D | RDFDeadCode.cpp | 59 const MachineInstr *MI = S.Addr->getCode(); in isLiveInstr() 237 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode(); in erase()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | IPDBInjectedSource.h | 34 virtual std::string getCode() const = 0;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/ |
H A D | DIAInjectedSource.h | 29 std::string getCode() const override;
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerCompileUnit.cpp |
|
H A D | DWARFLinker.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
H A D | DIAInjectedSource.cpp | 51 std::string DIAInjectedSource::getCode() const { in getCode() function in DIAInjectedSource
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | AsmWriterInst.h | 77 std::string getCode(bool PassSubtarget) const;
|
H A D | AsmWriterInst.cpp | 23 std::string AsmWriterOperand::getCode(bool PassSubtarget) const { in getCode() function in AsmWriterOperand
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeEnumInjectedSources.cpp | 71 std::string getCode() const override { in getCode() function in llvm::pdb::__anon054798330111::NativeInjectedSource
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFAbbreviationDeclaration.h | 96 uint32_t getCode() const { return Code; } in getCode() function
|
H A D | DWARFExpression.h | 88 uint8_t getCode() const { return Opcode; } in getCode() function
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | AsmWriterEmitter.cpp | 104 O << "\n " << TheOp.getCode(PassSubtarget); in PrintCases() 140 O << " " << FirstInst.Operands[i].getCode(PassSubtarget); in EmitInstructions() 183 " " + Inst.Operands[0].getCode(PassSubtarget) + "\n"; in FindUniqueOperandCommands() 232 " " + FirstInst.Operands[Op].getCode(PassSubtarget) + "\n"; in FindUniqueOperandCommands()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProfCorrelator.cpp | 297 if (Op.getCode() == dwarf::DW_OP_addr) { in getLocation() 299 } else if (Op.getCode() == dwarf::DW_OP_addrx) { in getLocation()
|
/freebsd/contrib/llvm-project/clang/include/clang/CrossTU/ |
H A D | CrossTranslationUnit.h | 74 index_error_code getCode() const { return Code; } in getCode() function
|