HomeSort by: relevance | last modified time | path
    Searched refs:View (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
View.cpp 1 //===----------------------- View.cpp ---------------------------*- C++ -*-===//
10 /// This file defines the virtual anchor method in View.h to pin the vtable.
14 #include "Views/View.h"
21 void View::anchor() {}
View.h 1 //===----------------------- View.h -----------------------------*- C++ -*-===//
10 /// This file defines the main interface for Views. Each view contributes a
26 class View : public HWEventListener {
43 virtual ~View() = default;
RetireControlUnitStatistics.h 10 /// This file defines class RetireControlUnitStatistics: a view that knows how
31 #include "Views/View.h"
38 class RetireControlUnitStatistics : public View {
RegisterFileStatistics.h 10 /// This view collects and prints register file usage statistics.
38 #include "Views/View.h"
45 class RegisterFileStatistics : public View {
DispatchStatistics.h 10 /// This file implements a view that prints a few statistics related to the
36 #include "Views/View.h"
44 class DispatchStatistics : public View {
SummaryView.h 10 /// This file implements the summary view.
12 /// The goal of the summary view is to give a very quick overview of the
13 /// performance throughput. Below is an example of summary view:
23 /// The summary view collects a few performance numbers. The two main
31 #include "Views/View.h"
39 /// A view that collects and prints a few performance numbers.
40 class SummaryView : public View {
InstructionView.h 18 #include "Views/View.h"
27 class InstructionView : public View {
SchedulerStatistics.h 11 /// View that listens to instruction issue events in order to print general
39 #include "Views/View.h"
47 class SchedulerStatistics final : public View {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
PipelinePrinter.h 19 #include "Views/View.h"
38 llvm::SmallVector<std::unique_ptr<View>, 8> Views;
39 View::OutputKind OutputKind;
42 PipelinePrinter(Pipeline &pipeline, View::OutputKind OutputKind)
45 void addView(std::unique_ptr<View> V) {
llvm-mca.cpp 68 static cl::OptionCategory ViewOptions("View Options");
148 PrintSummaryView("summary-view", cl::Hidden,
149 cl::desc("Print summary view (enabled by default)"),
163 cl::desc("Print the resource pressure view (enabled by default)"),
167 cl::desc("Print the timeline view"),
172 cl::desc("Maximum number of iterations to print in timeline view"),
178 "Maximum number of cycles in the timeline view. Defaults to 80 cycles"),
201 cl::desc("Print the instruction info view (enabled by default)"),
220 cl::desc("Print encoding information in the instruction info view"),
533 mca::PipelinePrinter Printer(*P, mca::View::OK_READABLE)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageView.h 1 //===- SourceCoverageView.h - Code coverage view for source code ----------===//
29 /// A view that represents a macro or include expansion.
32 std::unique_ptr<SourceCoverageView> View;
35 std::unique_ptr<SourceCoverageView> View)
36 : Region(Region), View(std::move(View)) {}
38 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
41 View = std::move(RHS.View);
    [all...]
SourceCoverageView.cpp 1 //===- SourceCoverageView.cpp - Code coverage view for source code --------===//
167 std::unique_ptr<SourceCoverageView> View) {
168 ExpansionSubViews.emplace_back(Region, std::move(View));
173 std::unique_ptr<SourceCoverageView> View) {
174 BranchSubViews.emplace_back(Line, Regions, std::move(View));
179 std::unique_ptr<SourceCoverageView> View) {
180 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View));
CodeCoverage.cpp 92 /// Create source views for the expansions of the view.
93 void attachExpansionSubViews(SourceCoverageView &View,
97 /// Create source views for the branches of the view.
98 void attachBranchSubViews(SourceCoverageView &View, StringRef SourceName,
103 /// Create the source view of a particular function.
108 /// Create the main source view of a particular source file.
125 /// Write out a source file view to the filesystem.
295 SourceCoverageView &View, ArrayRef<ExpansionRecord> Expansions,
315 View.addExpansion(Expansion.Region, std::move(SubView));
319 void CodeCoverageTool::attachBranchSubViews(SourceCoverageView &View,
    [all...]
SourceCoverageViewText.cpp 1 //===- SourceCoverageViewText.cpp - A text-based code coverage view -------===//
60 /// The width of the line that is used to divide between the view and
222 ESV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/false,
278 if (!ISV.View)
282 ISV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/true,
SourceCoverageViewHTML.cpp 1 //===- SourceCoverageViewHTML.cpp - A html code coverage view -------------===//
99 .expansion-view {
236 const char *BeginExpansionDiv = "<div class='expansion-view'>";
486 // If this view has sub-views, renderLine() cannot close the view's cell.
494 // The table-based output makes view dividers unnecessary.
654 ESV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/false,
729 if (!ISV.View)
736 ISV.View->print(OS, /*WholeFile=*/false, /*ShowSourceName=*/true,
  /src/external/bsd/pkg_install/dist/add/
add.h 33 extern char *View;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCTargetOptionsCommandFlags.cpp 22 static cl::opt<TY> *NAME##View; \
24 assert(NAME##View && "RegisterMCTargetOptionsFlags not created."); \
25 return *NAME##View; \
31 if (NAME##View->getNumOccurrences()) { \
32 TY res = *NAME##View; \
51 NAME##View = std::addressof(NAME); \
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CommandFlags.cpp 25 static cl::opt<TY> *NAME##View; \
27 assert(NAME##View && "RegisterCodeGenFlags not created."); \
28 return *NAME##View; \
32 static cl::list<TY> *NAME##View; \
34 assert(NAME##View && "RegisterCodeGenFlags not created."); \
35 return *NAME##View; \
41 if (NAME##View->getNumOccurrences()) { \
42 TY res = *NAME##View; \
102 NAME##View = std::addressof(NAME); \
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
array-view-selftests.c 21 #include "gdbsupport/array-view.h"
85 /* Check that there's no array->view conversion for arrays of derived types or
94 /* array->view */
104 /* elem->view */
115 /* Check that there's no container->view conversion for containers of derived
169 /* Note: a non-const T view can't refer to a const T array. */
180 /* Check that VIEW views C (a container like std::vector/std::array)
183 template<typename View, typename Container>
185 check_container_view (const View &view, const Container &c
423 gdb::array_view<gdb_byte> view = vec; local
431 gdb::array_view<gdb_byte> view = array; local
439 gdb::array_view<gdb_byte> view; local
502 gdb::array_view<gdb_byte> view = vec2; local
548 auto view = gdb::make_array_view (data, len); local
560 gdb::array_view<gdb_byte> view = data; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/unittests/
array-view-selftests.c 21 #include "gdbsupport/array-view.h"
85 /* Check that there's no array->view conversion for arrays of derived types or
94 /* array->view */
104 /* elem->view */
115 /* Check that there's no container->view conversion for containers of derived
169 /* Note: a non-const T view can't refer to a const T array. */
180 /* Check that VIEW views C (a container like std::vector/std::array)
183 template<typename View, typename Container>
185 check_container_view (const View &view, const Container &c
423 gdb::array_view<gdb_byte> view = vec; local
431 gdb::array_view<gdb_byte> view = array; local
439 gdb::array_view<gdb_byte> view; local
502 gdb::array_view<gdb_byte> view = vec2; local
548 auto view = gdb::make_array_view (data, len); local
561 const auto view = gdb::make_array_view (data); local
573 gdb::array_view<gdb_byte> view = data; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamReader.h 245 BinaryStreamRef View;
246 if (auto EC = readStreamRef(View, NumItems * sizeof(T)))
249 Array = FixedStreamArray<T>(View);
  /src/external/apache2/llvm/dist/llvm/tools/gold/
gold-plugin.cpp 518 const void *view; local
519 if (get_view(file->handle, &view) != LDPS_OK) {
520 message(LDPL_ERROR, "Failed to get a view of %s", file->name);
524 MemoryBufferRef(StringRef((const char *)view, file->filesize), "");
673 /// Helper to get a file's symbols and a view into it via gold callbacks.
682 const void *View;
683 if (get_view(F.handle, &View) != LDPS_OK)
684 message(LDPL_FATAL, "Failed to get a view of file");
686 return View;
721 static void addModule(LTO &Lto, claimed_file &F, const void *View,
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 2025 typedef internal::StlContainerView<RawContainer> View;
2026 typedef typename View::type StlContainer;
2027 typedef typename View::const_reference StlContainerReference;
2081 typedef internal::StlContainerView<Container> View;
2082 typedef typename View::type StlContainer;
2083 typedef typename View::const_reference StlContainerReference;
2093 : expected_(View::Copy(expected)) {}
2374 typedef StlContainerView<RawContainer> View;
2375 typedef typename View::type StlContainer;
2376 typedef typename View::const_reference StlContainerReference
    [all...]
  /src/usr.bin/mail/
extern.h 61 int view(void *);
62 int View(void *);
  /src/sys/arch/sandpoint/
README 54 (Processor View)

Completed in 65 milliseconds

1 2