Skip to content

Commit 685b55f

Browse files
committed
WIP: debug print
Signed-off-by: Máté Tokodi [email protected]
1 parent 205776e commit 685b55f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/jit/SimdArm64Inl.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
*/
1616

1717
/* Only included by jit-backend.cc */
18+
#pragma once
19+
20+
#include <cstdio>
1821

1922
namespace SimdOp {
2023

@@ -601,8 +604,10 @@ static void simdEmitDot(sljit_compiler* compiler, uint32_t type, sljit_s32 rd, s
601604
{
602605
// The rd can be tmpReg1
603606
#ifdef __ARM_FEATURE_DOTPROD
607+
fprintf(stderr, "SimdArm64Inl.h: simdEmitDot: using short path");
604608
simdEmitOp(compiler, SimdOp::sdot | type, rd, rn, rm);
605609
#else
610+
fprintf(stderr, "SimdArm64Inl.h: simdEmitDot: using long path");
606611
sljit_s32 tmpReg1 = SLJIT_TMP_FR0;
607612
sljit_s32 tmpReg2 = SLJIT_TMP_FR1;
608613
uint32_t lowType = type - (0x1 << SimdOp::sizeOffset);

0 commit comments

Comments
 (0)