HomeSort by: relevance | last modified time | path
    Searched defs:TSC (Results 1 - 7 of 7) 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/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...]

Completed in 13 milliseconds