HomeSort by: relevance | last modified time | path
    Searched defs:Trace (Results 1 - 24 of 24) sorted by relevancy

  /src/games/trek/
externs.c 116 int Trace;
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
Trace.h 1 //===- Trace.h - XRay Trace Abstraction -----------------------------------===//
9 // Defines the XRay Trace class representing records in an XRay trace file.
26 /// A Trace object represents the records that have been loaded from XRay
28 /// reading the traces in factory functions that populate the Trace object
31 /// Trace objects provide an accessor to an XRayFileHeader which says more about
32 /// details of the file from which the XRay trace was loaded from.
38 /// // T.getFileHeader() will provide information from the trace header.
46 class Trace {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
RDFCopy.h 34 void trace(bool On) { Trace = On; } function in struct:llvm::rdf::CopyPropagation
35 bool trace() const { return Trace; } function in struct:llvm::rdf::CopyPropagation
46 bool Trace = false;
RDFDeadCode.h 36 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {}
40 void trace(bool On) { Trace = On; } function in struct:llvm::rdf::DeadCodeElimination
41 bool trace() const { return Trace; } function in struct:llvm::rdf::DeadCodeElimination
48 bool Trace;
BitTracker.h 50 void trace(bool On = false) { Trace = On; } function in struct:llvm::BitTracker
122 bool Trace; // Enable tracing for debugging.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
Trace.h 1 //===- llvm/Analysis/Trace.h - Represent one trace of LLVM code -*- C++ -*-===//
9 // This class represents a single trace of LLVM basic blocks. A trace is a
10 // single entry, multiple exit, region of code that is often hot. Trace-based
12 // block: because the trace path is assumed to be hot, optimizations for the
30 class Trace {
36 /// Trace ctor - Make a new trace from a vector of basic blocks,
39 Trace(const std::vector<BasicBlock *> &vBB) : BasicBlocks (vBB) {
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_trace.h 48 BufferedStackTrace stack0; // Start stack for the trace.
52 u64 epoch0; // Start epoch for the trace.
58 struct Trace {
69 Trace()
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CLog.h 42 bool Trace;
57 bool trace = isStackTracingEnabled()) {
59 return new Logger(name, trace);
63 explicit Logger(llvm::StringRef name, bool trace)
64 : Name(std::string(name)), Trace(trace), LogOS(Msg) {}
  /src/common/dist/zlib/
zutil.h 239 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
246 # define Trace(x)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RDFLiveness.h 122 void trace(bool T) { Trace = T; } function in struct:llvm::rdf::Liveness
133 bool Trace = false;
MachineTraceMetrics.h 17 // by looking at a trace through the current basic block.
19 // For every block, the MachineTraceMetrics pass will pick a preferred trace
20 // that passes through the block. The trace is chosen based on loop structure,
24 // It is expensive to compute a full arbitrary trace for every block, so to
30 // Traces tend to align with loops. The trace through a block in an inner loop
32 // nested loops, the trace may begin and end at those instead.
34 // For each trace, we compute the critical path length, which is the number of
35 // cycles required to execute the trace when execution is limited by data
37 // of cycles required to execute all instructions in the trace when ignoring
97 friend class Trace;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
Trace.cpp 1 //===- Trace.cpp - XRay Trace Loading implementation. ---------------------===//
12 #include "llvm/XRay/Trace.h"
324 // us to more consistently recreate the execution trace in temporal order.
325 // After the sort, we then reconstitute `Trace` records using a stateful
352 YAMLXRayTrace Trace;
354 In >> Trace;
358 FileHeader.Version = Trace.Header.Version;
359 FileHeader.Type = Trace.Header.Type;
360 FileHeader.ConstantTSC = Trace.Header.ConstantTSC
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-converter.cpp 1 //===- xray-converter.cpp: XRay Trace Conversion --------------------------===//
9 // Implements the trace conversion functions.
24 #include "llvm/XRay/Trace.h"
32 static cl::SubCommand Convert("convert", "Trace Format Conversion");
42 "Output in chrome's trace event format. "
43 "May be visualized with the Catapult trace viewer.")),
78 void TraceConverter::exportAsYAML(const Trace &Records, raw_ostream &OS) {
79 YAMLXRayTrace Trace;
81 Trace.Header = {FH.Version, FH.Type, FH.ConstantTSC, FH.NonstopTSC,
83 Trace.Records.reserve(Records.size())
    [all...]
xray-graph.h 10 // the trace.
28 #include "llvm/XRay/Trace.h"
150 ::llvm::xray::Trace Trace;
  /src/external/gpl3/binutils/dist/zlib/
zutil.h 225 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
232 # define Trace(x)
  /src/external/gpl3/binutils.old/dist/zlib/
zutil.h 224 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
231 # define Trace(x)
  /src/external/gpl3/gdb.old/dist/zlib/
zutil.h 224 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
231 # define Trace(x)
  /src/external/gpl3/gdb/dist/zlib/
zutil.h 225 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
232 # define Trace(x)
  /src/external/cddl/osnet/dist/uts/common/zmod/
zutil.h 253 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
260 # define Trace(x)
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_trace.h 164 struct Trace;
167 Trace* trace = nullptr; // back-pointer to Trace containing this part member in struct:__tsan::TraceHeader
168 INode trace_parts; // in Trace::parts
189 struct Trace {
196 // Number of trace parts allocated on behalf of this trace specifically.
197 // Total number of parts in this trace can be larger if we retake some
201 Trace() : mtx(MutexTypeTrace) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ConditionalCompares.cpp 861 // Head dominates CmpBB, so it is always included in its trace.
862 MachineTraceMetrics::Trace Trace = MinInstr->getTrace(CmpConv.CmpBB);
887 // Instruction depths can be computed for all trace instructions above CmpBB.
889 Trace.getInstrCycles(*CmpConv.Head->getFirstTerminator()).Depth;
891 Trace.getInstrCycles(*CmpConv.CmpBB->getFirstTerminator()).Depth;
902 unsigned ResDepth = Trace.getResourceDepth(true);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_trace.h 47 BufferedStackTrace stack0; // Start stack for the trace.
51 u64 epoch0; // Start epoch for the trace.
57 struct Trace {
68 Trace() : mtx(MutexTypeTrace) {}
186 struct Trace;
189 Trace* trace = nullptr; // back-pointer to Trace containing this part member in struct:__tsan::v3::TraceHeader
190 INode trace_parts; // in Trace::parts
209 struct Trace {
    [all...]
  /src/external/zlib/pigz/dist/
pigz.c 67 Only generate and show trace log if DEBUG defined
460 int verbosity; /* 0 = quiet, 1 = normal, 2 = verbose, 3 = trace */
640 /* trace log */
670 /* add entry to trace log */
704 /* pull entry from trace log and print it, return false if empty */
734 fprintf(stderr, "trace %ld.%06ld %s\n",
783 #define Trace(x) \
800 #define Trace(x)
1370 Trace(("-- joined %d compress threads", caught));
1376 Trace(("-- freed %d block lengths buffers", caught))
    [all...]
  /src/sys/net/
zlib.c 257 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
264 # define Trace(x)
2626 Trace((stderr,"\nbit length overflow\n"));
2653 Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));

Completed in 42 milliseconds