Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TableGen] Use size returned by encodeULEB128 to simplify some code. NFC #133750

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

topperc
Copy link
Collaborator

@topperc topperc commented Mar 31, 2025

We can use the length to insert all the bytes at once instead of partially decoding them to insert one byte at a time.

We can use the length to insert all the bytes at once instead of
partially decoding them to insert one byte at a time.
@topperc topperc requested review from jayfoad, jurahul and nvjle March 31, 2025 16:50
@llvmbot
Copy link
Member

llvmbot commented Mar 31, 2025

@llvm/pr-subscribers-tablegen

Author: Craig Topper (topperc)

Changes

We can use the length to insert all the bytes at once instead of partially decoding them to insert one byte at a time.


Full diff: https://github.com/llvm/llvm-project/pull/133750.diff

1 Files Affected:

  • (modified) llvm/utils/TableGen/DecoderEmitter.cpp (+8-14)
diff --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index cf7c02db8842e..ecf9c84f86a6d 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -1430,16 +1430,12 @@ void FilterChooser::emitSingletonTableEntry(DecoderTableInfo &TableInfo,
     unsigned NumBits = Islands[I - 1].NumBits;
     assert(isUInt<8>(NumBits) && "NumBits overflowed uint8 table entry!");
     TableInfo.Table.push_back(MCD::OPC_CheckField);
-    uint8_t Buffer[16], *P;
-    encodeULEB128(Islands[I - 1].StartBit, Buffer);
-    for (P = Buffer; *P >= 128; ++P)
-      TableInfo.Table.push_back(*P);
-    TableInfo.Table.push_back(*P);
+    uint8_t Buffer[16];
+    unsigned Len = encodeULEB128(Islands[I - 1].StartBit, Buffer);
+    TableInfo.Table.insert(TableInfo.Table.end(), Buffer, Buffer + Len);
     TableInfo.Table.push_back(NumBits);
-    encodeULEB128(Islands[I - 1].FieldVal, Buffer);
-    for (P = Buffer; *P >= 128; ++P)
-      TableInfo.Table.push_back(*P);
-    TableInfo.Table.push_back(*P);
+    Len = encodeULEB128(Islands[I - 1].FieldVal, Buffer);
+    TableInfo.Table.insert(TableInfo.Table.end(), Buffer, Buffer + Len);
     // Push location for NumToSkip backpatching.
     TableInfo.FixupStack.back().push_back(TableInfo.Table.size());
     // The fixup is always 24-bits, so go ahead and allocate the space
@@ -1469,11 +1465,9 @@ void FilterChooser::emitSingletonTableEntry(DecoderTableInfo &TableInfo,
   TableInfo.Table.push_back(HasCompleteDecoder ? MCD::OPC_Decode
                                                : MCD::OPC_TryDecode);
   NumEncodingsSupported++;
-  uint8_t Buffer[16], *p;
-  encodeULEB128(Opc.Opcode, Buffer);
-  for (p = Buffer; *p >= 128; ++p)
-    TableInfo.Table.push_back(*p);
-  TableInfo.Table.push_back(*p);
+  uint8_t Buffer[16];
+  unsigned Len = encodeULEB128(Opc.Opcode, Buffer);
+  TableInfo.Table.insert(TableInfo.Table.end(), Buffer, Buffer + Len);
 
   SmallString<16> Bytes;
   raw_svector_ostream S(Bytes);

@nvjle
Copy link
Contributor

nvjle commented Mar 31, 2025

Thanks @topperc, LGTM.

@topperc topperc merged commit 40c859a into llvm:main Mar 31, 2025
13 checks passed
@topperc topperc deleted the pr/decoder-uleb-length branch March 31, 2025 22:58
@llvm-ci
Copy link
Collaborator

llvm-ci commented Mar 31, 2025

LLVM Buildbot has detected a new failure on builder sanitizer-aarch64-linux running on sanitizer-buildbot8 while building llvm at step 2 "annotate".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/51/builds/13580

Here is the relevant piece of the build log for the reference
Step 2 (annotate) failure: 'python ../sanitizer_buildbot/sanitizers/zorg/buildbot/builders/sanitizers/buildbot_selector.py' (failure)
...
[182/186] Generating MSAN_INST_TEST_OBJECTS.msan_test.cpp.aarch64-with-call.o
[183/186] Generating Msan-aarch64-with-call-Test
[184/186] Generating MSAN_INST_TEST_OBJECTS.msan_test.cpp.aarch64.o
[185/186] Generating Msan-aarch64-Test
[185/186] Running compiler_rt regression tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/discovery.py:276: warning: input '/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/interception/Unit' contained no tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/discovery.py:276: warning: input '/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/sanitizer_common/Unit' contained no tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 3104 of 6146 tests, 72 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
FAIL: ThreadSanitizer-aarch64 :: deadlock_detector_stress_test.cpp (3104 of 3104)
******************** TEST 'ThreadSanitizer-aarch64 :: deadlock_detector_stress_test.cpp' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadMutex # RUN: at line 1
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadMutex
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-NOT-SECOND # RUN: at line 2
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-NOT-SECOND
env TSAN_OPTIONS=atexit_sleep_ms=0:second_deadlock_stack=1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-SECOND # RUN: at line 3
+ env TSAN_OPTIONS=atexit_sleep_ms=0:second_deadlock_stack=1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-SECOND
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadSpinLock # RUN: at line 4
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadSpinLock
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp # RUN: at line 5
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadRWLock # RUN: at line 6
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadRWLock
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-RD # RUN: at line 7
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-RD
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp:389:15: error: CHECK-RD: expected string not found in input
 // CHECK-RD: Starting Test13
              ^
<stdin>:227:16: note: scanning from here
Starting Test12: 4 threads read lock/unlock 4 shared mutexes, one under another
               ^
<stdin>:231:64: note: possible intended match here
 #2 void __tsan::TraceEvent<__tsan::EventUnlock>(__tsan::ThreadState*, __tsan::EventUnlock) /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h (deadlock_detector_stress_test.cpp.tmp+0x11de64)
                                                               ^

Input file: <stdin>
Check file: /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp

-dump-input=help explains the following input dump.

Step 11 (test compiler-rt debug) failure: test compiler-rt debug (failure)
...
[182/186] Generating MSAN_INST_TEST_OBJECTS.msan_test.cpp.aarch64-with-call.o
[183/186] Generating Msan-aarch64-with-call-Test
[184/186] Generating MSAN_INST_TEST_OBJECTS.msan_test.cpp.aarch64.o
[185/186] Generating Msan-aarch64-Test
[185/186] Running compiler_rt regression tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/discovery.py:276: warning: input '/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/interception/Unit' contained no tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/discovery.py:276: warning: input '/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/sanitizer_common/Unit' contained no tests
llvm-lit: /home/b/sanitizer-aarch64-linux/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 3104 of 6146 tests, 72 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
FAIL: ThreadSanitizer-aarch64 :: deadlock_detector_stress_test.cpp (3104 of 3104)
******************** TEST 'ThreadSanitizer-aarch64 :: deadlock_detector_stress_test.cpp' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadMutex # RUN: at line 1
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadMutex
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-NOT-SECOND # RUN: at line 2
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-NOT-SECOND
env TSAN_OPTIONS=atexit_sleep_ms=0:second_deadlock_stack=1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-SECOND # RUN: at line 3
+ env TSAN_OPTIONS=atexit_sleep_ms=0:second_deadlock_stack=1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-SECOND
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadSpinLock # RUN: at line 4
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadSpinLock
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp # RUN: at line 5
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
/home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang  --driver-mode=g++ -fsanitize=thread -Wall   -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta    -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadRWLock # RUN: at line 6
+ /home/b/sanitizer-aarch64-linux/build/build_default/./bin/clang --driver-mode=g++ -fsanitize=thread -Wall -Wthread-safety -Wthread-safety-reference -Wthread-safety-beta -gline-tables-only -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -std=c++11 -I/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/../ -nostdinc++ -I/home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/lib/tsan/libcxx_tsan_aarch64/include/c++/v1 /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp -o /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp -DLockType=PthreadRWLock
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10  /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp | FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-RD # RUN: at line 7
+ FileCheck /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp --check-prefix=CHECK --check-prefix=CHECK-RD
+ /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deflake.bash 10 /home/b/sanitizer-aarch64-linux/build/build_default/runtimes/runtimes-bins/compiler-rt/test/tsan/AARCH64Config/Output/deadlock_detector_stress_test.cpp.tmp
/home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp:389:15: error: CHECK-RD: expected string not found in input
 // CHECK-RD: Starting Test13
              ^
<stdin>:227:16: note: scanning from here
Starting Test12: 4 threads read lock/unlock 4 shared mutexes, one under another
               ^
<stdin>:231:64: note: possible intended match here
 #2 void __tsan::TraceEvent<__tsan::EventUnlock>(__tsan::ThreadState*, __tsan::EventUnlock) /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h (deadlock_detector_stress_test.cpp.tmp+0x11de64)
                                                               ^

Input file: <stdin>
Check file: /home/b/sanitizer-aarch64-linux/build/llvm-project/compiler-rt/test/tsan/deadlock_detector_stress_test.cpp

-dump-input=help explains the following input dump.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants