-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.txt
24 lines (23 loc) · 1.09 KB
/
help.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Usage: cargo run pp [options]
Options:
-h, --help show this help message and exit
-a ADDRESSES, --addresses=ADDRESSES
a set of comma-separated pages to access; -1 means
randomly generate
-f ADDRESSFILE, --addressfile=ADDRESSFILE
a file with a bunch of addresses in it
-n NUMADDRS, --numaddrs=NUMADDRS
if -a (--addresses) is -1, this is the number of addrs
to generate
-p POLICY, --policy=POLICY
replacement policy: FIFO, LRU, OPT, UNOPT, RAND, CLOCK
-b CLOCKBITS, --clockbits=CLOCKBITS
for CLOCK policy, how many clock bits to use
-C CACHESIZE, --cachesize=CACHESIZE
size of the page cache, in pages
-m MAXPAGE, --maxpage=MAXPAGE
if randomly generating page accesses, this is the max
page number
-s SEED, --seed=SEED random number seed
-N, --notrace do not print out a detailed trace
-c, --compute compute answers for me