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

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_log_writer_test.cc 98 uint64_t TSC = 1;
100 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Enter, 1, TSC++));
102 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Exit, 1, TSC++));
114 Writer.writeFunction(FDRLogWriter::FunctionRecordKind::Enter, 1, TSC++));
fdr_controller_test.cc 84 uint64_t TSC = 2;
86 ASSERT_TRUE(C->functionEnter(FId, TSC++, CPU));
87 ASSERT_TRUE(C->functionExit(FId, TSC++, CPU));
88 ASSERT_TRUE(C->functionEnterArg(FId, TSC++, CPU, 1));
89 ASSERT_TRUE(C->functionTailExit(FId, TSC++, CPU));
143 uint64_t TSC = 1;
145 ASSERT_TRUE(C->functionEnter(1, TSC++, CPU));
146 ASSERT_TRUE(C->functionEnter(2, TSC++, CPU));
147 ASSERT_TRUE(C->functionExit(2, TSC++, CPU));
148 ASSERT_TRUE(C->functionExit(1, TSC += 1000, CPU))
    [all...]
function_call_trie_test.cc 32 uint64_t TSC = 1;
34 Trie.enterFunction(1, TSC++, CPU++);
35 Trie.exitFunction(1, TSC++, CPU++);
  /src/sys/external/bsd/compiler_rt/dist/include/xray/
xray_records.h 52 // The frequency by which TSC increases per-second.
92 // Get the full 8 bytes of the TSC when we get the log record.
93 uint64_t TSC = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
XRayRecord.h 35 /// Whether the CPU that produced the timestamp counters (TSC) move at a
39 /// Whether the CPU that produced the timestamp counters (TSC) do not stop.
43 /// counter (TSC) values. Useful for estimating the amount of time that
85 /// Get the full 8 bytes of the TSC when we get the log record.
86 uint64_t TSC;
YAMLXRayRecord.h 37 uint64_t TSC;
70 IO.mapRequired("constant-tsc", Header.ConstantTSC);
71 IO.mapRequired("nonstop-tsc", Header.NonstopTSC);
86 IO.mapRequired("tsc", Record.TSC);
FDRRecords.h 160 uint64_t TSC = 0;
171 CPUId(C), TSC(T) {}
175 uint64_t tsc() const { return TSC; } function in class:llvm::xray::NewCPUIDRecord
197 uint64_t tsc() const { return BaseTSC; } function in class:llvm::xray::TSCWrapRecord
208 uint64_t TSC = 0;
221 Size(S), TSC(T), CPU(C), Data(std::move(D)) {}
224 uint64_t tsc() const { return TSC; } function in class:llvm::xray::CustomEventRecord
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_profiling.cc 275 auto TSC = readTSC(CPU);
299 FCT->enterFunction(FuncId, TSC, CPU);
303 FCT->exitFunction(FuncId, TSC, CPU);
xray_basic_logging.cc 46 // We use elements of this type to record the entry TSC of every function ID we
53 uint64_t TSC;
174 uint64_t TSC = ReadTSC(CPU);
183 // When we encounter an entry event, we keep track of the TSC and the CPU,
189 E.TSC = TSC;
218 StackTop.TSC < TSC) {
219 auto Delta = TSC - StackTop.TSC;
    [all...]
xray_fdr_logging.cc 158 // metadata records for TSC wraparound and CPU migration).
413 uint64_t TSC = 0;
418 // We want to get the TSC as early as possible, so that we can check whether
430 Result.TSC = __xray::readTSC(Result.CPU);
440 Result.TSC = TS.tv_sec * __xray::NanosecondsPerSecond + TS.tv_nsec;
499 auto &TSC = TC.TSC;
512 TLD.Controller->functionEnter(FuncId, TSC, CPU);
515 TLD.Controller->functionExit(FuncId, TSC, CPU);
518 TLD.Controller->functionTailExit(FuncId, TSC, CPU)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph.h 76 uint64_t TSC;
  /src/sys/external/gpl2/dts/dist/include/dt-bindings/clock/
stm32mp13-clks.h 103 #define TSC 73
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 3840 Value *TSC = Builder.CreateExtractValue(NewCall, 0);
3843 CI->replaceAllUsesWith(TSC);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 252 enum TSC {
333 /*TSC*/unsigned TypeSpecComplex : 2;
472 TSC getTypeSpecComplex() const { return (TSC)TypeSpecComplex; }
538 static const char *getSpecifierName(DeclSpec::TSC C);
654 bool SetStorageClassSpecThread(TSCS TSC, SourceLocation Loc,
659 bool SetTypeSpecComplex(TSC C, SourceLocation Loc, const char *&PrevSpec,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 7262 DeclSpec::TSCS TSC = D.getDeclSpec().getThreadStorageClassSpec();
7263 if (TSC != TSCS_unspecified) {
7268 << DeclSpec::getSpecifierName(TSC) << 1;

Completed in 36 milliseconds