| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | ScopedPrinter.h | 96 void printEnum(StringRef Label, T Value, in printEnum() argument 164 startLine() << Label << ": " << Value << "\n"; in printNumber() 168 startLine() << Label << ": " << Value << "\n"; in printNumber() 204 startLine() << Label << ": "; in printVersion() 210 startLine() << Label << ": ["; in printList() 223 startLine() << Label << ": ["; in printList() 235 startLine() << Label << ": ["; in printHexList() 266 printString(Label, StringRef(Value)); in printString() 270 printString(Label, StringRef(Value)); in printString() 279 printBinaryImpl(Label, Str, Value, false); in printBinary() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Format/ |
| H A D | UsingDeclarationsSorter.cpp | 70 std::string Label; member 73 : Line(Line), Label(Label) {} in UsingDeclaration() 76 return compareLabels(Label, Other.Label) < 0; in operator <() 90 std::string Label; in computeUsingDeclarationLabel() local 93 Label.append("typename "); in computeUsingDeclarationLabel() 97 Label.append("::"); in computeUsingDeclarationLabel() 103 Label.append(Tok->TokenText.str()); in computeUsingDeclarationLabel() 107 Label.append("::"); in computeUsingDeclarationLabel() 111 return Label; in computeUsingDeclarationLabel() 137 return a.Label == b.Label; in endUsingDeclarationBlock() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCStreamer.cpp | 414 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfa() local 425 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfaOffset() local 435 MCSymbol *Label = EmitCFILabel(); in EmitCFIAdjustCfaOffset() local 445 MCSymbol *Label = EmitCFILabel(); in EmitCFIDefCfaRegister() local 456 MCSymbol *Label = EmitCFILabel(); in EmitCFIOffset() local 466 MCSymbol *Label = EmitCFILabel(); in EmitCFIRelOffset() local 493 MCSymbol *Label = EmitCFILabel(); in EmitCFIRememberState() local 503 MCSymbol *Label = EmitCFILabel(); in EmitCFIRestoreState() local 643 CurFrame->End = Label; in EmitWinCFIEndProc() 680 CurFrame->End = Label; in EmitWinCFIEndChained() [all …]
|
| H A D | MCWin64EH.cpp | 71 EmitAbsDifference(streamer, inst.Label, begin); in EmitUnwindCode() 76 EmitAbsDifference(streamer, inst.Label, begin); in EmitUnwindCode() 91 EmitAbsDifference(streamer, inst.Label, begin); in EmitUnwindCode() 95 EmitAbsDifference(streamer, inst.Label, begin); in EmitUnwindCode() 101 EmitAbsDifference(streamer, inst.Label, begin); in EmitUnwindCode() 161 MCSymbol *Label = context.createTempSymbol(); in EmitUnwindInfo() local 164 streamer.EmitLabel(Label); in EmitUnwindInfo() 165 info->Symbol = Label; in EmitUnwindInfo() 496 MCSymbol *Label = context.createTempSymbol(); in ARM64EmitUnwindInfo() local 499 streamer.EmitLabel(Label); in ARM64EmitUnwindInfo() [all …]
|
| H A D | MCObjectStreamer.cpp | 217 MCSymbol *Label = getContext().createTempSymbol("cfi", true); in EmitCFILabel() local 218 EmitLabel(Label); in EmitCFILabel() 219 return Label; in EmitCFILabel() 421 int64_t LineDelta, const MCSymbol *Label, in emitDwarfSetLineAddr() argument 427 OS.EmitSymbolValue(Label, PointerSize); in emitDwarfSetLineAddr() 435 const MCSymbol *Label, in EmitDwarfAdvanceLineAddr() argument 439 Label, PointerSize); in EmitDwarfAdvanceLineAddr() 442 const MCExpr *AddrDelta = buildSymbolDiff(*this, Label, LastLabel); in EmitDwarfAdvanceLineAddr() 453 const MCSymbol *Label) { in EmitDwarfAdvanceFrameAddr() argument 454 const MCExpr *AddrDelta = buildSymbolDiff(*this, Label, LastLabel); in EmitDwarfAdvanceFrameAddr()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86WinCOFFTargetStreamer.cpp | 47 MCSymbol *Label; member 163 getStreamer().EmitLabel(Label); in emitFPOLabel() 164 return Label; in emitFPOLabel() 208 Inst.Label = emitFPOLabel(); in emitFPOSetFrame() 219 Inst.Label = emitFPOLabel(); in emitFPOPushReg() 230 Inst.Label = emitFPOLabel(); in emitFPOStackAlloc() 248 Inst.Label = emitFPOLabel(); in emitFPOStackAlign() 287 void emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label); 315 if (Label == FPO->Begin) in emitFrameDataRecord() 380 OS.emitAbsoluteSymbolDiff(FPO->PrologueEnd, Label, 2); in emitFrameDataRecord() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCDwarf.h | 152 MCSymbol *Label; variable 161 : MCDwarfLoc(loc), Label(label) {} in MCDwarfLineEntry() 163 MCSymbol *getLabel() const { return Label; } in getLabel() 212 MCSymbol *Label = nullptr; member 328 return Header.Label; in getLabel() 331 void setLabel(MCSymbol *Label) { in setLabel() argument 332 Header.Label = Label; in setLabel() 397 MCSymbol *Label; variable 403 Label(label) {} in MCGenDwarfLabelEntry() 408 MCSymbol *getLabel() const { return Label; } in getLabel() [all …]
|
| H A D | MCCodeView.h | 33 const MCSymbol *Label = nullptr; variable 43 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, in MCCVLoc() argument 45 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc() 52 const MCSymbol *getLabel() const { return Label; } in getLabel() 68 void setLabel(const MCSymbol *L) { Label = L; } in setLabel() 166 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
|
| H A D | MCLabel.h | 50 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { 51 Label.print(OS);
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineOperand.cpp | 610 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 616 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 621 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 626 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 633 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 639 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 645 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 652 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 659 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local 665 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local [all …]
|
| H A D | GCRootLowering.cpp | 260 MCSymbol *Label = MBB.getParent()->getContext().createTempSymbol(); in InsertLabel() local 261 BuildMI(MBB, MI, DL, TII->get(TargetOpcode::GC_LABEL)).addSym(Label); in InsertLabel() 262 return Label; in InsertLabel() 271 MCSymbol *Label = InsertLabel(*CI->getParent(), RAI, CI->getDebugLoc()); in VisitCallPoint() local 272 FI->addSafePoint(Label, CI->getDebugLoc()); in VisitCallPoint()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsELFStreamer.cpp | 63 MCSymbol *Label = getContext().createTempSymbol("cfi", true); in EmitCFILabel() local 64 MCELFStreamer::EmitLabel(Label); in EmitCFILabel() 65 return Label; in EmitCFILabel() 80 auto *Label = cast<MCSymbolELF>(L); in createPendingLabelRelocs() local 81 getAssembler().registerSymbol(*Label); in createPendingLabelRelocs() 82 Label->setOther(ELF::STO_MIPS_MICROMIPS); in createPendingLabelRelocs()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64WinCOFFStreamer.cpp | 72 MCSymbol *Label = S.EmitCFILabel(); in EmitARM64WinUnwindCode() local 73 auto Inst = WinEH::Instruction(UnwindCode, Label, Reg, Offset); in EmitARM64WinUnwindCode() 162 MCSymbol *Label = S.EmitCFILabel(); in EmitARM64WinCFIPrologEnd() local 163 CurFrame->PrologEnd = Label; in EmitARM64WinCFIPrologEnd() 164 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0); in EmitARM64WinCFIPrologEnd() 186 MCSymbol *Label = S.EmitCFILabel(); in EmitARM64WinCFIEpilogEnd() local 187 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0); in EmitARM64WinCFIEpilogEnd()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterDwarf.cpp | 151 void AsmPrinter::emitDwarfSymbolReference(const MCSymbol *Label, in emitDwarfSymbolReference() argument 156 OutStreamer->EmitCOFFSecRel32(Label, /*Offset=*/0); in emitDwarfSymbolReference() 162 OutStreamer->EmitSymbolValue(Label, 4); in emitDwarfSymbolReference() 168 EmitLabelDifference(Label, Label->getSection().getBeginSymbol(), 4); in emitDwarfSymbolReference() 182 void AsmPrinter::EmitDwarfOffset(const MCSymbol *Label, uint64_t Offset) const { in EmitDwarfOffset() argument 183 EmitLabelPlusOffset(Label, Offset, MAI->getCodePointerSize()); in EmitDwarfOffset()
|
| H A D | DwarfCompileUnit.cpp | 75 if (Label) in addLabelAddress() 76 DD->addArangeLabel(SymbolCU(this, Label)); in addLabelAddress() 88 if (Label) in addLocalLabelAddress() 89 DD->addArangeLabel(SymbolCU(this, Label)); in addLocalLabelAddress() 91 if (Label) in addLocalLabelAddress() 93 DIELabel(Label)); in addLocalLabelAddress() 895 const DbgLabel *Label = nullptr; in finishEntityDefinition() local 903 applyLabelAttributes(*Label, *Die); in finishEntityDefinition() 908 if (Label) in finishEntityDefinition() 1093 StringRef Name = Label.getName(); in applyLabelAttributes() [all …]
|
| H A D | ErlangGCPrinter.cpp | 87 MCSymbol *Label = PI->Label; in finishAssembly() local 88 AP.EmitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/); in finishAssembly()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyClassLayoutGraphicalDumper.cpp | 115 std::string Label = "base"; in dump() local 117 Label.insert(Label.begin(), 'v'); in dump() 119 Label.insert(Label.begin(), 'i'); in dump() 121 Printer << Label << " "; in dump()
|
| H A D | FormatUtil.cpp | 52 std::string llvm::pdb::truncateQuotedNameFront(StringRef Label, StringRef Name, in truncateQuotedNameFront() argument 54 uint32_t RequiredExtraChars = Label.size() + 1 + 2; in truncateQuotedNameFront() 56 return formatv("{0} \"{1}\"", Label, Name).str(); in truncateQuotedNameFront() 60 return formatv("{0} \"{1}\"", Label, TN).str(); in truncateQuotedNameFront() 63 std::string llvm::pdb::truncateQuotedNameBack(StringRef Label, StringRef Name, in truncateQuotedNameBack() argument 65 uint32_t RequiredExtraChars = Label.size() + 1 + 2; in truncateQuotedNameBack() 67 return formatv("{0} \"{1}\"", Label, Name).str(); in truncateQuotedNameBack() 71 return formatv("{0} \"{1}\"", Label, TN).str(); in truncateQuotedNameBack()
|
| H A D | LinePrinter.cpp | 103 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() argument 106 OS << Label << " ("; in formatBinary() 116 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() argument 119 OS << Label << " ("; in formatBinary() 175 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() argument 211 formatMsfStreamData(Label, File, Layout, Substream); in formatMsfStreamData() 214 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() argument 222 OS << Label << " ("; in formatMsfStreamData()
|
| H A D | LinePrinter.h | 52 void formatBinary(StringRef Label, ArrayRef<uint8_t> Data, 54 void formatBinary(StringRef Label, ArrayRef<uint8_t> Data, uint64_t BaseAddr, 57 void formatMsfStreamData(StringRef Label, PDBFile &File, uint32_t StreamIdx, 60 void formatMsfStreamData(StringRef Label, PDBFile &File,
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeDbgValue.h | 145 MDNode *Label; variable 150 SDDbgLabel(MDNode *Label, DebugLoc dl, unsigned O) in SDDbgLabel() argument 151 : Label(Label), DL(std::move(dl)), Order(O) {} in SDDbgLabel() 154 MDNode *getLabel() const { return Label; } in getLabel()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | ScopedPrinter.cpp | 22 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str, in printBinaryImpl() argument 29 startLine() << Label; in printBinaryImpl() 39 startLine() << Label << ":"; in printBinaryImpl()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | GCMetadata.h | 58 MCSymbol *Label; ///< A label. member 62 : Label(L), Loc(std::move(DL)) {} in GCPoint() 126 void addSafePoint(MCSymbol *Label, const DebugLoc &DL) { in addSafePoint() argument 127 SafePoints.emplace_back(Label, DL); in addSafePoint()
|
| /freebsd-12.1/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/ |
| H A D | NVPTXTargetStreamer.cpp | 112 const char *Label = Directive; in emitRawBytes() local 118 OS << Label << (unsigned)*It; in emitRawBytes() 119 if (Label == Directive) in emitRawBytes() 120 Label = ","; in emitRawBytes()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | SymbolDumpDelegate.h | 25 virtual void printRelocatedField(StringRef Label, uint32_t RelocOffset, 28 virtual void printBinaryBlockWithRelocs(StringRef Label,
|