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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
|
/**************************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright (C) 2013 Intel Corporation. All rights reversed.
* Author: Shuang He <shuang.he@intel.com>
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
**************************************************************************/
#include <string.h>
#include <limits.h> // for CHAR_MAX
#include <memory> // for unique_ptr
#include <iostream>
#include <regex>
#include <getopt.h>
#ifndef _WIN32
#include <unistd.h> // for isatty()
#endif
#ifdef _WIN32
#include <malloc.h> // _get_heap_handle
#include <new.h>
#include <windows.h>
#include <psapi.h>
#endif
#include "os_binary.hpp"
#include "os_crtdbg.hpp"
#include "os_time.hpp"
#include "os_thread.hpp"
#include "image.hpp"
#include "threaded_snapshot.hpp"
#include "trace_callset.hpp"
#include "trace_dump.hpp"
#include "trace_option.hpp"
#include "retrace.hpp"
#include "state_writer.hpp"
#include "ws.hpp"
#include "process_name.hpp"
static bool waitOnFinish = false;
static const char *snapshotPrefix = "";
static enum {
PNM_FMT,
RAW_RGB,
RAW_MD5
} snapshotFormat = PNM_FMT;
static trace::CallSet snapshotFrequency;
static unsigned snapshotInterval = 0;
static unsigned dumpStateCallNo = ~0;
retrace::Retracer retracer;
namespace retrace {
trace::AbstractParser *parser;
trace::Profiler profiler;
int verbosity = 0;
int debug = 1;
bool markers = false;
bool snapshotMRT = false;
bool snapshotAlpha = false;
bool forceWindowed = true;
bool dumpingState = false;
bool dumpingSnapshots = false;
bool ignoreCalls = false;
trace::CallSet callsToIgnore;
bool resolveMSAA = true;
Driver driver = DRIVER_DEFAULT;
const char *driverModule = NULL;
bool doubleBuffer = true;
unsigned samples = 1;
unsigned curPass = 0;
unsigned numPasses = 1;
bool profilingWithBackends = false;
char* profilingCallsMetricsString;
char* profilingFramesMetricsString;
char* profilingDrawCallsMetricsString;
bool profilingListMetrics = false;
bool profilingNumPasses = false;
bool profiling = false;
bool profilingFrameTimes = false;
bool profilingGpuTimes = false;
bool profilingCpuTimes = false;
bool profilingPixelsDrawn = false;
bool profilingMemoryUsage = false;
bool useCallNos = true;
bool singleThread = false;
bool ignoreRetvals = false;
bool contextCheck = true;
bool snapshotForceBackbuffer = false;
int64_t minCpuTime = 1000;
retrace::EQueryHandling queryResultHandling = retrace::QUERY_SKIP;
unsigned frameNo = 0;
unsigned callNo = 0;
long long lastFrameTime = 0;
long long perFrameDelayUsec = 0;
long long minFrameDurationUsec = 0;
static void
takeSnapshot(unsigned call_no, bool backBuffer);
/**
* Called when we are about to present.
*
* This is necessary presentation modes discard the presented contents, so we
* must take the snapshot before the actual present call.
*/
void
frameComplete(trace::Call &call)
{
++frameNo;
bool bNeedFrameDelay = perFrameDelayUsec || minFrameDurationUsec;
if (bNeedFrameDelay) {
long long startTime = os::getTime();
long long delayUsec = perFrameDelayUsec;
if (lastFrameTime > 0) {
long long actualFrameTime = startTime - lastFrameTime;
if (actualFrameTime < 0) {
actualFrameTime = 0;
std::cerr << "warning: os::getTime() returned a negative interval.\n";
}
long long actualFrameTimeUsec = actualFrameTime *
1000 * 1000 / os::timeFrequency;
if (actualFrameTimeUsec < minFrameDurationUsec) {
delayUsec += minFrameDurationUsec - actualFrameTimeUsec;
}
}
if (delayUsec > 0) {
os::sleep(delayUsec);
}
}
if (snapshotFrequency.contains(call)) {
takeSnapshot(call.no, snapshotForceBackbuffer);
if (call.no >= snapshotFrequency.getLast()) {
exit(0);
}
}
if (bNeedFrameDelay) {
lastFrameTime = os::getTime();
}
}
class DefaultDumper: public Dumper
{
public:
int
getSnapshotCount(void) override {
return 0;
}
image::Image *
getSnapshot(int n, bool backBuffer) override {
return NULL;
}
bool
canDump(void) override {
return false;
}
void
dumpState(StateWriter &writer) override {
assert(0);
}
};
static DefaultDumper defaultDumper;
Dumper *dumper = &defaultDumper;
typedef StateWriter *(*StateWriterFactory)(std::ostream &);
static StateWriterFactory stateWriterFactory = createJSONStateWriter;
static Snapshotter *snapshotter;
/**
* Take snapshots.
*/
static void
takeSnapshot(unsigned call_no, int mrt, unsigned snapshot_no, bool backBuffer) {
assert(dumpingSnapshots);
assert(snapshotPrefix);
std::unique_ptr<image::Image> src(dumper->getSnapshot(mrt, backBuffer));
if (!src) {
/* TODO for mrt>0 we probably don't want to treat this as an error: */
if (mrt == 0)
std::cerr << call_no << ": warning: failed to get snapshot\n";
return;
}
if ((snapshotInterval == 0 ||
(snapshot_no % snapshotInterval) == 0)) {
if (snapshotPrefix[0] == '-' && snapshotPrefix[1] == 0) {
char comment[21];
snprintf(comment, sizeof comment, "%u",
useCallNos ? call_no : snapshot_no);
switch (snapshotFormat) {
case PNM_FMT:
src->writePNM(std::cout, comment);
break;
case RAW_RGB:
src->writeRAW(std::cout);
break;
case RAW_MD5:
src->writeMD5(std::cout);
break;
default:
assert(0);
break;
}
} else {
os::String filename;
unsigned no = useCallNos ? call_no : snapshot_no;
if (!retrace::snapshotMRT) {
assert(mrt == 0);
filename = os::String::format("%s%010u.png", snapshotPrefix, no);
} else if (mrt == -2) {
/* stencil */
filename = os::String::format("%s%010u-s.png", snapshotPrefix, no);
} else if (mrt == -1) {
/* depth */
filename = os::String::format("%s%010u-z.png", snapshotPrefix, no);
} else {
filename = os::String::format("%s%010u-mrt%u.png", snapshotPrefix, no, mrt);
}
// Here we release our ownership on the Image, it is now the
// responsibility of the snapshotter to delete it.
snapshotter->writePNG(filename, src.release());
}
}
return;
}
static void
takeSnapshot(unsigned call_no, bool backBuffer)
{
static signed long long last_call_no = -1;
if (call_no == last_call_no) {
return;
}
last_call_no = call_no;
static unsigned snapshot_no = 0;
int cnt = dumper->getSnapshotCount();
if (retrace::snapshotMRT) {
for (int mrt = -2; mrt < cnt; mrt++) {
takeSnapshot(call_no, mrt, snapshot_no, backBuffer);
}
} else {
takeSnapshot(call_no, 0, snapshot_no, backBuffer);
}
snapshot_no++;
}
/**
* Retrace one call.
*
* Take snapshots before/after retracing (as appropriate) and dispatch it to
* the respective handler.
*/
static void
retraceCall(trace::Call *call) {
callNo = call->no;
if (ignoreCalls && callsToIgnore.contains(callNo)) {
return;
}
retracer.retrace(*call);
if (snapshotFrequency.contains(*call)) {
takeSnapshot(call->no, snapshotForceBackbuffer);
if (call->no >= snapshotFrequency.getLast()) {
exit(0);
}
}
// dumpStateCallNo is 0 when fetching default state
if (call->no == dumpStateCallNo || dumpStateCallNo == 0) {
if (dumper->canDump()) {
StateWriter *writer = stateWriterFactory(std::cout);
dumper->dumpState(*writer);
delete writer;
exit(0);
} else if (dumpStateCallNo != 0) {
std::cerr << call->no << ": error: failed to dump state\n";
exit(1);
}
}
}
class RelayRunner;
/**
* Implement multi-threading by mimicking a relay race.
*/
class RelayRace
{
private:
/**
* Runners indexed by the leg they run (i.e, the thread_ids from the
* trace).
*/
std::vector<RelayRunner*> runners;
public:
RelayRace();
~RelayRace();
RelayRunner *
getRunner(unsigned leg);
inline RelayRunner *
getForeRunner() {
return getRunner(0);
}
void
run(void);
void
passBaton(trace::Call *call);
void
finishLine();
void
stopRunners();
};
/**
* Each runner is a thread.
*
* The fore runner doesn't have its own thread, but instead uses the thread
* where the race started.
*/
class RelayRunner
{
private:
friend class RelayRace;
RelayRace *race;
unsigned leg;
std::mutex mutex;
std::condition_variable wake_cond;
/**
* There are protected by the mutex.
*/
bool finished;
trace::Call *baton;
std::thread thread;
static void
runnerThread(RelayRunner *_this);
public:
RelayRunner(RelayRace *race, unsigned _leg) :
race(race),
leg(_leg),
finished(false),
baton(0)
{
/* The fore runner does not need a new thread */
if (leg) {
thread = std::thread(runnerThread, this);
}
}
~RelayRunner() {
if (thread.joinable()) {
thread.join();
}
}
/**
* Thread main loop.
*/
void
runRace(void) {
std::unique_lock<std::mutex> lock(mutex);
while (1) {
while (!finished && !baton) {
wake_cond.wait(lock);
}
if (finished) {
break;
}
assert(baton);
trace::Call *call = baton;
baton = 0;
runLeg(call);
}
if (0) std::cerr << "leg " << leg << " actually finishing\n";
if (leg == 0) {
race->stopRunners();
}
}
/**
* Interpret successive calls.
*/
void
runLeg(trace::Call *call) {
/* Consume successive calls for this thread. */
do {
assert(call);
assert(call->thread_id == leg);
retraceCall(call);
if (!call->reuse_call)
delete call;
call = parser->parse_call();
} while (call && call->thread_id == leg);
if (call) {
/* Pass the baton */
assert(call->thread_id != leg);
flushRendering();
race->passBaton(call);
} else {
/* Reached the finish line */
if (0) std::cerr << "finished on leg " << leg << "\n";
if (leg) {
/* Notify the fore runner */
race->finishLine();
} else {
/* We are the fore runner */
finished = true;
}
}
}
/**
* Called by other threads when relinquishing the baton.
*/
void
receiveBaton(trace::Call *call) {
assert (call->thread_id == leg);
mutex.lock();
baton = call;
mutex.unlock();
wake_cond.notify_one();
}
/**
* Called by the fore runner when the race is over.
*/
void
finishRace() {
if (0) std::cerr << "notify finish to leg " << leg << "\n";
mutex.lock();
finished = true;
mutex.unlock();
wake_cond.notify_one();
}
};
void
RelayRunner::runnerThread(RelayRunner *_this) {
_this->runRace();
}
RelayRace::RelayRace() {
runners.push_back(new RelayRunner(this, 0));
}
RelayRace::~RelayRace() {
assert(runners.size() >= 1);
std::vector<RelayRunner*>::const_iterator it;
for (it = runners.begin(); it != runners.end(); ++it) {
RelayRunner* runner = *it;
delete runner;
}
}
/**
* Get (or instantiate) a runner for the specified leg.
*/
RelayRunner *
RelayRace::getRunner(unsigned leg) {
RelayRunner *runner;
if (leg >= runners.size()) {
runners.resize(leg + 1);
runner = 0;
} else {
runner = runners[leg];
}
if (!runner) {
runner = new RelayRunner(this, leg);
runners[leg] = runner;
}
return runner;
}
/**
* Start the race.
*/
void
RelayRace::run(void) {
trace::Call *call;
call = parser->parse_call();
if (!call) {
/* Nothing to do */
return;
}
RelayRunner *foreRunner = getForeRunner();
if (call->thread_id == 0) {
/* We are the forerunner thread, so no need to pass baton */
foreRunner->baton = call;
} else {
passBaton(call);
}
/* Start the forerunner thread */
foreRunner->runRace();
}
/**
* Pass the baton (i.e., the call) to the appropriate thread.
*/
void
RelayRace::passBaton(trace::Call *call) {
if (0) std::cerr << "switching to thread " << call->thread_id << "\n";
RelayRunner *runner = getRunner(call->thread_id);
runner->receiveBaton(call);
}
/**
* Called when a runner other than the forerunner reaches the finish line.
*
* Only the fore runner can finish the race, so inform him that the race is
* finished.
*/
void
RelayRace::finishLine(void) {
RelayRunner *foreRunner = getForeRunner();
foreRunner->finishRace();
}
/**
* Called by the fore runner after finish line to stop all other runners.
*/
void
RelayRace::stopRunners(void) {
std::vector<RelayRunner*>::const_iterator it;
for (it = runners.begin() + 1; it != runners.end(); ++it) {
RelayRunner* runner = *it;
if (runner) {
runner->finishRace();
}
}
}
static void
mainLoop() {
addCallbacks(retracer);
long long startTime = 0;
frameNo = 0;
startTime = os::getTime();
if (singleThread) {
trace::Call *call;
while ((call = parser->parse_call())) {
retraceCall(call);
if (!call->reuse_call)
delete call;
}
} else {
RelayRace race;
race.run();
}
finishRendering();
long long endTime = os::getTime();
float timeInterval = (endTime - startTime) * (1.0 / os::timeFrequency);
if ((retrace::verbosity >= -1) || (retrace::profiling)) {
std::cout <<
"Rendered " << frameNo << " frames"
" in " << timeInterval << " secs,"
" average of " << (frameNo/timeInterval) << " fps\n";
}
if (waitOnFinish) {
waitForInput();
} else {
return;
}
}
} /* namespace retrace */
static void
usage(const char *argv0) {
std::cout <<
"Usage: " << argv0 << " [OPTION] TRACE [...]\n"
"Replay TRACE.\n"
"\n"
" -b, --benchmark benchmark mode (no error checking or warning messages)\n"
" -d, --debug increase debugging checks\n"
" --markers insert call no markers in the command stream\n"
" --pframe-times frame times profiling (cpu times per frame)\n"
" --pcpu cpu profiling (cpu times per call)\n"
" --pgpu gpu profiling (gpu times per draw call)\n"
" --ppd pixels drawn profiling (pixels drawn per draw call)\n"
" --pmem memory usage profiling (vsize rss per call)\n"
" --pcalls call profiling metrics selection\n"
" --pframes frame profiling metrics selection\n"
" --pdrawcalls draw call profiling metrics selection\n"
" --list-metrics list all available metrics for TRACE\n"
" --query-handling How query readbacks should be handled: ('skip', 'run', 'check'), default is 'skip'\n"
" --query-tolerance Set a tolerance when comparing recorded query results to evaluated ones, a value >0 enables query-handling 'check'\n"
" --gen-passes generate profiling passes and output passes number\n"
" --call-nos[=BOOL] use call numbers in snapshot filenames\n"
" --core use core profile\n"
" --db use a double buffer visual (default)\n"
" --samples=N use GL_ARB_multisample (default is 1)\n"
" --driver=DRIVER force driver type (`hw`, `dgpu`, `igpu`, `sw`, `ref`, `null`, or driver module name)\n"
" --fullscreen allow fullscreen\n"
" --headless don't show windows\n"
" --sb use a single buffer visual\n"
" -m, --mrt dump all MRTs and depth/stencil\n"
" --msaa-no-resolve dump raw sample images of multisampled texture instead of resolved texture\n"
" -s, --snapshot-prefix=PREFIX take snapshots; `-` for PNM stdout output\n"
" --snapshot-alpha Include alpha channel in snapshots.\n"
" --snapshot-format=FMT use (PNM, RGB, or MD5; default is PNM) when writing to stdout output\n"
" -S, --snapshot=CALLSET calls to snapshot (default is every frame)\n"
" --snapshot-interval=N specify a frame interval when generating snaphots (default is 0)\n"
" -t, --snapshot-threaded encode screenshots on multiple threads\n"
" --snapshot-force-backbuffer always read from the backbuffer when taking a snapshot (default read from the current draw buffer)\n"
" -v, --verbose increase output verbosity\n"
" -D, --dump-state=CALL dump state at specific call no\n"
" --dump-format=FORMAT dump state format (`json` or `ubjson`)\n"
" --min-frame-duration=MICROSECONDS specify minimum frame rendering duration\n"
" --per-frame-delay=MICROSECONDS add extra delay after each frame (in addition to min-frame-duration)\n"
" -w, --wait waitOnFinish on final frame\n"
" --loop[=N] loop N times (N<0 continuously) replaying final frame.\n"
" --singlethread use a single thread to replay command stream\n"
" --ignore-retvals ignore return values in wglMakeCurrent, etc\n"
" --no-context-check don't check that the actual GL context version matches the requested version\n"
" --min-cpu-time=NANOSECONDS ignore calls with less than this CPU time when profiling (default is 1000)\n"
" --ignore-calls=CALLSET ignore calls in CALLSET\n"
;
}
enum {
CALL_NOS_OPT = CHAR_MAX + 1,
CORE_OPT,
DB_OPT,
SAMPLES_OPT,
DRIVER_OPT,
FULLSCREEN_OPT,
HEADLESS_OPT,
PFRAMETIMES_OPT,
PCPU_OPT,
PGPU_OPT,
PPD_OPT,
PMEM_OPT,
PCALLS_OPT,
PFRAMES_OPT,
PDRAWCALLS_OPT,
PLMETRICS_OPT,
GENPASS_OPT,
MSAA_NO_RESOLVE_OPT,
SB_OPT,
MIN_FRAME_DURATION_OPT,
PER_FRAME_DELAY_OPT,
LOOP_OPT,
SINGLETHREAD_OPT,
IGNORE_RETVALS_OPT,
NO_CONTEXT_CHECK,
SNAPSHOT_ALPHA_OPT,
SNAPSHOT_FORMAT_OPT,
SNAPSHOT_INTERVAL_OPT,
SNAPSHOT_FORCE_BACKBUFFER_OPT,
DUMP_FORMAT_OPT,
MARKERS_OPT,
MIN_CPU_TIME_OPT,
QUERY_HANDLING_OPT,
QUERY_CHECK_TOLARANCE_OPT,
IGNORE_CALLS_OPT,
};
const static char *
shortOptions = "bdD:hms:S:vwt";
const static struct option
longOptions[] = {
{"benchmark", no_argument, 0, 'b'},
{"debug", no_argument, 0, 'd'},
{"markers", no_argument, 0, MARKERS_OPT},
{"call-nos", optional_argument, 0, CALL_NOS_OPT },
{"core", no_argument, 0, CORE_OPT},
{"db", no_argument, 0, DB_OPT},
{"samples", required_argument, 0, SAMPLES_OPT},
{"driver", required_argument, 0, DRIVER_OPT},
{"dump-state", required_argument, 0, 'D'},
{"dump-format", required_argument, 0, DUMP_FORMAT_OPT},
{"fullscreen", no_argument, 0, FULLSCREEN_OPT},
{"headless", no_argument, 0, HEADLESS_OPT},
{"help", no_argument, 0, 'h'},
{"mrt", no_argument, 0, 'm'},
{"msaa-no-resolve", no_argument, 0, MSAA_NO_RESOLVE_OPT},
{"pframe-times", no_argument, 0, PFRAMETIMES_OPT},
{"pcpu", no_argument, 0, PCPU_OPT},
{"pgpu", no_argument, 0, PGPU_OPT},
{"ppd", no_argument, 0, PPD_OPT},
{"pmem", no_argument, 0, PMEM_OPT},
{"pcalls", required_argument, 0, PCALLS_OPT},
{"pframes", required_argument, 0, PFRAMES_OPT},
{"pdrawcalls", required_argument, 0, PDRAWCALLS_OPT},
{"query-handling", required_argument, 0, QUERY_HANDLING_OPT},
{"query-tolerance", required_argument, 0, QUERY_CHECK_TOLARANCE_OPT},
{"list-metrics", no_argument, 0, PLMETRICS_OPT},
{"gen-passes", no_argument, 0, GENPASS_OPT},
{"sb", no_argument, 0, SB_OPT},
{"snapshot", required_argument, 0, 'S'},
{"snapshot-alpha", no_argument, 0, SNAPSHOT_ALPHA_OPT},
{"snapshot-format", required_argument, 0, SNAPSHOT_FORMAT_OPT},
{"snapshot-interval", required_argument, 0, SNAPSHOT_INTERVAL_OPT},
{"snapshot-force-backbuffer", no_argument, 0, SNAPSHOT_FORCE_BACKBUFFER_OPT},
{"snapshot-prefix", required_argument, 0, 's'},
{"snapshot-threaded", no_argument, 0, 't'},
{"verbose", no_argument, 0, 'v'},
{"wait", no_argument, 0, 'w'},
{"min-frame-duration", required_argument, 0, MIN_FRAME_DURATION_OPT},
{"per-frame-delay", required_argument, 0, PER_FRAME_DELAY_OPT},
{"loop", optional_argument, 0, LOOP_OPT},
{"singlethread", no_argument, 0, SINGLETHREAD_OPT},
{"ignore-retvals", no_argument, 0, IGNORE_RETVALS_OPT},
{"no-context-check", no_argument, 0, NO_CONTEXT_CHECK},
{"min-cpu-time", required_argument, 0, MIN_CPU_TIME_OPT},
{"ignore-calls", required_argument, 0, IGNORE_CALLS_OPT},
{0, 0, 0, 0}
};
static void exceptionCallback(void)
{
std::cerr << retrace::callNo << ": error: caught an unhandled exception\n";
}
static bool
endsWith(const std::string &s1, const char *s2)
{
size_t len = strlen(s2);
return s1.length() >= len &&
s1.compare(s1.length() - len, len, s2) == 0;
}
// Try to compensate for different OS
static void
adjustProcessName(const std::string &name)
{
std::string adjustedName(name);
if (adjustedName.length() > 2 && adjustedName[1] == ':') {
#ifndef _WIN32
adjustedName.erase(0, 2);
#endif
} else {
#ifdef _WIN32
adjustedName.insert(0, "C:");
#endif
}
for (char &c: adjustedName) {
#ifdef _WIN32
if (c == '/') c = '\\';
#else
if (c == '\\') c = '/';
#endif
}
#ifndef _WIN32
static const std::regex programFiles("/Program Files( \\(x86\\))?/", std::regex_constants::icase);
adjustedName = std::regex_replace(adjustedName, programFiles, "/opt/");
#endif
if (endsWith(adjustedName, ".exe")) {
#ifndef _WIN32
adjustedName.resize(adjustedName.length() - strlen(".exe"));
#endif
} else {
#ifdef _WIN32
adjustedName.append(".exe");
#endif
}
std::cerr << adjustedName << "\n";
setProcessName(adjustedName.c_str());
}
#ifdef _WIN32
// Diagnose OOM
static int
new_failure_handler(size_t size)
{
fprintf(stderr, "error: failed to allocate %zu bytes\n", size);
// Describe the heap features:
// 0 - default heap
// 2 - low fragmentation heap
// etc.
ULONG HeapCompatibility;
if (HeapQueryInformation(reinterpret_cast<HANDLE>(_get_heap_handle()),
HeapCompatibilityInformation,
&HeapCompatibility, sizeof HeapCompatibility, nullptr)) {
fprintf(stderr, "info: heap features %lu\n", HeapCompatibility);
}
#define MB (1024*1024)
MEMORYSTATUSEX statex;
statex.dwLength = sizeof statex;
if (GlobalMemoryStatusEx(&statex)) {
fprintf(stderr, "info: %lu%% memory in use\n", statex.dwMemoryLoad);
fprintf(stderr, "info: %llu total MB of physical memory\n", statex.ullTotalPhys/MB);
fprintf(stderr, "info: %llu free MB of physical memory\n", statex.ullAvailPhys/MB);
fprintf(stderr, "info: %llu total MB of paging file\n", statex.ullTotalPageFile/MB);
fprintf(stderr, "info: %llu free MB of paging file\n", statex.ullAvailPageFile/MB);
fprintf(stderr, "info: %llu total MB of virtual memory\n", statex.ullTotalVirtual/MB);
fprintf(stderr, "info: %llu free MB of virtual memory\n", statex.ullAvailVirtual/MB);
fprintf(stderr, "info: %llu free MB of extended memory\n", statex.ullAvailExtendedVirtual/MB);
}
PROCESS_MEMORY_COUNTERS pmc;
if (GetProcessMemoryInfo( GetCurrentProcess(), &pmc, sizeof pmc)) {
fprintf(stderr, "info: %lu page faults\n", pmc.PageFaultCount);
fprintf(stderr, "info: %zu MB peak working set\n", size_t(pmc.PeakWorkingSetSize/MB));
fprintf(stderr, "info: %zu MB working set\n", size_t(pmc.WorkingSetSize/MB));
fprintf(stderr, "info: %zu MB quota peak paged pool usage\n", size_t(pmc.QuotaPeakPagedPoolUsage/MB));
fprintf(stderr, "info: %zu MB quota paged pool usage\n", size_t(pmc.QuotaPagedPoolUsage/MB));
fprintf(stderr, "info: %zu MB quota peak non-paged pool usage\n", size_t(pmc.QuotaPeakNonPagedPoolUsage/MB));
fprintf(stderr, "info: %zu MB quota non-paged pool usage\n", size_t(pmc.QuotaNonPagedPoolUsage/MB));
fprintf(stderr, "info: %zu MB page file used\n", size_t(pmc.PagefileUsage/MB));
fprintf(stderr, "info: %zu MB peak page file used\n", size_t(pmc.PeakPagefileUsage/MB));
}
// Describe free virtual memory
LPCVOID lpAddress = nullptr;
MEMORY_BASIC_INFORMATION MBI;
size_t NumFree = 0;
size_t TotalFree = 0;
size_t LargestFree = 0;
while (VirtualQuery(lpAddress, &MBI, sizeof MBI) == sizeof MBI) {
assert(MBI.RegionSize > 0);
if (MBI.State == MEM_FREE) {
++NumFree;
TotalFree += MBI.RegionSize;
LargestFree = std::max(LargestFree, size_t(MBI.RegionSize));
}
if (LPCBYTE(lpAddress) >= (LPCBYTE)MBI.BaseAddress + MBI.RegionSize) {
break;
}
lpAddress = (LPCBYTE)MBI.BaseAddress + MBI.RegionSize;
}
fprintf(stderr, "info: %zu MB virtual address free\n", TotalFree/MB);
fprintf(stderr, "info: %zu free virtual address regions\n", NumFree);
fprintf(stderr, "info: %zu MB largest free virtual address region\n", LargestFree/MB);
return 0;
}
#ifndef DBG_PRINTEXCEPTION_WIDE_C
#define DBG_PRINTEXCEPTION_WIDE_C 0x4001000A
#endif
// Intercept OutputDebugString and write the message to stderr.
static LONG CALLBACK
VectoredHandler(PEXCEPTION_POINTERS pExceptionInfo)
{
PEXCEPTION_RECORD pExceptionRecord = pExceptionInfo->ExceptionRecord;
DWORD ExceptionCode = pExceptionRecord->ExceptionCode;
if (ExceptionCode == DBG_PRINTEXCEPTION_C) {
ULONG_PTR nLength = pExceptionRecord->ExceptionInformation[0];
PCSTR pString = reinterpret_cast<PCSTR>(pExceptionRecord->ExceptionInformation[1]);
if (nLength > 1 && pString) {
// nLength includes trailing null character
--nLength;
fprintf(stderr, "%u: debug: %s",
retrace::callNo,
pString);
char last = pString[nLength - 1];
if (last != '\r' && last != '\n') {
fputc('\n', stderr);
}
}
return EXCEPTION_CONTINUE_EXECUTION;
}
if (ExceptionCode == DBG_PRINTEXCEPTION_WIDE_C) {
// Do nothing, as this exception will be rethrown as a
// DBG_PRINTEXCEPTION_C.
return EXCEPTION_CONTINUE_SEARCH;
}
return EXCEPTION_CONTINUE_SEARCH;
}
/*
* Show the current call number on the first Ctrl-C/Break event.
*/
static BOOL WINAPI
consoleCtrlHandler(DWORD fdwCtrlType)
{
static int cCtrlC = 0;
static int cCtrlBreak = 0;
switch (fdwCtrlType) {
case CTRL_C_EVENT:
fprintf(stderr, "%u: warning: caught Ctrl-C event\n",
retrace::callNo);
return cCtrlC++ ? FALSE : TRUE;
case CTRL_BREAK_EVENT:
fprintf(stderr, "%u: warning: caught Ctrl-Break event\n",
retrace::callNo);
return cCtrlBreak++ ? FALSE : TRUE;
default:
return FALSE;
}
}
#endif // _WIN32
extern "C"
int main(int argc, char **argv)
{
using namespace retrace;
int loopCount = 0;
int i;
bool snapshotThreaded = false;
os::setDebugOutput(os::OUTPUT_STDERR);
#ifdef _WIN32
#ifdef _MSC_VER
// Hook new and malloc failures
_set_new_handler(new_failure_handler);
_set_new_mode(1);
#else
(void)new_failure_handler;
#endif
if (!IsDebuggerPresent()) {
AddVectoredExceptionHandler(0, VectoredHandler);
}
SetConsoleCtrlHandler(&consoleCtrlHandler, TRUE);
#endif
assert(snapshotFrequency.empty());
int opt;
while ((opt = getopt_long_only(argc, argv, shortOptions, longOptions, NULL)) != -1) {
switch (opt) {
case 'h':
usage(argv[0]);
return 0;
case 'b':
retrace::debug = -1;
retrace::verbosity = -1;
break;
case MARKERS_OPT:
retrace::markers = true;
break;
case 'd':
++retrace::debug;
break;
case CALL_NOS_OPT:
useCallNos = trace::boolOption(optarg);
break;
case 'D':
dumpStateCallNo = atoi(optarg);
dumpingState = true;
retrace::verbosity = -2;
break;
case DUMP_FORMAT_OPT:
if (strcasecmp(optarg, "json") == 0) {
stateWriterFactory = &createJSONStateWriter;
} else if (strcasecmp(optarg, "ubjson") == 0) {
os::setBinaryMode(stdout);
stateWriterFactory = &createUBJSONStateWriter;
} else {
std::cerr << "error: unsupported dump format `" << optarg << "`\n";
return EXIT_FAILURE;
}
break;
case CORE_OPT:
retrace::setFeatureLevel("3_2_core");
break;
case DB_OPT:
retrace::doubleBuffer = true;
break;
case SAMPLES_OPT:
retrace::samples = atoi(optarg);
break;
case DRIVER_OPT:
if (strcasecmp(optarg, "hw") == 0) {
driver = DRIVER_HARDWARE;
} else if (strcasecmp(optarg, "dgpu") == 0) {
driver = DRIVER_DISCRETE;
} else if (strcasecmp(optarg, "igpu") == 0) {
driver = DRIVER_INTEGRATED;
} else if (strcasecmp(optarg, "sw") == 0) {
driver = DRIVER_SOFTWARE;
} else if (strcasecmp(optarg, "ref") == 0) {
driver = DRIVER_REFERENCE;
} else if (strcasecmp(optarg, "null") == 0) {
driver = DRIVER_NULL;
} else {
driver = DRIVER_MODULE;
driverModule = optarg;
}
break;
case FULLSCREEN_OPT:
retrace::forceWindowed = false;
break;
case HEADLESS_OPT:
ws::headless = true;
break;
case 'm':
retrace::snapshotMRT = true;
break;
case MSAA_NO_RESOLVE_OPT:
retrace::resolveMSAA = false;
break;
case SB_OPT:
retrace::doubleBuffer = false;
break;
case SINGLETHREAD_OPT:
retrace::singleThread = true;
break;
case IGNORE_RETVALS_OPT:
retrace::ignoreRetvals = true;
break;
case NO_CONTEXT_CHECK:
retrace::contextCheck = false;
break;
case 's':
dumpingSnapshots = true;
snapshotPrefix = optarg;
if (snapshotFrequency.empty()) {
snapshotFrequency = trace::CallSet(trace::FREQUENCY_FRAME);
}
if (snapshotPrefix[0] == '-' && snapshotPrefix[1] == 0) {
os::setBinaryMode(stdout);
retrace::verbosity = -2;
} else {
/*
* Create the snapshot directory if it does not exist.
*
* We can't just use trimFilename() because when applied to
* "/foo/boo/" it would merely return "/foo".
*
* XXX: create nested directories.
*/
os::String prefix(snapshotPrefix);
os::String::iterator sep = prefix.rfindSep(false);
if (sep != prefix.end()) {
prefix.erase(sep, prefix.end());
if (!prefix.exists() && !os::createDirectory(prefix)) {
std::cerr << "error: failed to create `" << prefix.str() << "` directory\n";
}
}
}
break;
case SNAPSHOT_ALPHA_OPT:
retrace::snapshotAlpha = true;
break;
case SNAPSHOT_FORMAT_OPT:
if (strcmp(optarg, "RGB") == 0)
snapshotFormat = RAW_RGB;
else if (strcmp(optarg, "MD5") == 0)
snapshotFormat = RAW_MD5;
else
snapshotFormat = PNM_FMT;
break;
case 'S':
dumpingSnapshots = true;
snapshotFrequency.merge(optarg);
break;
case SNAPSHOT_INTERVAL_OPT:
snapshotInterval = atoi(optarg);
break;
case SNAPSHOT_FORCE_BACKBUFFER_OPT:
snapshotForceBackbuffer = true;
break;
case 't':
snapshotThreaded = true;
break;
case 'v':
++retrace::verbosity;
break;
case 'w':
waitOnFinish = true;
break;
case MIN_FRAME_DURATION_OPT:
minFrameDurationUsec = trace::intOption(optarg, 0);
break;
case PER_FRAME_DELAY_OPT:
perFrameDelayUsec = trace::intOption(optarg, 0);
break;
case LOOP_OPT:
loopCount = trace::intOption(optarg, -1);
break;
case PFRAMETIMES_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingFrameTimes = true;
break;
case PGPU_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingGpuTimes = true;
break;
case PCPU_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingCpuTimes = true;
break;
case PPD_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingPixelsDrawn = true;
break;
case PMEM_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingMemoryUsage = true;
break;
case PCALLS_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingWithBackends = true;
retrace::profilingCallsMetricsString = optarg;
break;
case PFRAMES_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingWithBackends = true;
retrace::profilingFramesMetricsString = optarg;
break;
case PDRAWCALLS_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingWithBackends = true;
retrace::profilingDrawCallsMetricsString = optarg;
break;
case PLMETRICS_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingWithBackends = true;
retrace::profilingListMetrics = true;
break;
case QUERY_HANDLING_OPT:
if (strcmp(optarg, "check") == 0)
retrace::queryHandling = retrace::QUERY_RUN_AND_CHECK_RESULT;
else if (strcmp(optarg, "run") == 0)
retrace::queryHandling = retrace::QUERY_RUN;
else
retrace::queryHandling = retrace::QUERY_SKIP;
break;
case QUERY_CHECK_TOLARANCE_OPT:
retrace::queryTolerance = atoi(optarg);
if (retrace::queryTolerance > 0)
retrace::queryHandling = retrace::QUERY_RUN_AND_CHECK_RESULT;
break;
case GENPASS_OPT:
retrace::debug = 0;
retrace::profiling = true;
retrace::verbosity = -1;
retrace::profilingWithBackends = true;
retrace::profilingNumPasses = true;
break;
case MIN_CPU_TIME_OPT:
retrace::minCpuTime = atol(optarg);
case IGNORE_CALLS_OPT:
retrace::ignoreCalls = true;
if (retrace::callsToIgnore.empty()) {
retrace::callsToIgnore = trace::CallSet(trace::FREQUENCY_ALL);
}
retrace::callsToIgnore.merge(optarg);
break;
default:
std::cerr << "error: unknown option " << opt << "\n";
usage(argv[0]);
return 1;
}
}
#ifndef _WIN32
if (!isatty(STDOUT_FILENO)) {
dumpFlags |= trace::DUMP_FLAG_NO_COLOR;
}
#endif
#ifdef _WIN32
// Set Windows timer resolution to the minimum period supported by the
// system
TIMECAPS tc;
MMRESULT mmRes = timeGetDevCaps(&tc, sizeof tc);
if (mmRes == MMSYSERR_NOERROR) {
mmRes = timeBeginPeriod(tc.wPeriodMin);
}
#endif
if (snapshotThreaded) {
snapshotter = new ThreadedSnapshotter(std::thread::hardware_concurrency());
} else {
snapshotter = new Snapshotter();
}
retrace::setUp();
if (retrace::profiling && !retrace::profilingWithBackends) {
retrace::profiler.setup(retrace::profilingCpuTimes,
retrace::profilingGpuTimes,
retrace::profilingPixelsDrawn,
retrace::profilingMemoryUsage,
retrace::minCpuTime);
}
os::setExceptionCallback(exceptionCallback);
for (retrace::curPass = 0; retrace::curPass < retrace::numPasses;
retrace::curPass++)
{
for (i = optind; i < argc; ++i) {
parser = new trace::Parser;
if (loopCount) {
parser = lastFrameLoopParser(parser, loopCount);
}
if (!parser->open(argv[i])) {
return 1;
}
auto &properties = parser->getProperties();
auto processNameIt = properties.find("process.name");
if (processNameIt != properties.end()) {
adjustProcessName(processNameIt->second);
}
retrace::mainLoop();
parser->close();
delete parser;
parser = NULL;
}
}
os::resetExceptionCallback();
delete snapshotter;
// XXX: X often hangs on XCloseDisplay
//retrace::cleanUp();
#ifdef _WIN32
if (mmRes == MMSYSERR_NOERROR) {
timeEndPeriod(tc.wPeriodMin);
}
#endif
return 0;
}
|