Home
last modified time | relevance | path

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

12

/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp456 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 …]
/llvm-project/clang/lib/InstallAPI/
H A DDylibVerifier.cpp78 std::string Annotation; in getAnnotatedName() local
80 Annotation += "(weak-def) "; in getAnnotatedName()
82 Annotation += "(weak-ref) "; in getAnnotatedName()
84 Annotation += "(tlv) "; in getAnnotatedName()
91 return Annotation + "Exception Type of " + PrettyName; in getAnnotatedName()
93 return Annotation + "Metaclass of " + PrettyName; in getAnnotatedName()
95 return Annotation + "Class of " + PrettyName; in getAnnotatedName()
105 return Annotation + PrettyNameRef.drop_front(1).str(); in getAnnotatedName()
106 return Annotation + PrettyName; in getAnnotatedName()
111 return Annotation in getAnnotatedName()
[all...]
/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def880 // Annotation for #pragma unused(...)
885 // Annotation for #pragma GCC visibility...
890 // Annotation for #pragma pack...
895 // Annotation for #pragma clang __debug parser_crash...
900 // Annotation for #pragma clang __debug captured...
905 // Annotation for #pragma clang __debug dump...
910 // Annotation for #pragma ms_struct...
915 // Annotation for #pragma align...
920 // Annotation for #pragma weak id
925 // Annotation fo
[all...]
/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp32 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()
/llvm-project/clang/unittests/Analysis/FlowSensitive/
H A DTestingSupport.cpp117 "Annotation is not placed after a statement: %s", in buildStatementToAnnotationMapping()
124 auto Annotation = Code.slice(Range.Begin, Range.End).str(); in buildStatementToAnnotationMapping() local
125 if (!ExistingAnnotations.insert(Annotation).second) { in buildStatementToAnnotationMapping()
128 "Repeated use of annotation: %s", Annotation.data()); in buildStatementToAnnotationMapping()
130 Result[Stmt] = std::move(Annotation); in buildStatementToAnnotationMapping()
H A DTransferBranchTest.cpp80 llvm::StringRef Annotation) { in getLatticeAtAnnotation() argument
81 auto It = AnnotationStates.find(Annotation); in getLatticeAtAnnotation()
/llvm-project/libc/spec/
H A Dspec.td
/llvm-project/llvm/test/Transforms/PGOProfile/
H A Dmisexpect-branch.ll13 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
16 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
19 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
22 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
25 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
H A Dmisexpect-branch-stripped.ll11 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
14 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
17 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
20 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 1…
H A Dmisexpect-switch-default.ll11 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
14 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
17 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
20 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
23 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
H A Dmisexpect-switch.ll14 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
17 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
20 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
23 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
26 …otential performance regression from use of the llvm.expect intrinsic: Annotation was correct on 0…
/llvm-project/llvm/include/llvm/Testing/Annotations/
H A DAnnotations.h115 struct Annotation { struct
122 std::vector<Annotation> All; argument
/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp956 NestedNameSpecifierAnnotation *Annotation in SaveNestedNameSpecifierAnnotation()
958 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation()
959 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation()
960 return Annotation; in SaveNestedNameSpecifierAnnotation()
971 NestedNameSpecifierAnnotation *Annotation in RestoreNestedNameSpecifierAnnotation()
973 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); in RestoreNestedNameSpecifierAnnotation()
957 NestedNameSpecifierAnnotation *Annotation SaveNestedNameSpecifierAnnotation() local
972 NestedNameSpecifierAnnotation *Annotation RestoreNestedNameSpecifierAnnotation() local
/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolAnnotation.h19 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
/llvm-project/clang/test/SemaObjC/
H A Dsuper-dealloc-attribute.m28 - (void) AnnotMyDeallocMeth; // Annotated in root but not here. Annotation is inherited though
59 - (void) AnnotMyDeallocMethCAT; // Annotated in root but not here. Annotation is inherited though
/llvm-project/llvm/test/DebugInfo/COFF/
H A Dtrailing-inlined-function.s25 # CHECK-NEXT: (Annotation Padding)
37 # CHECK-NEXT: (Annotation Padding)
/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiInstPrinter.cpp138 StringRef Annotation, in printAlias()
143 printAnnotation(OS, Annotation); in printInst()
141 printInst(const MCInst * MI,uint64_t Address,StringRef Annotation,const MCSubtargetInfo &,raw_ostream & OS) printInst() argument
/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp74 assert(prop && "Annotation property not a string"); in cacheAnnotationFromMD()
167 const std::string &Annotation, in findAllNVVMAnnotation()
172 if (findAllNVVMAnnotation(Func, Annotation, Annot)) { in isTexture()
194 argHasNVVMAnnotation(const Value & Val,const std::string & Annotation,const bool StartArgIndexAtOne=false) argHasNVVMAnnotation() argument
/llvm-project/clang-tools-extra/pseudo/unittests/
H A DGrammarTest.cpp
/llvm-project/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp421 InsertItemWithTag(PDB_SymType::Annotation); in SetUp()
483 VerifyDyncast<PDBSymbolAnnotation>(PDB_SymType::Annotation); in TEST_F()
/llvm-project/bolt/unittests/Core/
H A DMCPlusBuilder.cpp145 TEST_P(MCPlusBuilderTester, Annotation) { in TEST_P()
142 TEST_P(MCPlusBuilderTester,Annotation) TEST_P() argument
/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp73 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation) in createSymbol()
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h330 uint32_t Annotation = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() local
331 Result.S1 = DecodeSignedOperand(Annotation >> 4); in ParseCurrentAnnotation()
332 Result.U1 = Annotation & 0xf; in ParseCurrentAnnotation()
/llvm-project/bolt/lib/Core/
H A DBinaryFunction.cpp410 void BinaryFunction::print(raw_ostream &OS, std::string Annotation) { in dump()
416 OS << "Binary Function \"" << *this << "\" " << Annotation << " {"; in print()
3124 std::string Annotation, in dumpGraph()
3127 if (!Annotation.empty()) in dumpGraph()
3128 Annotation.insert(0, "-"); in dumpGraph()
3129 if (Filename.size() + Annotation.size() + Suffix.size() > MAX_PATH) { in dumpGraph()
3130 assert(Suffix.size() + Annotation.size() <= MAX_PATH); in dumpGraph()
3131 Filename.resize(MAX_PATH - (Suffix.size() + Annotation.size())); in dumpGraph()
3133 Filename += Annotation; in dumpGraph()
3269 void BinaryFunction::dumpGraphForPass(std::string Annotation) cons in validateCFG()
413 print(raw_ostream & OS,std::string Annotation) print() argument
3068 constructFilename(std::string Filename,std::string Annotation,std::string Suffix) constructFilename() argument
[all...]
H A DMCPlusBuilder.cpp379 const auto *Annotation = reinterpret_cast<const MCAnnotation *>(Value); in printAnnotations() local
382 Annotation->print(OS); in printAnnotations()

12