forked from OSchip/llvm-project
parent
09c3c37b72
commit
f64007fe82
llvm/tools/llvm-exegesis/lib
|
@ -51,7 +51,10 @@ struct InstructionBenchmark {
|
||||||
ModeE Mode;
|
ModeE Mode;
|
||||||
std::string CpuName;
|
std::string CpuName;
|
||||||
std::string LLVMTriple;
|
std::string LLVMTriple;
|
||||||
|
// The number of instructions inside the repeated snippet. For example, if a
|
||||||
|
// snippet of 3 instructions is repeated 4 times, this is 12.
|
||||||
int NumRepetitions = 0;
|
int NumRepetitions = 0;
|
||||||
|
// Note that measurements are per instruction.
|
||||||
std::vector<BenchmarkMeasure> Measurements;
|
std::vector<BenchmarkMeasure> Measurements;
|
||||||
std::string Error;
|
std::string Error;
|
||||||
std::string Info;
|
std::string Info;
|
||||||
|
|
Loading…
Reference in New Issue