| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolDumper.cpp | 456 for (auto &Annotation : InlineSite.annotations()) { in visitKnownRecord() local 457 switch (Annotation.OpCode) { in visitKnownRecord() 464 W.printHex(Annotation.Name, Annotation.U1); in visitKnownRecord() 471 W.printNumber(Annotation.Name, Annotation.U1); in visitKnownRecord() 475 W.printNumber(Annotation.Name, Annotation.S1); in visitKnownRecord() 480 ObjDelegate->getFileNameForFileOffset(Annotation.U1), in visitKnownRecord() 481 Annotation.U1); in visitKnownRecord() 483 W.printHex("ChangeFile", Annotation.U1); in visitKnownRecord() 489 << W.hex(Annotation.U1) << ", LineOffset: " << Annotation.S1 in visitKnownRecord() 495 << W.hex(Annotation.U2) in visitKnownRecord() [all …]
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | GIMatchDagInstr.cpp | |
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TokenKinds.def | 888 // Annotation for #pragma unused(...) 893 // Annotation for #pragma GCC visibility... 898 // Annotation for #pragma pack... 903 // Annotation for #pragma clang __debug parser_crash... 908 // Annotation for #pragma clang __debug captured... 913 // Annotation for #pragma clang __debug dump... 918 // Annotation for #pragma ms_struct... 923 // Annotation for #pragma align... 928 // Annotation for #pragma weak id 933 // Annotation for #pragma weak id = id [all …]
|
| H A D | Attr.td | 398 // HLSL Annotation spellings 990 let Args = [StringArgument<"Annotation">, VariadicExprArgument<"Args">]; 994 static AnnotateAttr *Create(ASTContext &Ctx, llvm::StringRef Annotation, \ 996 return AnnotateAttr::Create(Ctx, Annotation, nullptr, 0, CommonInfo); 998 static AnnotateAttr *CreateImplicit(ASTContext &Ctx, llvm::StringRef Annotation, \ 1000 return AnnotateAttr::CreateImplicit(Ctx, Annotation, nullptr, 0, CommonInfo); 1010 let Args = [StringArgument<"Annotation">, VariadicExprArgument<"Args">];
|
| H A D | Builtins.td | 4323 def Annotation : Builtin {
|
| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | DylibVerifier.cpp | 97 std::string Annotation; in getAnnotatedName() local 99 Annotation += "(weak-def) "; in getAnnotatedName() 101 Annotation += "(weak-ref) "; in getAnnotatedName() 103 Annotation += "(tlv) "; in getAnnotatedName() 110 return Annotation + "Exception Type of " + PrettyName; in getAnnotatedName() 112 return Annotation + "Metaclass of " + PrettyName; in getAnnotatedName() 114 return Annotation + "Class of " + PrettyName; in getAnnotatedName() 124 return Annotation + PrettyNameRef.drop_front(1).str(); in getAnnotatedName() 125 return Annotation + PrettyName; in getAnnotatedName() 130 return Annotation + PrettyName; in getAnnotatedName() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/ |
| H A D | Annotations.cpp | 32 llvm::SmallVector<Annotation, 8> OpenRanges; in Annotations() 55 const Annotation &NewRange = OpenRanges.back(); in Annotations() 92 const Annotation &P = All[I->getValue()[0]]; in pointWithPayload() 137 const Annotation &R = All[I->getValue()[0]]; in rangeWithPayload()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Annotations/ |
| H A D | Annotations.h | 115 struct Annotation { struct 122 std::vector<Annotation> All; argument
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCXXScopeSpec.cpp | 948 NestedNameSpecifierAnnotation *Annotation in SaveNestedNameSpecifierAnnotation() local 950 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation() 951 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation() 952 return Annotation; in SaveNestedNameSpecifierAnnotation() 963 NestedNameSpecifierAnnotation *Annotation in RestoreNestedNameSpecifierAnnotation() local 965 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); in RestoreNestedNameSpecifierAnnotation()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbolAnnotation.h | 19 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
|
| H A D | PDBTypes.h | 252 Annotation, enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/ |
| H A D | LanaiInstPrinter.cpp | 138 StringRef Annotation, in printInst() argument 143 printAnnotation(OS, Annotation); in printInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXUtilities.cpp | 182 const std::string &Annotation, in argHasNVVMAnnotation() argument 187 if (findAllNVVMAnnotation(Func, Annotation, Annot)) { in argHasNVVMAnnotation()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbol.cpp | 73 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation) in createSymbol()
|
| H A D | PDBExtras.cpp | 254 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS) in operator <<()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | SymbolRecord.h | 342 uint32_t Annotation = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() local 343 Result.S1 = DecodeSignedOperand(Annotation >> 4); in ParseCurrentAnnotation() 344 Result.U1 = Annotation & 0xf; in ParseCurrentAnnotation()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 417 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation, in compressAnnotation() argument 419 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer); in compressAnnotation()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instruction.h | 489 LLVM_ABI void addAnnotationMetadata(StringRef Annotation);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Verifier.cpp | 536 void visitAnnotationMetadata(MDNode *Annotation); 5200 void Verifier::visitAnnotationMetadata(MDNode *Annotation) { in visitAnnotationMetadata() argument 5201 Check(isa<MDTuple>(Annotation), "annotation must be a tuple"); in visitAnnotationMetadata() 5202 Check(Annotation->getNumOperands() >= 1, in visitAnnotationMetadata() 5204 for (const MDOperand &Op : Annotation->operands()) { in visitAnnotationMetadata() 5207 all_of(cast<MDTuple>(Op)->operands(), [](auto &Annotation) { in visitAnnotationMetadata() argument 5208 return isa<MDString>(Annotation.get()); in visitAnnotationMetadata() 5483 if (MDNode *Annotation = I.getMetadata(LLVMContext::MD_annotation)) in visitInstruction() local 5484 visitAnnotationMetadata(Annotation); in visitInstruction()
|
| H A D | Metadata.cpp | 1745 for (StringRef Annotation : Annotations) in addAnnotationMetadata() local 1746 MDAnnotationStrings.push_back(MDB.createString(Annotation)); in addAnnotationMetadata()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BTFDebug.cpp | 655 for (const Metadata *Annotation : Annotations->operands()) { in processDeclAnnotations() local 656 const MDNode *MD = cast<MDNode>(Annotation); in processDeclAnnotations()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.cpp | 962 for (const Metadata *Annotation : Annotations->operands()) { in addAnnotation() local 963 const MDNode *MD = cast<MDNode>(Annotation); in addAnnotation()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 3450 for (auto &Annotation : AllocaAnnotations->operands()) { in getAllocaName() local 3451 if (!isa<MDTuple>(Annotation)) in getAllocaName() 3453 auto AnnotationTuple = cast<MDTuple>(Annotation); in getAllocaName()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVInstrInfo.td | 122 // 3.42.3 Annotation Instructions
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 3421 void RestoreNestedNameSpecifierAnnotation(void *Annotation,
|