diff options
author | Matt Derksen <mderkse1@us.ibm.com> | 2017-10-03 11:02:13 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-10-19 22:17:55 -0400 |
commit | ad1909dedffab93922fe80f06bf89d5b76d9e9a0 (patch) | |
tree | a244fa143b4463dc2f51b742d606a64cefd1548a /src/build/debug/simics-debug-framework.py | |
parent | 20250c0b1f6de53b2bfddd1c714fb8c97e655ce2 (diff) | |
download | talos-hostboot-ad1909dedffab93922fe80f06bf89d5b76d9e9a0.tar.gz talos-hostboot-ad1909dedffab93922fe80f06bf89d5b76d9e9a0.zip |
Log traces to error logs in HBRT
This enables buffer tracing at hostboot runtime.
Will add these traces to runtime errors for better debug
Change-Id: I795bb7deafdd02adea4588ebf8dfb11cbce116a0
RTC:172770
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48084
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/debug/simics-debug-framework.py')
-rw-r--r-- | src/build/debug/simics-debug-framework.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/build/debug/simics-debug-framework.py b/src/build/debug/simics-debug-framework.py index 1dc342adb..e087f9d8d 100644 --- a/src/build/debug/simics-debug-framework.py +++ b/src/build/debug/simics-debug-framework.py @@ -595,6 +595,13 @@ def magic_instruction_callback(user_arg, cpu, arg): dateCommand = "shell \" date +'%s > ISTEP %d.%d' \""%(percent_s,major_istep,minor_istep) SIM_run_alone(run_command, dateCommand ) + if arg == 7021: # MAGIC_PRINT_TWO_REGS + first_num = cpu.r4 + second_num = cpu.r5 + percent_s = "%s" + dateCommand = "shell \" date +'%s > TRACE REGS: %d %d' \""%(percent_s,first_num,second_num) + SIM_run_alone(run_command, dateCommand ) + if arg == 7055: # MAGIC_CONTINUOUS_TRACE hb_tracBinaryBuffer = cpu.r4 hb_tracBinaryBufferSz = cpu.r5 |