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

  /src/sys/arch/epoc32/stand/e32boot/ldd/
cpu.h 1 /* $NetBSD: cpu.h,v 1.1 2013/04/28 12:11:27 kiyohara Exp $ */
28 class CPU {
34 class ARM7 : public CPU {
40 class ARM7TDMI : public CPU {
46 class SA1100 : public CPU {
  /src/sys/external/bsd/compiler_rt/dist/include/xray/
xray_records.h 79 // The CPU where the thread is running. We assume number of CPUs <= 256.
80 uint8_t CPU = 0;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_controller_test.cc 85 uint16_t CPU = 1;
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));
144 uint16_t CPU = 0;
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 33 uint16_t CPU = 0;
34 Trie.enterFunction(1, TSC++, CPU++);
35 Trie.exitFunction(1, TSC++, CPU++);
217 // TODO: Test that we can handle cross-CPU migrations, where TSCs are not
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_profiling.cc 274 unsigned char CPU;
275 auto TSC = readTSC(CPU);
299 FCT->enterFunction(FuncId, TSC, CPU);
303 FCT->exitFunction(FuncId, TSC, CPU);
xray_basic_logging.cc 51 uint8_t CPU;
173 uint8_t CPU = 0;
174 uint64_t TSC = ReadTSC(CPU);
183 // When we encounter an entry event, we keep track of the TSC and the CPU,
187 E.CPU = CPU;
207 // - The CPU is the same as the most recent entry in the stack.
217 if (StackTop.FuncId == FuncId && StackTop.CPU == CPU &&
238 R.CPU = CPU
    [all...]
xray_fdr_logging.cc 154 // Version 4 includes CPU data in the custom event records.
156 // and removes the CPU data in custom event records (similar to how
158 // metadata records for TSC wraparound and CPU migration).
162 // Test for required CPU features and cache the cycle frequency
414 unsigned char CPU = 0;
419 // we've seen this CPU before. We also do it before we load anything else,
423 // Test once for required CPU features
430 Result.TSC = __xray::readTSC(Result.CPU);
439 Result.CPU = 0;
500 auto &CPU = TC.CPU
    [all...]

Completed in 21 milliseconds