Searched refs:Label (Results 1 - 25 of 171) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h142 void printEnum(StringRef Label, T Value, argument
155 printHex(Label, Name, Value);
157 printHex(Label, Value);
161 void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags, argument
185 printFlagsImpl(Label, hex(Value), SetFlags);
188 template <typename T> void printFlags(StringRef Label, T Value) { argument
198 printFlagsImpl(Label, hex(Value), SetFlags);
201 virtual void printNumber(StringRef Label, char Value) { argument
202 startLine() << Label << ": " << static_cast<int>(Value) << "\n";
205 virtual void printNumber(StringRef Label, signe argument
209 printNumber(StringRef Label, unsigned char Value) argument
213 printNumber(StringRef Label, short Value) argument
217 printNumber(StringRef Label, unsigned short Value) argument
221 printNumber(StringRef Label, int Value) argument
225 printNumber(StringRef Label, unsigned int Value) argument
229 printNumber(StringRef Label, long Value) argument
233 printNumber(StringRef Label, unsigned long Value) argument
237 printNumber(StringRef Label, long long Value) argument
241 printNumber(StringRef Label, unsigned long long Value) argument
245 printNumber(StringRef Label, const APSInt &Value) argument
249 printNumber(StringRef Label, float Value) argument
253 printNumber(StringRef Label, double Value) argument
258 printNumber(StringRef Label, StringRef Str, T Value) argument
262 printBoolean(StringRef Label, bool Value) argument
266 printVersion(StringRef Label, T... Version) argument
273 printList(StringRef Label, const ArrayRef<T> List) argument
280 printList(StringRef Label, const ArrayRef<bool> List) argument
284 printList(StringRef Label, const ArrayRef<std::string> List) argument
288 printList(StringRef Label, const ArrayRef<uint64_t> List) argument
292 printList(StringRef Label, const ArrayRef<uint32_t> List) argument
296 printList(StringRef Label, const ArrayRef<uint16_t> List) argument
300 printList(StringRef Label, const ArrayRef<uint8_t> List) argument
307 printList(StringRef Label, const ArrayRef<int64_t> List) argument
311 printList(StringRef Label, const ArrayRef<int32_t> List) argument
315 printList(StringRef Label, const ArrayRef<int16_t> List) argument
319 printList(StringRef Label, const ArrayRef<int8_t> List) argument
326 printList(StringRef Label, const ArrayRef<APSInt> List) argument
331 printList(StringRef Label, const T &List, const U &Printer) argument
341 printHexList(StringRef Label, const T &List) argument
348 printHex(StringRef Label, T Value) argument
352 printHex(StringRef Label, StringRef Str, T Value) argument
357 printSymbolOffset(StringRef Label, StringRef Symbol, T Value) argument
363 printString(StringRef Label, StringRef Value) argument
367 printStringEscaped(StringRef Label, StringRef Value) argument
371 printBinary(StringRef Label, StringRef Str, ArrayRef<uint8_t> Value) argument
375 printBinary(StringRef Label, StringRef Str, ArrayRef<char> Value) argument
381 printBinary(StringRef Label, ArrayRef<uint8_t> Value) argument
385 printBinary(StringRef Label, ArrayRef<char> Value) argument
391 printBinary(StringRef Label, StringRef Value) argument
397 printBinaryBlock(StringRef Label, ArrayRef<uint8_t> Value, uint32_t StartOffset) argument
402 printBinaryBlock(StringRef Label, ArrayRef<uint8_t> Value) argument
406 printBinaryBlock(StringRef Label, StringRef Value) argument
412 printObject(StringRef Label, const T &Value) argument
418 objectBegin(StringRef Label) argument
424 arrayBegin(StringRef Label) argument
454 printFlagsImpl(StringRef Label, HexNumber Value, ArrayRef<FlagEntry> Flags) argument
462 printFlagsImpl(StringRef Label, HexNumber Value, ArrayRef<HexNumber> Flags) argument
470 printListImpl(StringRef Label, const T List) argument
478 printHexListImpl(StringRef Label, const ArrayRef<HexNumber> List) argument
487 printHexImpl(StringRef Label, HexNumber Value) argument
491 printHexImpl(StringRef Label, StringRef Str, HexNumber Value) argument
495 printSymbolOffsetImpl(StringRef Label, StringRef Symbol, HexNumber Value) argument
500 printNumberImpl(StringRef Label, StringRef Str, StringRef Value) argument
505 printStringEscapedImpl(StringRef Label, StringRef Value) argument
516 scopedBegin(StringRef Label, char Symbol) argument
537 printHex(StringRef Label, support::ulittle16_t Value) argument
749 printListImpl(StringRef Label, const T &List) argument
816 scopedBegin(StringRef Label, Scope Ctx) argument
[all...]
/freebsd-current/contrib/bsddialog/examples_utility/
H A Dmixedform.sh19 Label: 0 0 Entry 0 10 18 25 0 \
20 Label: 1 0 Read-Only 1 10 18 25 2 \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDumpDelegate.h24 virtual void printRelocatedField(StringRef Label, uint32_t RelocOffset,
27 virtual void printBinaryBlockWithRelocs(StringRef Label,
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DScopedPrinter.cpp14 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str, argument
21 startLine() << Label;
31 startLine() << Label << ":";
/freebsd-current/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeEmitter.h42 void emitLabel(LabelTy Label);
52 bool jumpTrue(const LabelTy &Label);
53 bool jumpFalse(const LabelTy &Label);
54 bool jump(const LabelTy &Label);
55 bool fallthrough(const LabelTy &Label);
78 /// Label information for linker.
88 int32_t getOffset(LabelTy Label);
H A DEvalEmitter.h49 void emitLabel(LabelTy Label);
58 bool jumpTrue(const LabelTy &Label);
59 bool jumpFalse(const LabelTy &Label);
60 bool jump(const LabelTy &Label);
61 bool fallthrough(const LabelTy &Label);
107 /// Label being executed - 0 is the entry label.
H A DByteCodeEmitter.cpp146 void ByteCodeEmitter::emitLabel(LabelTy Label) { argument
148 LabelOffsets.insert({Label, Target});
150 if (auto It = LabelRelocs.find(Label);
165 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { argument
172 if (auto It = LabelOffsets.find(Label);
177 LabelRelocs[Label].push_back(Position);
248 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { argument
249 return emitJt(getOffset(Label), SourceInfo{});
252 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { argument
253 return emitJf(getOffset(Label), SourceInf
256 jump(const LabelTy &Label) argument
260 fallthrough(const LabelTy &Label) argument
[all...]
H A DEvalEmitter.cpp54 void EvalEmitter::emitLabel(LabelTy Label) { argument
55 CurrentLabel = Label;
82 bool EvalEmitter::jumpTrue(const LabelTy &Label) { argument
85 ActiveLabel = Label;
90 bool EvalEmitter::jumpFalse(const LabelTy &Label) { argument
93 ActiveLabel = Label;
98 bool EvalEmitter::jump(const LabelTy &Label) { argument
100 CurrentLabel = ActiveLabel = Label;
104 bool EvalEmitter::fallthrough(const LabelTy &Label) { argument
106 ActiveLabel = Label;
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h24 // The instance number of this Directional Local Label.
36 /// Get the current instance of this Directional Local Label.
39 /// Increment the current instance of this Directional Local Label.
49 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { argument
50 Label.print(OS);
H A DMCCodeView.h39 const MCSymbol *Label = nullptr; member in class:llvm::MCCVLoc
49 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, argument
51 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line),
58 const MCSymbol *getLabel() const { return Label; }
74 void setLabel(const MCSymbol *L) { Label = L; }
175 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
H A DConstantPools.h33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
35 MCSymbol *Label; member in struct:llvm::ConstantPoolEntry
H A DMCDwarf.h189 MCSymbol *Label; member in class:llvm::MCDwarfLineEntry
198 : MCDwarfLoc(loc), Label(label) {}
200 MCSymbol *getLabel() const { return Label; }
207 Label = EndLabel;
262 MCSymbol *Label = nullptr; member in struct:llvm::MCDwarfLineTableHeader
403 return Header.Label;
406 void setLabel(MCSymbol *Label) { argument
407 Header.Label = Label;
465 MCSymbol *Label; member in class:llvm::MCGenDwarfLabelEntry
508 MCSymbol *Label; member in class:llvm::MCCFIInstruction
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DUsingDeclarationsSorter.cpp96 std::string Label; member in struct:clang::format::__anon685::UsingDeclaration
98 UsingDeclaration(const AnnotatedLine *Line, const std::string &Label) argument
99 : Line(Line), Label(Label) {}
112 std::string Label; local
115 Label.append("typename ");
119 Label.append("::");
125 Label.append(Tok->TokenText.str());
129 Label.append("::");
133 return Label;
233 std::string Label = computeUsingDeclarationLabel(UsingTok); local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp100 PendingLabel& Label = *It; local
101 if (Label.Subsection == Subsection) {
102 Label.Sym->setFragment(F);
103 Label.Sym->setOffset(FOffset);
113 PendingLabel& Label = PendingLabels[0]; local
115 this->getSubsectionInsertionPoint(Label.Subsection);
123 flushPendingLabels(F, 0, Label.Subsection);
H A DMCStreamer.cpp497 MCSymbol *Label = emitCFILabel(); local
499 MCCFIInstruction::cfiDefCfa(Label, Register, Offset, Loc);
508 MCSymbol *Label = emitCFILabel(); local
510 MCCFIInstruction::cfiDefCfaOffset(Label, Offset);
518 MCSymbol *Label = emitCFILabel(); local
520 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment, Loc);
528 MCSymbol *Label = emitCFILabel(); local
530 MCCFIInstruction::createDefCfaRegister(Label, Register, Loc);
540 MCSymbol *Label = emitCFILabel(); local
542 Label, Registe
551 MCSymbol *Label = emitCFILabel(); local
561 MCSymbol *Label = emitCFILabel(); local
588 MCSymbol *Label = emitCFILabel(); local
599 MCSymbol *Label = emitCFILabel(); local
609 MCSymbol *Label = emitCFILabel(); local
619 MCSymbol *Label = emitCFILabel(); local
629 MCSymbol *Label = emitCFILabel(); local
639 MCSymbol *Label = emitCFILabel(); local
656 MCSymbol *Label = emitCFILabel(); local
667 MCSymbol *Label = emitCFILabel(); local
677 MCSymbol *Label = emitCFILabel(); local
686 MCSymbol *Label = emitCFILabel(); local
742 MCSymbol *Label = emitCFILabel(); local
760 MCSymbol *Label = emitCFILabel(); local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp62 MCSymbol *Label = getContext().createTempSymbol("cfi", true); local
63 MCELFStreamer::emitLabel(Label);
64 return Label;
79 auto *Label = cast<MCSymbolELF>(L); local
80 getAssembler().registerSymbol(*Label);
81 Label->setOther(ELF::STO_MIPS_MICROMIPS);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DErlangGCPrinter.cpp82 MCSymbol *Label = P.Label; local
83 AP.emitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/);
H A DDebugLocStream.cpp23 Lists.back().Label = Asm.createTempSymbol("debug_loc");
H A DWinException.h82 const MCExpr *getLabel(const MCSymbol *Label);
83 const MCExpr *getLabelPlusOne(const MCSymbol *Label);
H A DAsmPrinterDwarf.cpp132 void AsmPrinter::emitDwarfSymbolReference(const MCSymbol *Label, argument
139 OutStreamer->emitCOFFSecRel32(Label, /*Offset=*/0);
145 OutStreamer->emitSymbolValue(Label, getDwarfOffsetByteSize());
151 emitLabelDifference(Label, Label->getSection().getBeginSymbol(),
166 void AsmPrinter::emitDwarfOffset(const MCSymbol *Label, uint64_t Offset) const { argument
167 emitLabelPlusOffset(Label, Offset, getDwarfOffsetByteSize());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolExe.h38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
H A DPDBSymbolLabel.h20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Label)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp47 MCSymbol *Label; member in struct:__anon2835::FPOInstruction
162 MCSymbol *Label = getContext().createTempSymbol("cfi", true); local
163 getStreamer().emitLabel(Label);
164 return Label;
208 Inst.Label = emitFPOLabel();
219 Inst.Label = emitFPOLabel();
230 Inst.Label = emitFPOLabel();
248 Inst.Label = emitFPOLabel();
287 void emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label);
313 void FPOStateMachine::emitFrameDataRecord(MCStreamer &OS, MCSymbol *Label) {
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp125 const char *Label = Directive;
131 OS << Label << (unsigned)*It;
132 if (Label == Directive)
133 Label = ",";
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DGCMetadata.h58 MCSymbol *Label; ///< A label. member in struct:llvm::GCPoint
62 : Label(L), Loc(std::move(DL)) {}
130 void addSafePoint(MCSymbol *Label, const DebugLoc &DL) { argument
131 SafePoints.emplace_back(Label, DL);

Completed in 311 milliseconds

1234567