Home
last modified time | relevance | path

Searched refs:Print (Results 1 – 25 of 258) sorted by relevance

1234567891011

/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_errors.cpp56 stack.Print(); in Print()
93 stack.Print(); in Print()
112 stack.Print(); in Print()
132 stack.Print(); in Print()
148 stack->Print(); in Print()
161 stack->Print(); in Print()
174 stack->Print(); in Print()
187 stack->Print(); in Print()
201 stack->Print(); in Print()
214 stack->Print(); in Print()
[all …]
H A Dasan_errors.h64 void Print();
78 void Print();
96 void Print();
108 void Print();
124 void Print();
136 void Print();
149 void Print();
164 void Print();
179 void Print();
191 void Print();
[all …]
H A Dasan_descriptions.h97 void Print() const;
128 void Print() const;
143 void Print() const;
153 void Print() const;
165 void Print(const char *bug_type = "") const;
233 void Print(const char *bug_descr = nullptr) const {
236 data.wild.Print();
239 return data.shadow.Print();
241 return data.heap.Print();
243 return data.stack.Print();
[all …]
H A Dasan_descriptions.cpp88 descr.Print(); in DescribeAddressIfShadow()
188 descr.Print(); in DescribeAddressIfHeap()
271 descr.Print(); in DescribeAddressIfStack()
316 descr.Print(bug_type); in DescribeAddressIfGlobal()
378 alloca_stack.Print(); in Print()
426 free_stack.Print(); in Print()
433 alloc_stack.Print(); in Print()
480 shadow_descr.Print(); in PrintAddressDescription()
486 global_descr.Print(bug_type); in PrintAddressDescription()
492 stack_descr.Print(); in PrintAddressDescription()
[all …]
H A Dasan_memory_profile.cpp50 void Print(uptr top_percent, uptr max_number_of_contexts) { in Print() function in __asan::HeapProfile
70 StackDepotGet(a.id).Print(); in Print()
108 hp.Print(Arg[0], Arg[1]); in MemoryProfileCB()
H A Dasan_scariness_score.h49 void Print() const { in Print() function
57 SSB.Print(); in PrintSimple()
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-otool.rst32 Print shared library id.
36 Print data section.
40 Print universal headers.
44 Print data-in-code table.
52 Print help.
56 Print mach header.
64 Print opcode bytes.
72 Print load commands.
100 Print text section.
104 Print version.
[all …]
H A Dllvm-config.rst1 llvm-config - Print LLVM compilation options
38 Print the installation directory for LLVM binaries.
58 Print all valid component names.
74 Print a summary of **llvm-config** arguments.
78 Print the target triple used to configure LLVM.
86 Print the installation directory for LLVM headers.
94 Print the installation directory for LLVM libraries.
123 Print the object root used to build LLVM.
127 Print the installation prefix for LLVM.
135 Print the source root from which LLVM was built.
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DPrintable.h40 std::function<void(raw_ostream &OS)> Print;
41 Printable(std::function<void(raw_ostream &OS)> Print) in Printable() argument
42 : Print(std::move(Print)) {} in Printable()
46 P.Print(OS);
/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h621 UniversalPrinter<T&>::Print(ref.get(), os); in PrintTo()
656 UniversalPrinter<T1>::Print(value.first, os); in PrintTo()
658 UniversalPrinter<T2>::Print(value.second, os); in PrintTo()
674 static void Print(const T& value, ::std::ostream* os) { in Print() function
815 UniversalPrinter<T[N]>::Print(value, os); in Print()
832 static void Print(char* str, ::std::ostream* os) { in Print() function
833 UniversalTersePrinter<const char*>::Print(str, os); in Print()
854 static void Print(wchar_t* str, ::std::ostream* os) { in Print() function
861 UniversalTersePrinter<T>::Print(value, os); in UniversalTersePrint()
873 UniversalPrinter<T1>::Print(value, os); in UniversalPrint()
[all …]
/llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/
H A Dstop_hook.py16 stream.Print("I have stopped %d times.\n"%(self.counter))
23 stream.Print("Could not find increment in extra_args\n")
28 stream.Print("Error running expression: %s"%(expr_result.GetError().GetCString()))
31 stream.Print("Didn't get a valid value for g_var.")
34 stream.Print("Returning value: %d from handle_stop.\n"%(self.ret_val))
/llvm-project-15.0.7/clang-tools-extra/pseudo/fuzzer/
H A DFuzzer.cpp28 bool Print; member in clang::pseudo::__anona438122d0111::Fuzzer
31 Fuzzer(bool Print) : Print(Print) {} in Fuzzer() argument
48 if (Print) in operator ()()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp141 auto Print = [=](llvm::raw_ostream &Out, const CheckerInfo &Checker, in printCheckerWithDescList() local
157 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList()
163 Print(Out, Checker, in printCheckerWithDescList()
169 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList()
202 auto Print = [](llvm::raw_ostream &Out, StringRef FullOption, in printCheckerOptionList() local
226 Print(Out, FullOption, Desc); in printCheckerOptionList()
233 Print(Out, FullOption, in printCheckerOptionList()
239 Print(Out, FullOption, Desc); in printCheckerOptionList()
/llvm-project-15.0.7/llvm/test/tools/llvm-ar/
H A Dprint.test1 ## Test Print output
11 ## Print empty archive:
16 ## Print without member:
34 ## Print single member:
46 ## Print multiple members:
61 ## Print same member:
68 ## Print same member when containing multiple members with shared name:
91 ## Print empty thin archive:
96 ## Print thin archive:
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DRDFGraph.h923 struct Print { struct
924 Print(const T &x, const DataFlowGraph &g) : Obj(x), G(g) {} in Print() function
931 struct PrintNode : Print<NodeAddr<T>> { argument
933 : Print<NodeAddr<T>>(x, g) {} in PrintNode()
937 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeId> &P);
941 const Print<NodeAddr<PhiUseNode *>> &P);
947 const Print<NodeAddr<StmtNode *>> &P);
949 const Print<NodeAddr<InstrNode *>> &P);
951 const Print<NodeAddr<BlockNode *>> &P);
953 const Print<NodeAddr<FuncNode *>> &P);
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DObjdumpOpts.td208 HelpText<"Print the locations (in registers or memory) of "
263 HelpText<"Print full leading address">,
267 HelpText<"Print no leading headers">,
271 HelpText<"Print Mach-O universal headers (requires --macho)">,
288 HelpText<"Print the function starts table for "
293 HelpText<"Print the linker optimization hints for "
298 HelpText<"Print the info plist section as strings for "
309 HelpText<"Print the shared libraries used for linked "
314 HelpText<"Print the shared library's id for the "
319 HelpText<"Print the runtime search paths for the "
[all …]
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBInstructionList.h47 void Print(FILE *out);
49 void Print(SBFile out);
51 void Print(FileSP out);
H A DSBInstruction.h56 void Print(FILE *out);
58 void Print(SBFile out);
60 void Print(FileSP out);
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRDFGraph.cpp118 OS << Print<NodeId>(N, P.G); in operator <<()
121 OS << Print<NodeId>(N, P.G); in operator <<()
124 OS << Print<NodeId>(N, P.G); in operator <<()
127 OS << Print<NodeId>(N, P.G); in operator <<()
135 OS << Print<NodeId>(N, P.G); in operator <<()
138 OS << Print<NodeId>(N, P.G); in operator <<()
147 OS << Print<NodeId>(N, P.G); in operator <<()
150 OS << Print<NodeId>(N, P.G); in operator <<()
153 OS << Print<NodeId>(N, P.G); in operator <<()
175 OS << Print<NodeId>(I.Id, P.G); in operator <<()
[all …]
H A DRDFLiveness.cpp622 dbgs() << "phi " << Print<NodeId>(I.first, DFG) << " -> {"; in computePhiInfo()
624 dbgs() << ' ' << Print<NodeId>(R.first, DFG) in computePhiInfo()
625 << Print<RegisterAggr>(R.second, DFG); in computePhiInfo()
723 dbgs() << "phi " << Print<NodeId>(I.first, DFG); in computePhiInfo()
728 dbgs() << '<' << Print<RegisterRef>(RR, DFG) << '>'; in computePhiInfo()
732 dbgs() << " -> " << Print<RefMap>(I.second, DFG) << '\n'; in computePhiInfo()
791 << Print<RefMap>(I.second, DFG) << '\n'; in computeLiveIns()
854 << Print<RefMap>(I.second, DFG) << '\n'; in computeLiveIns()
872 dbgs() << ' ' << Print<RegisterRef>(I, DFG); in computeLiveIns()
883 dbgs() << ' ' << Print<RegisterRef>(I, DFG); in computeLiveIns()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/msan/
H A Dmsan_report.cpp55 StackTrace(&pc, 1).Print(); in DescribeStackOrigin()
68 stack.Print(); in DescribeOrigin()
94 stack.Print(); in DescribeOrigin()
107 stack->Print(); in ReportUMR()
118 stack->Print(); in ReportExpectedUMRNotFound()
/llvm-project-15.0.7/llvm/tools/llvm-strings/
H A DOpts.td13 defm bytes : Eq<"bytes", "Print sequences of the specified length">;
15 def print_file_name : Flag<["--"], "print-file-name">, HelpText<"Print the name of the file before …
16 defm radix : Eq<"radix", "Print the offset within the file with the specified radix: o (octal), d (…
/llvm-project-15.0.7/clang/lib/Driver/
H A DJob.cpp201 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() function in Command
370 void CC1Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() function in CC1Command
374 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
428 void ForceSuccessCommand::Print(raw_ostream &OS, const char *Terminator, in Print() function in ForceSuccessCommand
430 Command::Print(OS, "", Quote, CrashInfo); in Print()
444 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() function in JobList
447 Job.Print(OS, Terminator, Quote, CrashInfo); in Print()
/llvm-project-15.0.7/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp85 Print("Creating : "); in InitStackRingBuffer()
98 Print("Destroying: "); in Destroy()
112 void Thread::Print(const char *Prefix) { in Print() function in __hwasan::Thread
/llvm-project-15.0.7/clang/lib/Frontend/
H A DASTConsumers.cpp36 enum Kind { DumpFull, Dump, Print, None }; enumerator
62 Out << (OutputKind != Print ? "Dumping " : "Printing ") << getName(D) in TraverseDecl()
94 } else if (OutputKind == Print) { in print()
162 return std::make_unique<ASTPrinter>(std::move(Out), ASTPrinter::Print, in CreateASTPrinter()

1234567891011