Home
last modified time | relevance | path

Searched refs:Label (Results 1 – 25 of 428) sorted by relevance

12345678910>>...18

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DScopedPrinter.h96 void printEnum(StringRef Label, T Value, in printEnum() argument
109 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n"; in printEnum()
111 startLine() << Label << ": " << hex(Value) << "\n"; in printEnum()
116 void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags,
143 startLine() << Label << " [ (" << hex(Value) << ")\n";
150 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() argument
151 startLine() << Label << " [ (" << hex(Value) << ")\n"; in printFlags()
163 void printNumber(StringRef Label, uint64_t Value) { in printNumber() argument
164 startLine() << Label << ": " << Value << "\n"; in printNumber()
167 void printNumber(StringRef Label, uint32_t Value) { in printNumber() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp87 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel() argument
89 LabelOffsets.insert({Label, Target}); in emitLabel()
90 auto It = LabelRelocs.find(Label); in emitLabel()
104 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset() argument
109 auto It = LabelOffsets.find(Label); in getOffset()
115 LabelRelocs[Label].push_back(Position); in getOffset()
152 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue() argument
153 return emitJt(getOffset(Label), SourceInfo{}); in jumpTrue()
156 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse() argument
157 return emitJf(getOffset(Label), SourceInfo{}); in jumpFalse()
[all …]
H A DByteCodeEmitter.h48 void emitLabel(LabelTy Label);
63 bool jumpTrue(const LabelTy &Label);
64 bool jumpFalse(const LabelTy &Label);
65 bool jump(const LabelTy &Label);
66 bool fallthrough(const LabelTy &Label);
97 int32_t getOffset(LabelTy Label);
H A DEvalEmitter.cpp45 void EvalEmitter::emitLabel(LabelTy Label) { in emitLabel() argument
46 CurrentLabel = Label; in emitLabel()
69 bool EvalEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue() argument
72 ActiveLabel = Label; in jumpTrue()
77 bool EvalEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse() argument
80 ActiveLabel = Label; in jumpFalse()
85 bool EvalEmitter::jump(const LabelTy &Label) { in jump() argument
87 CurrentLabel = ActiveLabel = Label; in jump()
91 bool EvalEmitter::fallthrough(const LabelTy &Label) { in fallthrough() argument
93 ActiveLabel = Label; in fallthrough()
[all …]
H A DEvalEmitter.h52 void emitLabel(LabelTy Label);
65 bool jumpTrue(const LabelTy &Label);
66 bool jumpFalse(const LabelTy &Label);
67 bool jump(const LabelTy &Label);
68 bool fallthrough(const LabelTy &Label);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DUsingDeclarationsSorter.cpp69 std::string Label; member
71 UsingDeclaration(const AnnotatedLine *Line, const std::string &Label) in UsingDeclaration()
72 : Line(Line), Label(Label) {} in UsingDeclaration()
75 return compareLabels(Label, Other.Label) < 0; in operator <()
89 std::string Label; in computeUsingDeclarationLabel() local
92 Label.append("typename "); in computeUsingDeclarationLabel()
96 Label.append("::"); in computeUsingDeclarationLabel()
102 Label.append(Tok->TokenText.str()); in computeUsingDeclarationLabel()
106 Label.append("::"); in computeUsingDeclarationLabel()
110 return Label; in computeUsingDeclarationLabel()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCStreamer.cpp479 MCSymbol *Label = emitCFILabel(); in emitCFIDefCfa() local
481 MCCFIInstruction::cfiDefCfa(Label, Register, Offset); in emitCFIDefCfa()
490 MCSymbol *Label = emitCFILabel(); in emitCFIDefCfaOffset() local
492 MCCFIInstruction::cfiDefCfaOffset(Label, Offset); in emitCFIDefCfaOffset()
500 MCSymbol *Label = emitCFILabel(); in emitCFIAdjustCfaOffset() local
502 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment); in emitCFIAdjustCfaOffset()
510 MCSymbol *Label = emitCFILabel(); in emitCFIDefCfaRegister() local
512 MCCFIInstruction::createDefCfaRegister(Label, Register); in emitCFIDefCfaRegister()
521 MCSymbol *Label = emitCFILabel(); in emitCFIOffset() local
523 MCCFIInstruction::createOffset(Label, Register, Offset); in emitCFIOffset()
[all …]
H A DMCSection.cpp103 PendingLabel& Label = *It; in flushPendingLabels() local
104 if (Label.Subsection == Subsection) { in flushPendingLabels()
105 Label.Sym->setFragment(F); in flushPendingLabels()
106 Label.Sym->setOffset(FOffset); in flushPendingLabels()
116 PendingLabel& Label = PendingLabels[0]; in flushPendingLabels() local
118 this->getSubsectionInsertionPoint(Label.Subsection); in flushPendingLabels()
122 flushPendingLabels(F, 0, Label.Subsection); in flushPendingLabels()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp46 MCSymbol *Label; member
161 MCSymbol *Label = getContext().createTempSymbol("cfi", true); in emitFPOLabel() local
162 getStreamer().emitLabel(Label); in emitFPOLabel()
163 return Label; in emitFPOLabel()
207 Inst.Label = emitFPOLabel(); in emitFPOSetFrame()
218 Inst.Label = emitFPOLabel(); in emitFPOPushReg()
229 Inst.Label = emitFPOLabel(); in emitFPOStackAlloc()
247 Inst.Label = emitFPOLabel(); in emitFPOStackAlign()
286 void emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label);
312 void FPOStateMachine::emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label) { in emitFrameDataRecord() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineOperand.cpp616 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local
617 MachineOperand::printSymbol(OS, *Label); in printCFI()
622 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local
623 MachineOperand::printSymbol(OS, *Label); in printCFI()
627 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local
628 MachineOperand::printSymbol(OS, *Label); in printCFI()
632 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local
633 MachineOperand::printSymbol(OS, *Label); in printCFI()
639 if (MCSymbol *Label = CFI.getLabel()) in printCFI() local
640 MachineOperand::printSymbol(OS, *Label); in printCFI()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
H A Dhello.cs22 private Label label1;
23 private Label label2;
29 label1 = new Label(); in HelloWindow()
34 label2 = new Label(); in HelloWindow()
43 Label okLabel = new Label(); in HelloWindow()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCDwarf.h160 MCSymbol *Label; variable
169 : MCDwarfLoc(loc), Label(label) {} in MCDwarfLineEntry()
171 MCSymbol *getLabel() const { return Label; } in getLabel()
220 MCSymbol *Label = nullptr; member
353 return Header.Label; in getLabel()
356 void setLabel(MCSymbol *Label) { in setLabel() argument
357 Header.Label = Label; in setLabel()
422 MCSymbol *Label; variable
428 Label(label) {} in MCGenDwarfLabelEntry()
433 MCSymbol *getLabel() const { return Label; } in getLabel()
[all …]
H A DMCCodeView.h32 const MCSymbol *Label = nullptr; variable
42 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, in MCCVLoc() argument
44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
51 const MCSymbol *getLabel() const { return Label; } in getLabel()
67 void setLabel(const MCSymbol *L) { Label = L; } in setLabel()
165 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
H A DMCPseudoProbe.h70 MCSymbol *Label; variable
77 MCPseudoProbe(MCSymbol *Label, uint64_t Guid, uint64_t Index, uint64_t Type, in MCPseudoProbe() argument
79 : Label(Label), Guid(Guid), Index(Index), Type(Type), in MCPseudoProbe()
86 MCSymbol *getLabel() const { return Label; } in getLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp62 MCSymbol *Label = getContext().createTempSymbol("cfi", true); in emitCFILabel() local
63 MCELFStreamer::emitLabel(Label); in emitCFILabel()
64 return Label; in emitCFILabel()
79 auto *Label = cast<MCSymbolELF>(L); in createPendingLabelRelocs() local
80 getAssembler().registerSymbol(*Label); in createPendingLabelRelocs()
81 Label->setOther(ELF::STO_MIPS_MICROMIPS); in createPendingLabelRelocs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DSyncDependenceAnalysis.cpp271 const auto *Label = BlockLabels[BlockIdx]; in printDefs() local
274 if (!Label) { in printDefs()
277 Out << Label->getName() << "\n"; in printDefs()
369 const auto *Label = BlockLabels[BlockIdx]; in computeJoinPoints() local
370 if (!Label) in computeJoinPoints()
389 CausedJoin |= visitLoopExitEdge(*BlockLoopExit, *Label, IsParentLoop); in computeJoinPoints()
396 CausedJoin |= visitEdge(*SuccBlock, *Label); in computeJoinPoints()
406 } else if (FloorLabel != Label) { in computeJoinPoints()
410 FloorLabel = Label; in computeJoinPoints()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64WinCOFFStreamer.cpp75 MCSymbol *Label = S.emitCFILabel(); in EmitARM64WinUnwindCode() local
76 auto Inst = WinEH::Instruction(UnwindCode, Label, Reg, Offset); in EmitARM64WinUnwindCode()
178 MCSymbol *Label = S.emitCFILabel(); in EmitARM64WinCFIPrologEnd() local
179 CurFrame->PrologEnd = Label; in EmitARM64WinCFIPrologEnd()
180 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0); in EmitARM64WinCFIPrologEnd()
202 MCSymbol *Label = S.emitCFILabel(); in EmitARM64WinCFIEpilogEnd() local
203 WinEH::Instruction Inst = WinEH::Instruction(Win64EH::UOP_End, Label, -1, 0); in EmitARM64WinCFIEpilogEnd()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPrettyClassLayoutGraphicalDumper.cpp114 std::string Label = "base"; in dump() local
116 Label.insert(Label.begin(), 'v'); in dump()
118 Label.insert(Label.begin(), 'i'); in dump()
120 Printer << Label << " "; in dump()
H A DFormatUtil.cpp51 std::string llvm::pdb::truncateQuotedNameFront(StringRef Label, StringRef Name, in truncateQuotedNameFront() argument
53 uint32_t RequiredExtraChars = Label.size() + 1 + 2; in truncateQuotedNameFront()
55 return formatv("{0} \"{1}\"", Label, Name).str(); in truncateQuotedNameFront()
59 return formatv("{0} \"{1}\"", Label, TN).str(); in truncateQuotedNameFront()
62 std::string llvm::pdb::truncateQuotedNameBack(StringRef Label, StringRef Name, in truncateQuotedNameBack() argument
64 uint32_t RequiredExtraChars = Label.size() + 1 + 2; in truncateQuotedNameBack()
66 return formatv("{0} \"{1}\"", Label, Name).str(); in truncateQuotedNameBack()
70 return formatv("{0} \"{1}\"", Label, TN).str(); in truncateQuotedNameBack()
H A DLinePrinter.cpp102 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() argument
105 OS << Label << " ("; in formatBinary()
115 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() argument
118 OS << Label << " ("; in formatBinary()
174 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() argument
209 formatMsfStreamData(Label, File, Layout, Substream); in formatMsfStreamData()
212 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() argument
220 OS << Label << " ("; in formatMsfStreamData()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp158 void AsmPrinter::emitDwarfSymbolReference(const MCSymbol *Label, in emitDwarfSymbolReference() argument
165 OutStreamer->EmitCOFFSecRel32(Label, /*Offset=*/0); in emitDwarfSymbolReference()
171 OutStreamer->emitSymbolValue(Label, getDwarfOffsetByteSize()); in emitDwarfSymbolReference()
177 emitLabelDifference(Label, Label->getSection().getBeginSymbol(), in emitDwarfSymbolReference()
192 void AsmPrinter::emitDwarfOffset(const MCSymbol *Label, uint64_t Offset) const { in emitDwarfOffset() argument
193 emitLabelPlusOffset(Label, Offset, getDwarfOffsetByteSize()); in emitDwarfOffset()
H A DDwarfCompileUnit.cpp69 const MCSymbol *Label) { in addLabelAddress() argument
72 return addLocalLabelAddress(Die, Attribute, Label); in addLabelAddress()
74 if (Label) in addLabelAddress()
75 DD->addArangeLabel(SymbolCU(this, Label)); in addLabelAddress()
81 if (Label->isInSection() && UseAddrOffsetFormOrExpressions) in addLabelAddress()
82 Base = DD->getSectionLabel(&Label->getSection()); in addLabelAddress()
84 if (!Base || Base == Label) { in addLabelAddress()
85 unsigned idx = DD->getAddressPool().getIndex(Label); in addLabelAddress()
100 addPoolOpAddress(*Loc, Label); in addLabelAddress()
105 DD->getAddressPool().getIndex(Base), Label, Base)); in addLabelAddress()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-gnome/
H A Dhello.cc30 Gtk::Label *label1; in main()
32 Gtk::Label *label2; in main()
51 label1 = new Gtk::Label (_("Hello, world!")); in main()
56 …label2 = new Gtk::Label (g_strdup_printf (_("This program is running as process number %d."), getp… in main()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
H A DHello.java24 Label label1 = new Label(GettextResource.gettext(catalog,"Hello, world!")); in main()
25 Label label2 = in main()
26 new Label( in main()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/FileCheck/
H A DFileCheck.cpp325 std::string Label; member
406 llvm::raw_string_ostream Label(A.Label); in BuildInputAnnotations() local
407 Label << GetCheckTypeAbbreviation(DiagItr->CheckTy) << ":"; in BuildInputAnnotations()
409 Label << CheckLineAndCol.first; in BuildInputAnnotations()
412 Label << "imp" << (CheckBufferID - ImpPatBufferIDRange.first + 1); in BuildInputAnnotations()
417 Label << "'" << DiagIndexPerPattern[DiagItr->CheckLoc]++; in BuildInputAnnotations()
418 Label.flush(); in BuildInputAnnotations()
419 LabelWidth = std::max((std::string::size_type)LabelWidth, A.Label.size()); in BuildInputAnnotations()
467 B.Label = A.Label; in BuildInputAnnotations()
700 COS << left_justify(AnnotationItr->Label, LabelWidth) << " "; in DumpAnnotatedInput()

12345678910>>...18