1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
// AsmJit - Machine code generation for C++
//
// * Official AsmJit Home Page: https://asmjit.com
// * Official Github Repository: https://github.com/asmjit/asmjit
//
// Copyright (c) 2008-2020 The AsmJit Authors
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
#include <asmjit/core.h>
#ifdef ASMJIT_BUILD_X86
#include <asmjit/x86.h>
#endif
#include <stdio.h>
#include <string.h>
#include "asmjit_test_opcode.h"
#ifndef ASMJIT_NO_COMPILER
#include "asmjit_test_misc.h"
#endif
using namespace asmjit;
// ============================================================================
// [Configuration]
// ============================================================================
static constexpr uint32_t kNumRepeats = 20;
static constexpr uint32_t kNumIterations = 1000;
// ============================================================================
// [BenchUtils]
// ============================================================================
namespace BenchUtils {
class Performance {
public:
inline Performance() noexcept { reset(); }
inline void reset() noexcept {
tick = 0u;
best = 0xFFFFFFFFu;
}
inline uint32_t start() noexcept { return (tick = now()); }
inline uint32_t diff() const noexcept { return now() - tick; }
inline uint32_t end() noexcept {
tick = diff();
if (best > tick)
best = tick;
return tick;
}
static inline uint32_t now() noexcept {
return OSUtils::getTickCount();
}
uint32_t tick;
uint32_t best;
};
static double mbps(uint32_t time, uint64_t outputSize) noexcept {
if (!time) return 0.0;
double bytesTotal = double(outputSize);
return (bytesTotal * 1000) / (double(time) * 1024 * 1024);
}
template<typename EmitterT, typename FuncT>
static void bench(CodeHolder& code, uint32_t arch, const char* testName, const FuncT& func) noexcept {
EmitterT emitter;
const char* archName =
arch == Environment::kArchX86 ? "X86" :
arch == Environment::kArchX64 ? "X64" : "???";
const char* emitterName =
emitter.isAssembler() ? "Assembler" :
emitter.isCompiler() ? "Compiler" :
emitter.isBuilder() ? "Builder" : "Unknown";
Performance perf;
uint64_t codeSize = 0;
Environment env(arch);
for (uint32_t r = 0; r < kNumRepeats; r++) {
perf.start();
codeSize = 0;
for (uint32_t i = 0; i < kNumIterations; i++) {
code.init(env);
code.attach(&emitter);
func(emitter);
codeSize += code.codeSize();
code.reset();
}
perf.end();
}
printf("[%s] %-9s %-10s | Time:%6u [ms] | ", archName, emitterName, testName, perf.best);
if (codeSize)
printf("Speed: %7.3f [MB/s]", mbps(perf.best, codeSize));
else
printf("Speed: N/A");
printf("\n");
}
}
// ============================================================================
// [Main]
// ============================================================================
#ifdef ASMJIT_BUILD_X86
static void benchX86(uint32_t arch) noexcept {
CodeHolder code;
BenchUtils::bench<x86::Assembler>(code, arch, "[fast]", [](x86::Assembler& a) {
asmtest::generateOpcodes(a.as<x86::Emitter>());
});
BenchUtils::bench<x86::Assembler>(code, arch, "[validate]", [](x86::Assembler& a) {
a.addValidationOptions(BaseEmitter::kValidationOptionAssembler);
asmtest::generateOpcodes(a.as<x86::Emitter>());
});
#ifndef ASMJIT_NO_BUILDER
BenchUtils::bench<x86::Builder>(code, arch, "[no-asm]", [](x86::Builder& cb) {
asmtest::generateOpcodes(cb.as<x86::Emitter>());
});
BenchUtils::bench<x86::Builder>(code, arch, "[asm]", [](x86::Builder& cb) {
asmtest::generateOpcodes(cb.as<x86::Emitter>());
cb.finalize();
});
#endif
#ifndef ASMJIT_NO_COMPILER
BenchUtils::bench<x86::Compiler>(code, arch, "[no-asm]", [](x86::Compiler& cc) {
asmtest::generateAlphaBlend(cc);
});
BenchUtils::bench<x86::Compiler>(code, arch, "[asm]", [](x86::Compiler& cc) {
asmtest::generateAlphaBlend(cc);
cc.finalize();
});
#endif
}
#endif
int main() {
#ifdef ASMJIT_BUILD_X86
benchX86(Environment::kArchX86);
benchX86(Environment::kArchX64);
#endif
return 0;
}
|