| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| D | SymbolDumper.cpp | 458 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-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| D | TokenKinds.def | 770 // Annotation for #pragma unused(...) 775 // Annotation for #pragma GCC visibility... 780 // Annotation for #pragma pack... 785 // Annotation for #pragma clang __debug parser_crash... 790 // Annotation for #pragma clang __debug captured... 795 // Annotation for #pragma clang __debug dump... 800 // Annotation for #pragma ms_struct... 805 // Annotation for #pragma align... 810 // Annotation for #pragma weak id 815 // Annotation for #pragma weak id = id [all …]
|
| D | Attr.td | 773 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);
|
| D | Builtins.def | 1516 // Annotation function
|
| D | AttrDocs.td | 2489 def DocCatConsumed : DocumentationCategory<"Consumed Annotation Checking"> {
|
| /freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| D | GIMatchDagInstr.cpp | 18 if (const auto *Annotation = getOpcodeAnnotation()) in print() local 19 OS << Annotation->TheDef->getName(); in print()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaCXXScopeSpec.cpp | 1014 NestedNameSpecifierAnnotation *Annotation in SaveNestedNameSpecifierAnnotation() local 1016 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation() 1017 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation() 1018 return Annotation; in SaveNestedNameSpecifierAnnotation() 1029 NestedNameSpecifierAnnotation *Annotation in RestoreNestedNameSpecifierAnnotation() local 1031 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); in RestoreNestedNameSpecifierAnnotation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| D | PDBSymbolAnnotation.h | 20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
|
| D | PDBTypes.h | 252 Annotation, enumerator
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/ |
| D | LanaiInstPrinter.cpp | 141 StringRef Annotation, in printInst() argument 146 printAnnotation(OS, Annotation); in printInst()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| D | SymbolRecord.h | 310 uint32_t Annotation = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() local 311 Result.S1 = DecodeSignedOperand(Annotation >> 4); in ParseCurrentAnnotation() 312 Result.U1 = Annotation & 0xf; in ParseCurrentAnnotation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| D | PDBSymbol.cpp | 73 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation) in createSymbol()
|
| D | PDBExtras.cpp | 247 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS) in operator <<()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/ |
| D | MCCodeView.cpp | 410 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation, in compressAnnotation() argument 412 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer); in compressAnnotation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | Instruction.h | 353 void addAnnotationMetadata(StringRef Annotation);
|
| /freebsd-12-stable/contrib/gdb/gdb/doc/ |
| D | annotate.texinfo | 95 @chapter What is an Annotation? 145 @chapter Limitations of the Annotation Interface 548 @chapter Annotation for @value{GDBN} Input
|
| D | gdb.info-2 | 8462 What is an Annotation? 8486 Annotation Interface: (annotate)Limitations.). This chapter describes 8533 Annotation for GDB Input
|
| D | gdb.texinfo | 18455 @section What is an Annotation? 18480 been made obsolete (@pxref{Limitations, , Limitations of the Annotation 18527 @section Annotation for @value{GDBN} Input
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | Verifier.cpp | 463 void visitAnnotationMetadata(MDNode *Annotation); 4342 void Verifier::visitAnnotationMetadata(MDNode *Annotation) { in visitAnnotationMetadata() argument 4343 Assert(isa<MDTuple>(Annotation), "annotation must be a tuple"); in visitAnnotationMetadata() 4344 Assert(Annotation->getNumOperands() >= 1, in visitAnnotationMetadata() 4346 for (const MDOperand &Op : Annotation->operands()) in visitAnnotationMetadata() 4511 if (MDNode *Annotation = I.getMetadata(LLVMContext::MD_annotation)) in visitInstruction() local 4512 visitAnnotationMetadata(Annotation); in visitInstruction()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| D | Sema.h | 6618 void RestoreNestedNameSpecifierAnnotation(void *Annotation,
|