Home
last modified time | relevance | path

Searched refs:Annotation (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp458 for (auto &Annotation : InlineSite.annotations()) { in visitKnownRecord() local
459 switch (Annotation.OpCode) { in visitKnownRecord()
466 W.printHex(Annotation.Name, Annotation.U1); in visitKnownRecord()
473 W.printNumber(Annotation.Name, Annotation.U1); in visitKnownRecord()
477 W.printNumber(Annotation.Name, Annotation.S1); in visitKnownRecord()
482 ObjDelegate->getFileNameForFileOffset(Annotation.U1), in visitKnownRecord()
483 Annotation.U1); in visitKnownRecord()
485 W.printHex("ChangeFile", Annotation.U1); in visitKnownRecord()
491 << W.hex(Annotation.U1) << ", LineOffset: " << Annotation.S1 in visitKnownRecord()
497 << W.hex(Annotation.U2) in visitKnownRecord()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTokenKinds.def720 // Annotation for #pragma unused(...)
725 // Annotation for #pragma GCC visibility...
730 // Annotation for #pragma pack...
750 // Annotation for #pragma ms_struct...
755 // Annotation for #pragma align...
760 // Annotation for #pragma weak id
765 // Annotation for #pragma weak id = id
770 // Annotation for #pragma redefine_extname...
780 // Annotation for #pragma STDC FENV_ACCESS
790 // Annotation for #pragma vtordisp...
[all …]
H A DBuiltins.def1386 // Annotation function
H A DAttr.td667 let Args = [StringArgument<"Annotation">];
H A DAttrDocs.td1945 def DocCatConsumed : DocumentationCategory<"Consumed Annotation Checking"> {
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp989 NestedNameSpecifierAnnotation *Annotation in SaveNestedNameSpecifierAnnotation() local
991 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation()
992 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation()
993 return Annotation; in SaveNestedNameSpecifierAnnotation()
1004 NestedNameSpecifierAnnotation *Annotation in RestoreNestedNameSpecifierAnnotation() local
1006 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); in RestoreNestedNameSpecifierAnnotation()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolAnnotation.h21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
H A DPDBTypes.h192 Annotation, enumerator
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/InstPrinter/
H A DLanaiInstPrinter.cpp139 StringRef Annotation, in printInst() argument
143 printAnnotation(OS, Annotation); in printInst()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp74 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation) in createSymbol()
H A DPDBExtras.cpp209 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS) in operator <<()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h316 uint32_t Annotation = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() local
317 Result.S1 = DecodeSignedOperand(Annotation >> 4); in ParseCurrentAnnotation()
318 Result.U1 = Annotation & 0xf; in ParseCurrentAnnotation()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCCodeView.cpp411 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation, in compressAnnotation() argument
413 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer); in compressAnnotation()
/freebsd-12.1/contrib/gdb/gdb/doc/
H A Dannotate.texinfo95 @chapter What is an Annotation?
145 @chapter Limitations of the Annotation Interface
548 @chapter Annotation for @value{GDBN} Input
H A Dgdb.info-28462 What is an Annotation?
8486 Annotation Interface: (annotate)Limitations.). This chapter describes
8533 Annotation for GDB Input
H A Dgdb.texinfo18455 @section What is an Annotation?
18480 been made obsolete (@pxref{Limitations, , Limitations of the Annotation
18527 @section Annotation for @value{GDBN} Input
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h5531 void RestoreNestedNameSpecifierAnnotation(void *Annotation,