Home
last modified time | relevance | path

Searched refs:getCode (Results 1 – 23 of 23) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DTGParser.cpp496 switch (Lex.getCode()) { in ParseObjectName()
781 switch (Lex.getCode()) { in ParseType()
883 switch (Lex.getCode()) { in ParseOperation()
895 switch (Lex.getCode()) { in ParseOperation()
1628 switch (Lex.getCode()) { in ParseSimpleValue()
1879 if (Lex.getCode() != tgtok::Id && Lex.getCode() != tgtok::XCast) { in ParseSimpleValue()
1959 switch (Lex.getCode()) { in ParseValue()
2051 switch (Lex.getCode()) { in ParseValue()
2281 switch (Lex.getCode()) { in ParseForeachDeclaration()
2837 switch (Lex.getCode()) { in ParseMultiClass()
[all …]
H A DTGLexer.h107 tgtok::TokKind getCode() const { return CurCode; } in getCode() function
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp38 FirstAbbrCode = AbbrDecl.getCode(); in extract()
40 if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract()
45 PrevAbbrCode = AbbrDecl.getCode(); in extract()
61 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
H A DDWARFAbbreviationDeclaration.cpp130 OS << '[' << getCode() << "] "; in dump()
H A DDWARFVerifier.cpp1311 return !Op.isError() && (Op.getCode() == DW_OP_addr || in isVariableIndexable()
1312 Op.getCode() == DW_OP_form_tls_address || in isVariableIndexable()
1313 Op.getCode() == DW_OP_GNU_push_tls_address); in isVariableIndexable()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DRDFGraph.h592 template <typename T> T getCode() const { in getCode() function
616 MachineInstr *getCode() const { in getCode() function
622 MachineInstr *getCode() const { in getCode() function
623 return CodeNode::getCode<MachineInstr*>(); in getCode()
628 MachineBasicBlock *getCode() const { in getCode() function
629 return CodeNode::getCode<MachineBasicBlock*>(); in getCode()
636 MachineFunction *getCode() const { in getCode() function
637 return CodeNode::getCode<MachineFunction*>(); in getCode()
H A DRDFCopy.cpp77 if (interpretAsCopy(SA.Addr->getCode(), EM)) in scanBlock()
108 dbgs() << "Instr: " << *DFG.addr<StmtNode*>(I).Addr->getCode(); in run()
177 << *NodeAddr<StmtNode*>(IA).Addr->getCode(); in run()
H A DRDFDeadCode.cpp86 if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode())) in scanInstr()
163 if (isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode())) in collect()
237 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode(); in erase()
H A DRDFLiveness.cpp173 return NodeAddr<StmtNode*>(IA).Addr->getCode()->getParent(); in getAllReachingDefs()
177 return BA.Addr->getCode(); in getAllReachingDefs()
193 MachineInstr *CA = NodeAddr<StmtNode*>(OA).Addr->getCode(); in getAllReachingDefs()
194 MachineInstr *CB = NodeAddr<StmtNode*>(OB).Addr->getCode(); in getAllReachingDefs()
364 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef()
689 MachineBasicBlock *BB = BA.Addr->getCode(); in computeLiveIns()
727 MachineBasicBlock *MB = BA.Addr->getCode(); in computeLiveIns()
771 RefMap &LOX = PhiLOX[PrA.Addr->getCode()]; in computeLiveIns()
1005 if (B != BA.Addr->getCode()) { in traverse()
1040 if (BTA.Addr->getCode() != B) { in traverse()
H A DHexagonOptAddrMode.cpp187 MachineInstr &UseMI = *NodeAddr<StmtNode *>(IA).Addr->getCode(); in canRemoveAddasl()
314 MachineInstr *UseMI = NodeAddr<StmtNode *>(IA).Addr->getCode(); in isSafeToExtLR()
356 MachineInstr *MI = SN.Addr->getCode(); in processAddUses()
399 MachineInstr *UseMI = OwnerN.Addr->getCode(); in processAddUses()
443 MachineInstr &MI = *SN.Addr->getCode(); in analyzeUses()
622 MachineInstr *UseMI = UseIA.Addr->getCode(); in changeAddAsl()
695 MachineInstr *MI = SA.Addr->getCode(); in processBlock()
749 MachineInstr *UseMI = OwnerN.Addr->getCode(); in processBlock()
H A DHexagonRDFOpt.cpp182 dbgs() << "Partly dead: " << *SA.Addr->getCode(); in run()
190 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode(); in removeOperand()
219 MachineInstr &MI = *NodeAddr<StmtNode*>(IA).Addr->getCode(); in rewrite()
H A DRDFGraph.cpp237 const MachineInstr &MI = *P.Obj.Addr->getCode(); in operator <<()
281 MachineBasicBlock *BB = P.Obj.Addr->getCode(); in operator <<()
316 << P.Obj.Addr->getCode()->getName() << '\n'; in operator <<()
598 return NodeAddr<BlockNode*>(NA).Addr->getCode() == BB; in findBlock()
608 MachineBasicBlock *EntryB = &getCode()->front(); in getEntryBlock()
914 MachineBasicBlock &EntryB = *EA.Addr->getCode(); in build()
941 const MachineBasicBlock &B = *BA.Addr->getCode(); in build()
1407 MachineBasicBlock *BB = BA.Addr->getCode(); in recordDefsForDF()
1489 const MachineBasicBlock *MBB = BA.Addr->getCode(); in buildPhis()
1695 MachineDomTreeNode *N = MDT.getNode(BA.Addr->getCode()); in linkBlockRefs()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBInjectedSource.h37 virtual std::string getCode() const = 0;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAInjectedSource.h30 std::string getCode() const override;
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAInjectedSource.cpp52 std::string DIAInjectedSource::getCode() const { in getCode() function in DIAInjectedSource
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DAsmWriterInst.h76 std::string getCode(bool PassSubtarget) const;
H A DAsmWriterEmitter.cpp97 O << "\n " << TheOp.getCode(PassSubtarget); in PrintCases()
133 O << " " << FirstInst.Operands[i].getCode(PassSubtarget); in EmitInstructions()
176 std::string Command = " "+Inst.Operands[0].getCode(PassSubtarget)+"\n"; in FindUniqueOperandCommands()
226 FirstInst.Operands[Op].getCode(PassSubtarget) + "\n"; in FindUniqueOperandCommands()
H A DAsmWriterInst.cpp29 std::string AsmWriterOperand::getCode(bool PassSubtarget) const { in getCode() function in AsmWriterOperand
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h89 uint32_t getCode() const { return Code; } in getCode() function
H A DDWARFExpression.h84 uint8_t getCode() { return Opcode; } in getCode() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h63 index_error_code getCode() const { return Code; } in getCode() function
/freebsd-12.1/contrib/llvm/tools/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp247 switch (IE.getCode()) { in emitCrossTUDiagnostics()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp973 Printer.printLine(IS->getCode()); in dumpInjectedSources()