Home
last modified time | relevance | path

Searched refs:CycleCounter (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86PfmCounters.td22 let CycleCounter = PfmCounter<"cpu_clk_unhalted">;
32 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
44 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
51 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
60 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
67 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
81 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
97 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
113 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
129 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
[all …]
/external/llvm-project/llvm/lib/Target/X86/
DX86PfmCounters.td22 let CycleCounter = PfmCounter<"cpu_clk_unhalted">;
32 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
44 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
51 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
60 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
67 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
81 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
97 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
113 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
129 let CycleCounter = UnhaltedCoreCyclesPfmCounter;
[all …]
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/PowerPC/
DTargetTest.cpp62 EXPECT_EQ(ExegesisTarget_->getPfmCounters("").CycleCounter, Expected); in TEST_F()
63 EXPECT_EQ(ExegesisTarget_->getPfmCounters("unknown_cpu").CycleCounter, in TEST_F()
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/AArch64/
DTargetTest.cpp70 EXPECT_EQ(ExegesisTarget_->getPfmCounters("").CycleCounter, Expected); in TEST_F()
71 EXPECT_EQ(ExegesisTarget_->getPfmCounters("unknown_cpu").CycleCounter, in TEST_F()
/external/llvm-project/llvm/utils/TableGen/
DExegesisEmitter.cpp110 const auto CycleCounter = in emitPfmCountersInfo() local
121 if (CycleCounter.empty()) in emitPfmCountersInfo()
124 OS << " " << Target << "PfmCounterNames[" << getPfmCounterId(CycleCounter) in emitPfmCountersInfo()
/external/llvm-project/llvm/include/llvm/Target/
DTargetPfmCounters.td35 // Processors can define how to measure cycles by defining a CycleCounter.
36 PfmCounter CycleCounter = NoPfmCounter;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetPfmCounters.td33 // Processors can define how to measure cycles by defining a CycleCounter.
34 PfmCounter CycleCounter = NoPfmCounter;
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/Mips/
DTargetTest.cpp122 EXPECT_EQ(State.getExegesisTarget().getPfmCounters("").CycleCounter, in TEST_F()
125 State.getExegesisTarget().getPfmCounters("unknown_cpu").CycleCounter, in TEST_F()
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCPfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64PfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCPfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64PfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/llvm-project/llvm/lib/Target/Mips/
DMipsPfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsPfmCounters.td16 let CycleCounter = CpuCyclesPfmCounter;
/external/llvm-project/llvm/tools/llvm-exegesis/lib/
DTarget.h39 const char *CycleCounter; member
DLatencyBenchmarkRunner.cpp74 const char *CounterName = State.getPfmCounters().CycleCounter; in runMeasurements()
DTarget.cpp80 if (!PfmCounters.CycleCounter) { in createBenchmarkRunner()