Skip to content

Commit

Permalink
some uncommitted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dlp committed Jul 11, 2017
1 parent 6e4b826 commit 35a3f1d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion experiments/cache_prefetch_lock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SHELL=/bin/bash
CC = patmos-clang -mpatmos-method-cache-size=8192 \
-mpatmos-stack-cache-block-size=4 -mpatmos-stack-cache-size=1024 \
-mpatmos-disable-function-splitter -mpatmos-disable-vliw \
-Xllc -mpatmos-block-align=8
-Xllc -mpatmos-basicblock-align=8

CFLAGS = -g -O2
PASIM = pasim -G0 -m8M --gsize=32M
Expand Down
2 changes: 1 addition & 1 deletion experiments/wcet/benchmarks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
benchfilter_from_arg()
builds = %w{O1f} # {O0 O1 O1f O2}
configs = %w{notrace} # {blockglobal blocklocal minimal notrace}
configs = %w{blockglobal blocklocal minimal notrace}
$benchmarks = mrtc_benchmarks.select { |b|
if b['irreducible'] || b['recursive']
false
Expand Down
1 change: 1 addition & 0 deletions experiments/wcet/run.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def BenchTool.import_ff(benchmark, options)
config.options.use_trace_facts = false
# config.options.compute_criticalities = true
config.options.disable_ait = true
config.options.compare_trace_facts = true

# run benchmarks
build_and_run(config, BenchTool)
Expand Down
2 changes: 1 addition & 1 deletion gitall
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ base=`dirname $self`/..
GITBASE=$base

# Names of git subdirectories in $GITBASE
GITREPOS="patmos bench newlib compiler-rt gold llvm/tools/clang llvm misc"
GITREPOS="patmos bench newlib compiler-rt gold llvm/tools/clang llvm misc aegean poseidon"

# Color codes
RED="\033[31m"
Expand Down
4 changes: 2 additions & 2 deletions simutils/simutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __str__(self):

def trace(binary):
"""Generator for execution trace (instr addresses)"""
pasim_cmd = ['pasim', '--debug=0', '--debug-fmt=trace', binary]
pasim_cmd = ['pasim', '--debug=0', '--debug-fmt=trace', '-G0', '-m16M', binary]
# send stdout to /dev/null
with open(os.devnull, 'w') as fnull:
pasim = Popen(pasim_cmd, stderr=PIPE, stdout=fnull)
Expand All @@ -42,7 +42,7 @@ def trace(binary):

def trace_ex(binary):
"""Generator for extended execution trace in EX stage (instr addresses + PRR before)"""
pasim_cmd = ['pasim', '--debug=0', '--debug-fmt=default', binary]
pasim_cmd = ['pasim', '--debug=0', '--debug-fmt=long', binary]
# send stdout to /dev/null
with open(os.devnull, 'w') as fnull:
pasim = Popen(pasim_cmd, stderr=PIPE, stdout=fnull)
Expand Down

0 comments on commit 35a3f1d

Please sign in to comment.