arch-x86: Change warn to warn_once for NT instructions
authorHoa Nguyen <hoanguyen@ucdavis.edu>
Wed, 18 Sep 2019 23:50:19 +0000 (16:50 -0700)
committerHoa Nguyen <hoanguyen@ucdavis.edu>
Thu, 19 Sep 2019 19:46:46 +0000 (19:46 +0000)
Change-Id: I50353716f2a913b9b106b140644d95991879f662
Signed-off-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/21039
Reviewed-by: Gabe Black <gabeblack@google.com>
Reviewed-by: Pouya Fotouhi <pfotouhi@ucdavis.edu>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/x86/isa/insts/simd128/integer/data_transfer/move_non_temporal.py
src/arch/x86/isa/insts/simd64/integer/data_transfer/move_non_temporal.py

index 08296bd5609fdbcb3650fceca336ea41a756d23f..edabdc6e47675d6f7e499ceda6842805e59d7fad 100644 (file)
 
 microcode = '''
 def macroop MOVNTDQ_M_XMM {
-    warn "MOVNTDQ: Ignoring non-temporal hint, modeling as cacheable!"
+    warn_once "MOVNTDQ: Ignoring non-temporal hint, modeling as cacheable!"
     cda seg, sib, "DISPLACEMENT + 8", dataSize=8
     stfp xmml, seg, sib, "DISPLACEMENT", dataSize=8
     stfp xmmh, seg, sib, "DISPLACEMENT + 8", dataSize=8
 };
 
 def macroop MOVNTDQ_P_XMM {
-    warn "MOVNTDQ_P: Ignoring non-temporal hint, modeling as cacheable!"
+    warn_once "MOVNTDQ_P: Ignoring non-temporal hint, modeling as cacheable!"
     rdip t7
     cda seg, riprel, "DISPLACEMENT + 8", dataSize=8
     stfp xmml, seg, riprel, "DISPLACEMENT", dataSize=8
index ccd37f165bad728f18fd833cb98aff3b15b924d9..fdf303f37bcfbf13ea3d8a29b7c0692bba66ef88 100644 (file)
 
 microcode = '''
 def macroop MOVNTQ_M_MMX {
-    warn "MOVNTQ: Ignoring non-temporal hint, modeling as cacheable!"
+    warn_once "MOVNTQ: Ignoring non-temporal hint, modeling as cacheable!"
     stfp mmx, seg, sib, "DISPLACEMENT", dataSize=8
 };
 
 def macroop MOVNTQ_P_MMX {
-    warn "MOVNTQ_P: Ignoring non-temporal hint, modeling as cacheable!"
+    warn_once "MOVNTQ_P: Ignoring non-temporal hint, modeling as cacheable!"
     rdip t7
     stfp mmx, seg, riprel, "DISPLACEMENT", dataSize=8
 };