Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTokenKinds.def767 // Annotation for #pragma unused(...)
772 // Annotation for #pragma GCC visibility...
777 // Annotation for #pragma pack...
782 // Annotation for #pragma clang __debug parser_crash...
787 // Annotation for #pragma clang __debug captured...
792 // Annotation for #pragma clang __debug dump...
797 // Annotation for #pragma ms_struct...
802 // Annotation for #pragma align...
807 // Annotation for #pragma weak id
812 // Annotation for #pragma weak id = id
[all …]
H A DAttr.td773 let Args = [StringArgument<"Annotation">, VariadicExprArgument<"Args">];
777 static AnnotateAttr *Create(ASTContext &Ctx, llvm::StringRef Annotation, \
779 return AnnotateAttr::Create(Ctx, Annotation, nullptr, 0, CommonInfo);
781 static AnnotateAttr *CreateImplicit(ASTContext &Ctx, llvm::StringRef Annotation, \
783 return AnnotateAttr::CreateImplicit(Ctx, Annotation, nullptr, 0, CommonInfo);
H A DBuiltins.def1515 // Annotation function
H A DAttrDocs.td2489 def DocCatConsumed : DocumentationCategory<"Consumed Annotation Checking"> {
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagInstr.cpp18 if (const auto *Annotation = getOpcodeAnnotation()) in print() local
19 OS << Annotation->TheDef->getName(); in print()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp1000 NestedNameSpecifierAnnotation *Annotation in SaveNestedNameSpecifierAnnotation() local
1002 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation()
1003 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation()
1004 return Annotation; in SaveNestedNameSpecifierAnnotation()
1015 NestedNameSpecifierAnnotation *Annotation in RestoreNestedNameSpecifierAnnotation() local
1017 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); in RestoreNestedNameSpecifierAnnotation()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolAnnotation.h20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
H A DPDBTypes.h252 Annotation, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiInstPrinter.cpp141 StringRef Annotation, in printInst() argument
146 printAnnotation(OS, Annotation); in printInst()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h310 uint32_t Annotation = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() local
311 Result.S1 = DecodeSignedOperand(Annotation >> 4); in ParseCurrentAnnotation()
312 Result.U1 = Annotation & 0xf; in ParseCurrentAnnotation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp73 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation) in createSymbol()
H A DPDBExtras.cpp247 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS) in operator <<()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp410 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation, in compressAnnotation() argument
412 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer); in compressAnnotation()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstruction.h346 void addAnnotationMetadata(StringRef Annotation);
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dj_objnew_example.txt754 311496 [Ljava/lang/annotation/Annotation;
1379 311496 4 [Ljava/lang/annotation/Annotation;
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dj_objnew_example.txt754 311496 [Ljava/lang/annotation/Annotation;
1379 311496 4 [Ljava/lang/annotation/Annotation;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DVerifier.cpp463 void visitAnnotationMetadata(MDNode *Annotation);
4376 void Verifier::visitAnnotationMetadata(MDNode *Annotation) { in visitAnnotationMetadata() argument
4377 Assert(isa<MDTuple>(Annotation), "annotation must be a tuple"); in visitAnnotationMetadata()
4378 Assert(Annotation->getNumOperands() >= 1, in visitAnnotationMetadata()
4380 for (const MDOperand &Op : Annotation->operands()) in visitAnnotationMetadata()
4548 if (MDNode *Annotation = I.getMetadata(LLVMContext::MD_annotation)) in visitInstruction() local
4549 visitAnnotationMetadata(Annotation); in visitInstruction()
/netbsd-src/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c2513 CXString Annotation; in print_completion_result() local
2548 Annotation = in print_completion_result()
2550 fprintf(file, "\"%s\"", clang_getCString(Annotation)); in print_completion_result()
2551 clang_disposeString(Annotation); in print_completion_result()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DInternalsManual.rst1087 translation by replacing tokens returned by the preprocessor with "Annotation
1092 Annotation Tokens
1095 Annotation tokens are tokens that are synthesized by the parser and injected
1105 Annotation tokens are created by the parser and reinjected into the parser's
1123 * **TokenKind "Kind"** --- This indicates the kind of Annotation token this is.
1126 Annotation tokens currently come in three kinds:
/netbsd-src/external/gpl3/binutils/dist/bfd/doc/
H A Dreloc.texi1411 Annotation of BX instructions.
/netbsd-src/external/gpl3/binutils.old/dist/bfd/doc/
H A Dreloc.texi1472 Annotation of BX instructions.
H A Dbfd.info4743 Annotation of BX instructions.
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h6545 void RestoreNestedNameSpecifierAnnotation(void *Annotation,
/netbsd-src/external/gpl3/gdb/dist/gdb/doc/
H A DChangeLog-1991-202110402 to "Limitations of the Annotation Interface" in annotate.texi.
10427 "Migrating to GDB/MI" and "Limitations of the Annotation

12