reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-exegesis/lib/Analysis.cpp
  133   writeEscaped<kEscapeCsv>(OS, Point.Key.Config);
  135   assert(!Point.Key.Instructions.empty());
  222     assert(!Point.Key.Instructions.empty());
  281     writeLatencySnippetHtml(OS, Point.Key.Instructions, *InstrInfo_);
  285     writeUopsSnippetHtml(OS, Point.Key.Instructions, *InstrInfo_);
  291   writeEscaped<kEscapeHtml>(OS, Point.Key.Config);
tools/llvm-exegesis/lib/BenchmarkResult.cpp
  316     Io.mapRequired("key", Obj.Key, Context);
tools/llvm-exegesis/lib/BenchmarkResult.h
   65   const MCInst &keyInstruction() const { return Key.Instructions[0]; }
tools/llvm-exegesis/lib/BenchmarkRunner.cpp
   95   InstrBenchmark.Key = BC.Key;
tools/llvm-exegesis/lib/Clustering.cpp
  243         : Opcode(IB.keyInstruction().getOpcode()), Config(&IB.Key.Config) {}
unittests/tools/llvm-exegesis/X86/BenchmarkResultTest.cpp
   66   ToDisk.Key.Instructions.push_back(MCInstBuilder(X86::XOR32rr)
   71   ToDisk.Key.Config = "config";
   72   ToDisk.Key.RegisterInitialValues = {
   97     EXPECT_THAT(FromDisk.Key.Instructions,
   98                 Pointwise(EqMCInst(), ToDisk.Key.Instructions));
   99     EXPECT_EQ(FromDisk.Key.Config, ToDisk.Key.Config);
   99     EXPECT_EQ(FromDisk.Key.Config, ToDisk.Key.Config);
  114     EXPECT_THAT(FromDisk.Key.Instructions,
  115                 Pointwise(EqMCInst(), ToDisk.Key.Instructions));
  116     EXPECT_EQ(FromDisk.Key.Config, ToDisk.Key.Config);
  116     EXPECT_EQ(FromDisk.Key.Config, ToDisk.Key.Config);