diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..2ab7314
Binary files /dev/null and b/.DS_Store differ
diff --git a/OCRPython/.DS_Store b/OCRPython/.DS_Store
index 5a23aaa..451627c 100644
Binary files a/OCRPython/.DS_Store and b/OCRPython/.DS_Store differ
diff --git a/OCRPython/.idea/OCRPython.iml b/OCRPython/.idea/OCRPython.iml
new file mode 100644
index 0000000..82ae1e8
--- /dev/null
+++ b/OCRPython/.idea/OCRPython.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OCRPython/.idea/inspectionProfiles/profiles_settings.xml b/OCRPython/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/OCRPython/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OCRPython/.idea/modules.xml b/OCRPython/.idea/modules.xml
new file mode 100644
index 0000000..ccb86f8
--- /dev/null
+++ b/OCRPython/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OCRPython/0.png b/OCRPython/0.png
deleted file mode 100644
index 8a083fa..0000000
Binary files a/OCRPython/0.png and /dev/null differ
diff --git a/OCRPython/add.py b/OCRPython/add.py
deleted file mode 100644
index b2ba485..0000000
--- a/OCRPython/add.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- coding: utf-8 -*-
-import sys
-def helloword(filePath: str):
- #print(f"helloword, filepath:{filePath}")
- #print(f"Hello World!")
- return "return Hello World!"
-
-
-if __name__ == "__main__":
- # print(f"len of parameters:{len(sys.argv)}")
- # for i in range (1, len(sys.argv)):
- # print(sys.argv[i])
- if len(sys.argv) >1:
- jsonString = helloword(sys.argv[1])
- print(jsonString)
-
\ No newline at end of file
diff --git a/OCRPython/IDRecognition b/OCRPython/backup/IDRecognition
similarity index 100%
rename from OCRPython/IDRecognition
rename to OCRPython/backup/IDRecognition
diff --git a/OCRPython/IDRecognition.py b/OCRPython/backup/IDRecognition.py
similarity index 100%
rename from OCRPython/IDRecognition.py
rename to OCRPython/backup/IDRecognition.py
diff --git a/OCRPython/ocr.py b/OCRPython/backup/ocr.py
similarity index 100%
rename from OCRPython/ocr.py
rename to OCRPython/backup/ocr.py
diff --git a/OCRPython/opencv.py b/OCRPython/backup/opencv.py
similarity index 100%
rename from OCRPython/opencv.py
rename to OCRPython/backup/opencv.py
diff --git a/OCRPython/padderOcrmain.py b/OCRPython/backup/padderOcrmain.py
similarity index 100%
rename from OCRPython/padderOcrmain.py
rename to OCRPython/backup/padderOcrmain.py
diff --git a/OCRPython/potencent.py b/OCRPython/backup/potencent.py
similarity index 100%
rename from OCRPython/potencent.py
rename to OCRPython/backup/potencent.py
diff --git a/OCRPython/binary.png b/OCRPython/binary.png
deleted file mode 100644
index d387259..0000000
Binary files a/OCRPython/binary.png and /dev/null differ
diff --git a/OCRPython/contours.png b/OCRPython/contours.png
deleted file mode 100644
index 36a439c..0000000
Binary files a/OCRPython/contours.png and /dev/null differ
diff --git a/OCRPython/dilation.png b/OCRPython/dilation.png
deleted file mode 100644
index a9b9a60..0000000
Binary files a/OCRPython/dilation.png and /dev/null differ
diff --git a/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-312.pyc b/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-312.pyc
index f9fe49c..a89b0b0 100644
Binary files a/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-312.pyc and b/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-312.pyc differ
diff --git a/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-39.pyc b/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-39.pyc
index 4362240..f53fd1e 100644
Binary files a/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-39.pyc and b/OCRPython/extractor/__pycache__/identitycard_extractor.cpython-39.pyc differ
diff --git a/OCRPython/extractor/identitycard_extractor.py b/OCRPython/extractor/identitycard_extractor.py
index 9899dd8..1ac2a0c 100644
--- a/OCRPython/extractor/identitycard_extractor.py
+++ b/OCRPython/extractor/identitycard_extractor.py
@@ -1,50 +1,66 @@
import re
from extractor import Extractor
-import json
+from configs.basic_config import logger
class IdentityCardExtractor(Extractor):
- def extract_text(self,text:str)->dict:
- patterns = {
- "issuingAuthority": r"签发机关\n(.+?)\n",
- "validTime": r"有效期限\n(.+?)\n",
- "name": r"(\S+)\n(?:男|女)",
- "gender": r"(\S+)民族",
- "ethnicity": r"民族(\S+)",
- "dateOfBirth": r"(\d+年\d+月\d+日)",
- "address": r"住址\s*(.*?)公民身份号码",
- "idNumber": r"(\d{18}|\d{17}[Xx])"
- }
- tempText = self.remove_blank_lines(text)
- # 提取信息
- info = {}
- for key, pattern in patterns.items():
- match = re.search(pattern, tempText,re.DOTALL)
- if match:
- tempStr = match.group(1).strip()
- info[key] = tempStr.replace("\n", "")
- return info
+ def extract_text(self, text:str)->dict:
+ try:
+ patterns = {
+ "issuingAuthority": r"签发机关\n(.+?)\n",
+ "validTime": r"有效期限\n(.+?)\n",
+ "name": r"(\S+)\n(?:男|女)",
+ "gender": r"(\S+)民族",
+ "ethnicity": r"民族(\S+)",
+ "dateOfBirth": r"(\d+年\d+月\d+日)",
+ "address": r"(住址|佳址)\s*(.*?)公民身份号码",
+ "idNumber": r"(\d{18}|\d{17}[Xx])"
+ }
+ tempText = self.remove_blank_lines(text)
+ # 提取信息
+ info = {}
+ for key, pattern in patterns.items():
+ match = re.search(pattern, tempText,re.DOTALL)
+ if match:
+ if "address" == key:
+ tempStr = match.group(2).strip()
+ else:
+ tempStr = match.group(1).strip()
+ info[key] = tempStr.replace("\n", "")
+ return info
+ except Exception as e:
+ print(e)
+ logger.error(e)
+ return {}
def extract_textbyPaddle(self, text:str)->dict:
- patterns = {
- "issuingAuthority": r"签发机关\n(.+?)\n",
- "validTime": r"有效期限\n(.+?)\n",
- "name": r"姓名(.*?)\n", #####
- "gender": r"(\S)民族",
- "ethnicity": r"民族(\S+)",
- "dateOfBirth": r"(\d+年\d+月\d+日)",
- "address": r"住址|佳址\s*(.*?)公民身份号码",
- "idNumber": r"(\d{18}|\d{17}[Xx])"
- }
+ try:
+ patterns = {
+ "issuingAuthority": r"签发机关\n(.+?)\n",
+ "validTime": r"有效期限\n*(.+?)\n",
+ "name": r"姓名(.*?)\n", #####
+ "gender": r"(\S)民族",
+ "ethnicity": r"民族(\S+)",
+ "dateOfBirth": r"(\d+年\d+月\d+日)",
+ "address": r"(住址|佳址)\s*(.*?)公民身份号码",
+ "idNumber": r"(\d{18}|\d{17}[Xx])"
+ }
- tempText = self.remove_blank_lines(text)
- # 提取信息
- info = {}
- for key, pattern in patterns.items():
- match = re.search(pattern, tempText,re.DOTALL)
- if match:
- tempStr = match.group(1).strip()
- info[key] = tempStr.replace("\n", "")
- return info
+ tempText = self.remove_blank_lines(text)
+ # 提取信息
+ info = {}
+ for key, pattern in patterns.items():
+ match = re.search(pattern, tempText,re.DOTALL)
+ if match:
+ if "address" == key:
+ tempStr = match.group(2).strip()
+ else:
+ tempStr = match.group(1).strip()
+ info[key] = tempStr.replace("\n", "")
+ return info
+ except Exception as e:
+ print(e)
+ logger.error(e)
+ return {}
class InvoiceExtractor(Extractor):
@@ -66,8 +82,21 @@ class InvoiceExtractor(Extractor):
# 幢2001室
# 公民身份号码
# 440203197306192118"""
+text = """
+中华人民共和国
+居民身份证
+oo
+签发机关宿州市公安局桥分局
+有效期限2023.01.18-2043.01.18
+姓名郭乾坤
+性别男民族汉
+出生1994年10月17日
+住址 安徽省宿州市场桥区朱仙
+庄镇郭庙村郭家组6号
+公民身份号码
+34220119941017327X
+"""
+extractor = IdentityCardExtractor()
-# extractor = IdentityCardExtractor()
-
-# jsonstring = extractor.extract_textbyPaddle(text)
-# print(jsonstring)
\ No newline at end of file
+jsonstring = extractor.extract_textbyPaddle(text)
+print(jsonstring)
\ No newline at end of file
diff --git a/OCRPython/gray.png b/OCRPython/gray.png
deleted file mode 100644
index 56d57d5..0000000
Binary files a/OCRPython/gray.png and /dev/null differ
diff --git a/OCRPython/images/1.jpg b/OCRPython/images/1.jpg
new file mode 100644
index 0000000..d4240d4
Binary files /dev/null and b/OCRPython/images/1.jpg differ
diff --git a/OCRPython/images/2.jpg b/OCRPython/images/2.jpg
new file mode 100644
index 0000000..8a4db39
Binary files /dev/null and b/OCRPython/images/2.jpg differ
diff --git a/OCRPython/logs/ocr_reconginition.log b/OCRPython/logs/ocr_reconginition.log
index 63bdcec..c421abd 100644
--- a/OCRPython/logs/ocr_reconginition.log
+++ b/OCRPython/logs/ocr_reconginition.log
@@ -213,3 +213,12 @@
2024-04-22 11:01:54,640 - main.py[line:119] - INFO: 0
2024-04-22 11:01:54,819 - ocr.py[line:19] - INFO: from rapidocr_onnxruntime import RapidOCR
2024-04-22 11:01:57,426 - main.py[line:42] - INFO: extractIdCardInfo 耗时2.785860061645508秒
+2024-04-22 15:28:23,501 - maincopy.py[line:81] - ERROR: 'NoneType' object has no attribute 'strip'
+2024-04-22 16:18:56,272 - maincopy.py[line:38] - ERROR: 'NoneType' object has no attribute 'shape'
+2024-04-22 16:21:44,808 - maincopy.py[line:38] - ERROR: 'NoneType' object has no attribute 'shape'
+2024-04-22 16:28:20,400 - maincopy.py[line:38] - ERROR: 'NoneType' object has no attribute 'shape'
+2024-04-22 16:28:20,400 - maincopy.py[line:83] - ERROR: local variable 'jsonString' referenced before assignment
+2024-04-22 16:29:46,501 - maincopy.py[line:38] - ERROR: 'NoneType' object has no attribute 'shape'
+2024-04-22 16:29:46,502 - maincopy.py[line:83] - ERROR: local variable 'jsonString' referenced before assignment
+2024-04-22 16:32:09,871 - maincopy.py[line:38] - ERROR: 'NoneType' object has no attribute 'shape'
+2024-04-22 16:32:09,872 - maincopy.py[line:83] - ERROR: local variable 'jsonString' referenced before assignment
diff --git a/OCRPython/maincopy.py b/OCRPython/maincopy.py
index edb49d6..679d422 100644
--- a/OCRPython/maincopy.py
+++ b/OCRPython/maincopy.py
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
import sys
import os
-import io
from paddleocr import PaddleOCR, draw_ocr
import time
from configs.basic_config import logger
@@ -29,25 +28,25 @@ def extractIdCardInfoByPath(filePath1: str, filePath2: str)->str:
text += (line[1][0] + '\n')
if os.path.exists(filePath2):
- result = ocr.ocr(filePath1, cls=False)
+ result = ocr.ocr(filePath2, cls=False)
for idx in range(len(result)):
res = result[idx]
for line in res:
text += (line[1][0] + '\n')
except Exception as e:
logger.error(e)
+ print(e)
- logger.info(f"text:{text}")
- extractor = IdentityCardExtractor()
- jsonString = extractor.extract_textbyPaddle(text)
- end_time = time.time() # 记录结束时间
- execution_time = end_time - start_time # 计算执行时间
- logger.info(f"extractIdCardInfoByBase64Data 耗时{execution_time}秒")
+ if 0 != len(text):
+ logger.info(f"text:{text}")
+ extractor = IdentityCardExtractor()
+ jsonString = extractor.extract_textbyPaddle(text)
+ end_time = time.time() # 记录结束时间
+ execution_time = end_time - start_time # 计算执行时间
+ logger.info(f"extractIdCardInfoByBase64Data 耗时{execution_time}秒")
return jsonString
def extractIdCardInfoByBase64Data(base64data1:str, base64Data2: str)->str:
- image_data1 = ""
- image_data2 = ""
logger.info(f"extractIdCardInfoByBase64Data")
start_time = time.time() # 记录结束时间
jsonString = ""
@@ -89,12 +88,13 @@ def extractIdCardInfoByBase64Data(base64data1:str, base64Data2: str)->str:
# base64_image_string = base64.b64encode(image_file.read()).decode('utf-8')
#
# jsonString = extractIdCardInfoByBase64Data(base64_image_string,"")
+# jsonString = extractIdCardInfoByBase64Data("/Users/wangvivi/Desktop/Code/ocrtest/images/2.jpg","/Users/wangvivi/Desktop/Code/ocrtest/images/1.jpg")
# print(jsonString)
#
-# jsonString = extractIdCardInfoByPath("/Users/wangvivi/Desktop/Code/ocrtest/images/id_card.JPG","")
+#jsonString = extractIdCardInfoByPath("/Users/wangvivi/Desktop/Code/ocrtest/images/id_card.JPG","")
+# jsonString = extractIdCardInfoByPath("/Users/wangvivi/Desktop/Code/ocrtest/images/2.jpg","/Users/wangvivi/Desktop/Code/ocrtest/images/1.jpg")
# print(jsonString)
-
if __name__ == "__main__":
try:
logger.info(f"main.py len of parameter: {len(sys.argv)}")
diff --git a/OCRTool/.DS_Store b/OCRTool/.DS_Store
index bc5c4ed..62fee18 100644
Binary files a/OCRTool/.DS_Store and b/OCRTool/.DS_Store differ
diff --git a/OCRTool/.idea/.DS_Store b/OCRTool/.idea/.DS_Store
new file mode 100644
index 0000000..5008ddf
Binary files /dev/null and b/OCRTool/.idea/.DS_Store differ
diff --git a/OCRTool/.idea/vcs.xml b/OCRTool/.idea/vcs.xml
new file mode 100644
index 0000000..62bd7a0
--- /dev/null
+++ b/OCRTool/.idea/vcs.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OCRTool/.idea/workspace.xml b/OCRTool/.idea/workspace.xml
new file mode 100644
index 0000000..83b7f2f
--- /dev/null
+++ b/OCRTool/.idea/workspace.xml
@@ -0,0 +1,204 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ "associatedIndex": 2
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $USER_HOME$/.subversion
+
+
+
+
+ 1693992725062
+
+
+ 1693992725062
+
+
+
+
+
+
+
+
+
+ 1713756758892
+
+
+
+ 1713756758892
+
+
+
+ 1713764057996
+
+
+
+ 1713764057996
+
+
+
+ 1713764755375
+
+
+
+ 1713764755375
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ file://$PROJECT_DIR$/src/main/java/com/bonus/core/RecognitionController.java
+ 9
+
+
+
+ file://$PROJECT_DIR$/src/main/java/com/bonus/core/OCRRecognition.java
+ 28
+
+
+
+ file://$PROJECT_DIR$/src/main/java/com/bonus/core/OCRRecognition.java
+ 79
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OCRTool/hs_err_pid55610.log b/OCRTool/hs_err_pid55610.log
deleted file mode 100644
index d57279b..0000000
--- a/OCRTool/hs_err_pid55610.log
+++ /dev/null
@@ -1,815 +0,0 @@
-#
-# A fatal error has been detected by the Java Runtime Environment:
-#
-# SIGSEGV (0xb) at pc=0x00000001237d9bac, pid=55610, tid=0x0000000000001703
-#
-# JRE version: Java(TM) SE Runtime Environment (8.0_381) (build 1.8.0_381-b09)
-# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.381-b09 mixed mode bsd-aarch64 compressed oops)
-# Problematic frame:
-# C [libtesseract.dylib+0x1dbac] tesseract::Tesseract::recog_all_words(tesseract::PAGE_RES*, tesseract::ETEXT_DESC*, tesseract::TBOX const*, char const*, int)+0xd0
-#
-# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
-#
-# If you would like to submit a bug report, please visit:
-# http://bugreport.java.com/bugreport/crash.jsp
-# The crash happened outside the Java Virtual Machine in native code.
-# See problematic frame for where to report the bug.
-#
-
---------------- T H R E A D ---------------
-
-Current thread (0x0000000157009000): JavaThread "main" [_thread_in_native, id=5891, stack(0x000000016d298000,0x000000016d49b000)]
-
-siginfo: si_signo: 11 (SIGSEGV), si_code: 2 (SEGV_ACCERR), si_addr: 0x000000000000000c
-
-Registers:
- x0=0x0000000155a40970 x1=0x0000000000000000 x2=0x0000000000000000 x3=0x0000000000000000
- x4=0x0000000000000000 x5=0x0000000000000000 x6=0x0000000000000000 x7=0x0000000000000001
- x8=0x0000000000000000 x9=0x0000000000000000 x10=0x0000600002d16880 x11=0x0000600002d159b0
-x12=0x000000016d499750 x13=0x0000000000001800 x14=0x000000007fffffff x15=0x00000000eda04ffb
-x16=0x00000001856e6a90 x17=0x00000001e5013d20 x18=0x0000000080000000 x19=0x000000015a103102
-x20=0x000060000005eda0 x21=0x000000015a0e0000 x22=0x0000000000000000 x23=0x0000000000000000
-x24=0x0000000000000000 x25=0x0000000000000000 x26=0x000000015a101b7c x27=0x000000015a104998
-x28=0x000000015a1039fc fp=0x000000016d499840 lr=0x00000001237d9b8c sp=0x000000016d499680
-pc=0x00000001237d9bac cpsr=0x0000000080001000
-Top of Stack: (sp=0x000000016d499680)
-0x000000016d499680: 00000000007355e8 0000000000000000
-0x000000016d499690: 0000600000735560 0000600000735560
-0x000000016d4996a0: 0000600000735560 000060000005eda0
-0x000000016d4996b0: 0000000000000000 0000000000000000
-0x000000016d4996c0: 0000000000000000 0000000155a40970
-0x000000016d4996d0: 0000600002d16820 0000600002d16880
-0x000000016d4996e0: 0000000155a40d30 0000600002d159b0
-0x000000016d4996f0: 0000600002d16880 000060000005eda8
-0x000000016d499700: 0000600002d16880 0000600002d16880
-0x000000016d499710: 0000600002d16880 0000600002d16880
-0x000000016d499720: 000000016d000000 0000600002d168a8
-0x000000016d499730: 0000600002d16820 0000600002d159b0
-0x000000016d499740: 0000600002d16310 0000600002d16820
-0x000000016d499750: 0000600000010000 0000600002d159d0
-0x000000016d499760: 0000000155a40d30 0000000155a40b50
-0x000000016d499770: 0000000155a40f10 0000000155a40d30
-0x000000016d499780: 0000000000010000 0000600002d16840
-0x000000016d499790: 0000000155a3eab0 0000000155a40970
-0x000000016d4997a0: 0000000155a3eab0 0000000155a40970
-0x000000016d4997b0: 0000000000000000 0000600002d159d0
-0x000000016d4997c0: 0000000155a40f10 0000000155a40d30
-0x000000016d4997d0: 0000000155a40b50 0000000155a40d30
-0x000000016d4997e0: 0000000000000000 000000015a101cdc
-0x000000016d4997f0: 000000016d499a60 0000000000000001
-0x000000016d499800: 0000000000000000 0000000000000000
-0x000000016d499810: 0000000000000001 000000015a101cdc
-0x000000016d499820: 000000015a0e0000 000060000005eda0
-0x000000016d499830: 0000000000000000 0000600001896970
-0x000000016d499840: 000000016d4998a0 00000001237c35a0
-0x000000016d499850: 000000016d499870 00000001041df101
-0x000000016d499860: 0000000000000004 0000000115b36f00
-0x000000016d499870: 0000000000000001 000000016d499ac0
-
-Instructions: (pc=0x00000001237d9bac)
-0x00000001237d9aac: c8 00 f8 36 e0 07 40 f9 4c 3e 05 94 03 00 00 14
-0x00000001237d9abc: 01 00 00 14 f4 03 00 aa 68 5e c0 39 68 00 f8 36
-0x00000001237d9acc: 60 02 40 f9 45 3e 05 94 e0 03 14 aa 50 3d 05 94
-0x00000001237d9adc: ff 43 07 d1 fc 6f 17 a9 fa 67 18 a9 f8 5f 19 a9
-0x00000001237d9aec: f6 57 1a a9 f4 4f 1b a9 fd 7b 1c a9 fd 03 07 91
-0x00000001237d9afc: f7 03 05 aa e4 07 00 f9 f6 03 03 aa f3 03 02 aa
-0x00000001237d9b0c: f4 03 01 aa f5 03 00 aa ff 57 00 f9 ff 6f 00 f9
-0x00000001237d9b1c: 08 90 40 91 1b 61 26 91 08 8c 40 91 1c f1 27 91
-0x00000001237d9b2c: 08 8c 40 91 18 09 04 91 ff 87 00 f9 ff 9f 00 f9
-0x00000001237d9b3c: 08 84 40 91 ff 3f 00 f9 e1 17 00 f9 1a f1 2d 91
-0x00000001237d9b4c: e0 a3 00 91 01 00 80 52 40 73 01 94 48 3b 66 39
-0x00000001237d9b5c: 88 00 00 34 28 00 80 52 48 bb 26 39 08 e3 0a 39
-0x00000001237d9b6c: ff 06 00 71 68 0f 00 54 f7 07 00 b9 f7 03 13 aa
-0x00000001237d9b7c: f3 03 18 aa e0 a3 00 91 01 00 80 52 33 73 01 94
-0x00000001237d9b8c: a8 c2 54 b9 f8 03 16 aa 1f 05 00 71 8b 00 00 54
-0x00000001237d9b9c: e0 03 15 aa bc cc 01 94 06 00 00 14 a8 e2 44 f9
-0x00000001237d9bac: 08 31 40 39 68 00 00 34 e0 03 15 aa d6 cc 01 94
-0x00000001237d9bbc: e8 03 1b aa 79 5b 40 a9 3f 03 16 eb a0 01 00 54
-0x00000001237d9bcc: 20 03 40 f9 08 c0 54 b9 1f 05 00 71 6b 00 00 54
-0x00000001237d9bdc: ad cc 01 94 05 00 00 14 08 e0 44 f9 08 31 40 39
-0x00000001237d9bec: 48 00 00 34 c8 cc 01 94 39 23 00 91 f3 ff ff 17
-0x00000001237d9bfc: ff 7f 01 a9 ff 13 00 f9 e5 43 00 91 e0 03 15 aa
-0x00000001237d9c0c: 21 00 80 52 f6 03 18 aa e2 03 18 aa e3 07 40 f9
-0x00000001237d9c1c: e4 03 14 aa 80 fc ff 97 f8 03 13 aa f3 03 17 aa
-0x00000001237d9c2c: f7 07 40 b9 88 03 40 b9 88 00 00 34 e1 43 00 91
-0x00000001237d9c3c: e0 03 15 aa bc f0 00 94 e9 23 41 a9 08 01 09 cb
-0x00000001237d9c4c: 08 fd 44 d3 a9 99 99 52 89 99 b9 72 08 7d 09 1b
-0x00000001237d9c5c: 88 77 0f b9 9f 7b 0f b9 a8 92 40 91 08 81 25 91
-0x00000001237d9c6c: 1f 41 00 f8 1f 19 00 79 75 0f 00 f9 e3 a3 00 91
-0x00000001237d9c7c: e4 43 00 91 e0 03 15 aa 21 00 80 52 e2 03 13 aa
-0x00000001237d9c8c: 10 fd ff 97 60 05 00 34 e0 a3 00 91 01 00 80 52
-0x00000001237d9c9c: ee 72 01 94 99 e2 00 91 e8 27 40 f9 28 05 00 b4
-
-
-Register to memory mapping:
-
- x0=0x0000000155a40970 is an unknown value
- x1=0x0000000000000000 is an unknown value
- x2=0x0000000000000000 is an unknown value
- x3=0x0000000000000000 is an unknown value
- x4=0x0000000000000000 is an unknown value
- x5=0x0000000000000000 is an unknown value
- x6=0x0000000000000000 is an unknown value
- x7=0x0000000000000001 is an unknown value
- x8=0x0000000000000000 is an unknown value
- x9=0x0000000000000000 is an unknown value
-x10=0x0000600002d16880 is an unknown value
-x11=0x0000600002d159b0 is an unknown value
-x12=0x000000016d499750 is pointing into the stack for thread: 0x0000000157009000
-x13=0x0000000000001800 is an unknown value
-x14=0x000000007fffffff is an unknown value
-x15=0x00000000eda04ffb is an unknown value
-x16=0x00000001856e6a90: _platform_strcmp+0 in /usr/lib/system/libsystem_platform.dylib at 0x00000001856e6000
-x17=0x00000001e5013d20 is an unknown value
-x18=0x0000000080000000 is an unknown value
-x19=0x000000015a103102 is an unknown value
-x20=0x000060000005eda0 is an unknown value
-x21=0x000000015a0e0000 is an unknown value
-x22=0x0000000000000000 is an unknown value
-x23=0x0000000000000000 is an unknown value
-x24=0x0000000000000000 is an unknown value
-x25=0x0000000000000000 is an unknown value
-x26=0x000000015a101b7c is an unknown value
-x27=0x000000015a104998 is an unknown value
-x28=0x000000015a1039fc is an unknown value
-
-
-Stack: [0x000000016d298000,0x000000016d49b000], sp=0x000000016d499680, free space=2053k
-Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
-C [libtesseract.dylib+0x1dbac] tesseract::Tesseract::recog_all_words(tesseract::PAGE_RES*, tesseract::ETEXT_DESC*, tesseract::TBOX const*, char const*, int)+0xd0
-C [libtesseract.dylib+0x75a0] tesseract::TessBaseAPI::Recognize(tesseract::ETEXT_DESC*)+0x300
-C [libtesseract.dylib+0x63e8] tesseract::TessBaseAPI::GetUTF8Text()+0x3c
-C [jna145523982592959312.tmp+0x10044] ffi_prep_closure_loc+0x198c
-C [jna145523982592959312.tmp+0xe668] ffi_call+0x500
-C [jna145523982592959312.tmp+0x6760] Java_com_sun_jna_Native_invokePointer+0x8f8
-C [jna145523982592959312.tmp+0x5e94] Java_com_sun_jna_Native_invokePointer+0x2c
-j com.sun.jna.Native.invokePointer(Lcom/sun/jna/Function;JI[Ljava/lang/Object;)J+0
-j com.sun.jna.Function.invokePointer(I[Ljava/lang/Object;)Lcom/sun/jna/Pointer;+7
-j com.sun.jna.Function.invoke([Ljava/lang/Object;Ljava/lang/Class;ZI)Ljava/lang/Object;+385
-j com.sun.jna.Function.invoke(Ljava/lang/reflect/Method;[Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Object;Ljava/util/Map;)Ljava/lang/Object;+271
-j com.sun.jna.Library$Handler.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+390
-j com.sun.proxy.$Proxy57.TessBaseAPIGetUTF8Text(Lnet/sourceforge/tess4j/ITessAPI$TessBaseAPI;)Lcom/sun/jna/Pointer;+16
-j net.sourceforge.tess4j.Tesseract.getOCRText(Ljava/lang/String;I)Ljava/lang/String;+269
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljavax/imageio/IIOImage;Ljava/lang/String;Ljava/awt/Rectangle;I)Ljava/lang/String;+18
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljava/io/File;Ljava/awt/Rectangle;)Ljava/lang/String;+126
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljava/io/File;)Ljava/lang/String;+3
-j com.bonus.core.MySpringBootApplication.tesseractOCR()Ljava/lang/String;+24
-j com.bonus.core.MySpringBootApplication.main([Ljava/lang/String;)V+18
-v ~StubRoutines::call_stub
-V [libjvm.dylib+0x28adfc] JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x764
-V [libjvm.dylib+0x2c03e4] jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*)+0x284
-V [libjvm.dylib+0x2c4034] jni_CallStaticVoidMethod+0x1b0
-C [java+0x6430] JavaMain+0xa48
-C [libsystem_pthread.dylib+0x7034] _pthread_start+0x88
-C [libsystem_pthread.dylib+0x1e3c] thread_start+0x8
-
-Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
-j com.sun.jna.Native.invokePointer(Lcom/sun/jna/Function;JI[Ljava/lang/Object;)J+0
-j com.sun.jna.Function.invokePointer(I[Ljava/lang/Object;)Lcom/sun/jna/Pointer;+7
-j com.sun.jna.Function.invoke([Ljava/lang/Object;Ljava/lang/Class;ZI)Ljava/lang/Object;+385
-j com.sun.jna.Function.invoke(Ljava/lang/reflect/Method;[Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Object;Ljava/util/Map;)Ljava/lang/Object;+271
-j com.sun.jna.Library$Handler.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+390
-j com.sun.proxy.$Proxy57.TessBaseAPIGetUTF8Text(Lnet/sourceforge/tess4j/ITessAPI$TessBaseAPI;)Lcom/sun/jna/Pointer;+16
-j net.sourceforge.tess4j.Tesseract.getOCRText(Ljava/lang/String;I)Ljava/lang/String;+269
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljavax/imageio/IIOImage;Ljava/lang/String;Ljava/awt/Rectangle;I)Ljava/lang/String;+18
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljava/io/File;Ljava/awt/Rectangle;)Ljava/lang/String;+126
-j net.sourceforge.tess4j.Tesseract.doOCR(Ljava/io/File;)Ljava/lang/String;+3
-j com.bonus.core.MySpringBootApplication.tesseractOCR()Ljava/lang/String;+24
-j com.bonus.core.MySpringBootApplication.main([Ljava/lang/String;)V+18
-v ~StubRoutines::call_stub
-
---------------- P R O C E S S ---------------
-
-Java Threads: ( => current thread )
- 0x00000001568fc000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=26887, stack(0x0000000179eb8000,0x000000017a0bb000)]
- 0x0000000157c56000 JavaThread "http-nio-8080-Acceptor" daemon [_thread_in_native, id=29187, stack(0x0000000179cac000,0x0000000179eaf000)]
- 0x0000000157d26000 JavaThread "http-nio-8080-Poller" daemon [_thread_in_native, id=29443, stack(0x0000000179aa0000,0x0000000179ca3000)]
- 0x0000000156933000 JavaThread "http-nio-8080-exec-10" daemon [_thread_blocked, id=26115, stack(0x0000000179894000,0x0000000179a97000)]
- 0x0000000157c55000 JavaThread "http-nio-8080-exec-9" daemon [_thread_blocked, id=25603, stack(0x0000000179688000,0x000000017988b000)]
- 0x0000000156932800 JavaThread "http-nio-8080-exec-8" daemon [_thread_blocked, id=29699, stack(0x000000017947c000,0x000000017967f000)]
- 0x0000000156c15000 JavaThread "http-nio-8080-exec-7" daemon [_thread_blocked, id=29955, stack(0x0000000179270000,0x0000000179473000)]
- 0x0000000156bd1000 JavaThread "http-nio-8080-exec-6" daemon [_thread_blocked, id=30211, stack(0x0000000179064000,0x0000000179267000)]
- 0x0000000156bbe000 JavaThread "http-nio-8080-exec-5" daemon [_thread_blocked, id=24579, stack(0x0000000178e58000,0x000000017905b000)]
- 0x0000000157c54800 JavaThread "http-nio-8080-exec-4" daemon [_thread_blocked, id=24067, stack(0x0000000178c4c000,0x0000000178e4f000)]
- 0x0000000157c53800 JavaThread "http-nio-8080-exec-3" daemon [_thread_blocked, id=23811, stack(0x0000000178a40000,0x0000000178c43000)]
- 0x0000000157c53000 JavaThread "http-nio-8080-exec-2" daemon [_thread_blocked, id=31235, stack(0x0000000178834000,0x0000000178a37000)]
- 0x0000000157c52000 JavaThread "http-nio-8080-exec-1" daemon [_thread_blocked, id=23555, stack(0x0000000178628000,0x000000017882b000)]
- 0x00000001552c9800 JavaThread "container-0" [_thread_blocked, id=23299, stack(0x000000017841c000,0x000000017861f000)]
- 0x0000000156490800 JavaThread "Catalina-utility-2" [_thread_blocked, id=32003, stack(0x0000000178210000,0x0000000178413000)]
- 0x0000000154a6a800 JavaThread "Catalina-utility-1" [_thread_blocked, id=22795, stack(0x0000000178004000,0x0000000178207000)]
- 0x0000000155059000 JavaThread "Service Thread" daemon [_thread_blocked, id=32515, stack(0x000000016fa94000,0x000000016fc97000)]
- 0x000000015780b800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=18435, stack(0x000000016f888000,0x000000016fa8b000)]
- 0x000000015780a800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=18947, stack(0x000000016f67c000,0x000000016f87f000)]
- 0x0000000156a67800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19459, stack(0x000000016f470000,0x000000016f673000)]
- 0x0000000156a66800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19715, stack(0x000000016f264000,0x000000016f467000)]
- 0x0000000156a5a000 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=17667, stack(0x000000016f058000,0x000000016f25b000)]
- 0x000000015500a800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=20227, stack(0x000000016ee4c000,0x000000016f04f000)]
- 0x0000000156862000 JavaThread "Finalizer" daemon [_thread_blocked, id=13571, stack(0x000000016eb28000,0x000000016ed2b000)]
- 0x0000000154815000 JavaThread "Reference Handler" daemon [_thread_blocked, id=12547, stack(0x000000016e91c000,0x000000016eb1f000)]
-=>0x0000000157009000 JavaThread "main" [_thread_in_native, id=5891, stack(0x000000016d298000,0x000000016d49b000)]
-
-Other Threads:
- 0x0000000156859800 VMThread [stack: 0x000000016e710000,0x000000016e913000] [id=14083]
- 0x0000000157834800 WatcherThread [stack: 0x000000016fca0000,0x000000016fea3000] [id=22275]
-
-VM state:not at safepoint (normal execution)
-
-VM Mutex/Monitor currently owned by a thread: None
-
-heap address: 0x00000006c0000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
-Narrow klass base: 0x0000000800000000, Narrow klass shift: 0
-Compressed class space size: 1073741824 Address: 0x0000000800000000
-
-Heap:
- PSYoungGen total 141824K, used 12916K [0x000000076ab00000, 0x0000000777500000, 0x00000007c0000000)
- eden space 131072K, 9% used [0x000000076ab00000,0x000000076b79d180,0x0000000772b00000)
- from space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- to space 10752K, 0% used [0x0000000776a80000,0x0000000776a80000,0x0000000777500000)
- ParOldGen total 191488K, used 20904K [0x00000006c0000000, 0x00000006cbb00000, 0x000000076ab00000)
- object space 191488K, 10% used [0x00000006c0000000,0x00000006c146a210,0x00000006cbb00000)
- Metaspace used 33675K, capacity 35716K, committed 35888K, reserved 1081344K
- class space used 4256K, capacity 4632K, committed 4736K, reserved 1048576K
-
-Card table byte_map: [0x000000010310c000,0x0000000103910000] byte_map_base: 0x00000000ffb0c000
-
-Marking Bits: (ParMarkBitMap*) 0x0000000104483d40
- Begin Bits: [0x000000010d03c000, 0x000000011103c000)
- End Bits: [0x000000011103c000, 0x000000011503c000)
-
-Polling page: 0x0000000102c20000
-
-CodeCache: size=131072Kb used=9653Kb max_used=9830Kb free=121418Kb
- bounds [0x0000000104ae4000, 0x0000000105494000, 0x000000010cae4000]
- total_blobs=3213 nmethods=2767 adapters=361
- compilation: enabled
-
-Compilation events (10 events):
-Event: 1.292 Thread 0x0000000156a66800 nmethod 3078 0x00000001052d8c90 code [0x00000001052d8e00, 0x00000001052d9310]
-Event: 1.292 Thread 0x000000015780b800 nmethod 3081 0x000000010530a8d0 code [0x000000010530ac40, 0x000000010530c1a0]
-Event: 1.292 Thread 0x000000015780b800 3082 3 sun.awt.image.ByteInterleavedRaster::setDataElements (18 bytes)
-Event: 1.292 Thread 0x000000015780b800 nmethod 3082 0x0000000104c9cd10 code [0x0000000104c9ce80, 0x0000000104c9d0a8]
-Event: 1.292 Thread 0x000000015780b800 3083 3 javax.imageio.ImageReader::processImageUpdate (73 bytes)
-Event: 1.292 Thread 0x000000015780b800 nmethod 3083 0x000000010522ba90 code [0x000000010522bc40, 0x000000010522c1a0]
-Event: 1.298 Thread 0x000000015780a800 3084 4 com.sun.imageio.plugins.jpeg.JPEGBuffer::scanForFF (162 bytes)
-Event: 1.300 Thread 0x0000000156a67800 3085 4 sun.awt.image.ByteInterleavedRaster::getByteData (851 bytes)
-Event: 1.302 Thread 0x000000015780a800 nmethod 3084 0x0000000104da2150 code [0x0000000104da22c0, 0x0000000104da28e8]
-Event: 1.309 Thread 0x0000000156a67800 nmethod 3085 0x0000000104df3c10 code [0x0000000104df3dc0, 0x0000000104df5050]
-
-GC Heap History (10 events):
-Event: 0.342 GC heap before
-{Heap before GC invocations=1 (full 0):
- PSYoungGen total 76288K, used 65536K [0x000000076ab00000, 0x0000000770000000, 0x00000007c0000000)
- eden space 65536K, 100% used [0x000000076ab00000,0x000000076eb00000,0x000000076eb00000)
- from space 10752K, 0% used [0x000000076f580000,0x000000076f580000,0x0000000770000000)
- to space 10752K, 0% used [0x000000076eb00000,0x000000076eb00000,0x000000076f580000)
- ParOldGen total 175104K, used 0K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0000000,0x00000006cab00000)
- Metaspace used 14791K, capacity 15468K, committed 15616K, reserved 1062912K
- class space used 1830K, capacity 1998K, committed 2048K, reserved 1048576K
-Event: 0.346 GC heap after
-Heap after GC invocations=1 (full 0):
- PSYoungGen total 76288K, used 9346K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 0% used [0x000000076ab00000,0x000000076ab00000,0x000000076eb00000)
- from space 10752K, 86% used [0x000000076eb00000,0x000000076f4208b0,0x000000076f580000)
- to space 10752K, 0% used [0x0000000773580000,0x0000000773580000,0x0000000774000000)
- ParOldGen total 175104K, used 16K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0004000,0x00000006cab00000)
- Metaspace used 14791K, capacity 15468K, committed 15616K, reserved 1062912K
- class space used 1830K, capacity 1998K, committed 2048K, reserved 1048576K
-}
-Event: 0.463 GC heap before
-{Heap before GC invocations=2 (full 0):
- PSYoungGen total 76288K, used 57474K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 73% used [0x000000076ab00000,0x000000076da00140,0x000000076eb00000)
- from space 10752K, 86% used [0x000000076eb00000,0x000000076f4208b0,0x000000076f580000)
- to space 10752K, 0% used [0x0000000773580000,0x0000000773580000,0x0000000774000000)
- ParOldGen total 175104K, used 16K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0004000,0x00000006cab00000)
- Metaspace used 20346K, capacity 21228K, committed 21296K, reserved 1069056K
- class space used 2568K, capacity 2784K, committed 2816K, reserved 1048576K
-Event: 0.468 GC heap after
-Heap after GC invocations=2 (full 0):
- PSYoungGen total 141824K, used 10025K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 93% used [0x0000000773580000,0x0000000773f4a4a0,0x0000000774000000)
- to space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- ParOldGen total 175104K, used 24K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0006000,0x00000006cab00000)
- Metaspace used 20346K, capacity 21228K, committed 21296K, reserved 1069056K
- class space used 2568K, capacity 2784K, committed 2816K, reserved 1048576K
-}
-Event: 0.468 GC heap before
-{Heap before GC invocations=3 (full 1):
- PSYoungGen total 141824K, used 10025K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 93% used [0x0000000773580000,0x0000000773f4a4a0,0x0000000774000000)
- to space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- ParOldGen total 175104K, used 24K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0006000,0x00000006cab00000)
- Metaspace used 20346K, capacity 21228K, committed 21296K, reserved 1069056K
- class space used 2568K, capacity 2784K, committed 2816K, reserved 1048576K
-Event: 0.479 GC heap after
-Heap after GC invocations=3 (full 1):
- PSYoungGen total 141824K, used 0K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 0% used [0x0000000773580000,0x0000000773580000,0x0000000774000000)
- to space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- ParOldGen total 110080K, used 9584K [0x00000006c0000000, 0x00000006c6b80000, 0x000000076ab00000)
- object space 110080K, 8% used [0x00000006c0000000,0x00000006c095c1b8,0x00000006c6b80000)
- Metaspace used 20346K, capacity 21228K, committed 21296K, reserved 1069056K
- class space used 2568K, capacity 2784K, committed 2816K, reserved 1048576K
-}
-Event: 1.252 GC heap before
-{Heap before GC invocations=4 (full 1):
- PSYoungGen total 141824K, used 128991K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 131072K, 98% used [0x000000076ab00000,0x00000007728f7c30,0x0000000772b00000)
- from space 10752K, 0% used [0x0000000773580000,0x0000000773580000,0x0000000774000000)
- to space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- ParOldGen total 110080K, used 9584K [0x00000006c0000000, 0x00000006c6b80000, 0x000000076ab00000)
- object space 110080K, 8% used [0x00000006c0000000,0x00000006c095c1b8,0x00000006c6b80000)
- Metaspace used 33447K, capacity 35428K, committed 35504K, reserved 1081344K
- class space used 4235K, capacity 4600K, committed 4608K, reserved 1048576K
-Event: 1.259 GC heap after
-Heap after GC invocations=4 (full 1):
- PSYoungGen total 141824K, used 10741K [0x000000076ab00000, 0x0000000777500000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 99% used [0x0000000772b00000,0x000000077357d770,0x0000000773580000)
- to space 10752K, 0% used [0x0000000776a80000,0x0000000776a80000,0x0000000777500000)
- ParOldGen total 110080K, used 19331K [0x00000006c0000000, 0x00000006c6b80000, 0x000000076ab00000)
- object space 110080K, 17% used [0x00000006c0000000,0x00000006c12e0ec0,0x00000006c6b80000)
- Metaspace used 33447K, capacity 35428K, committed 35504K, reserved 1081344K
- class space used 4235K, capacity 4600K, committed 4608K, reserved 1048576K
-}
-Event: 1.259 GC heap before
-{Heap before GC invocations=5 (full 2):
- PSYoungGen total 141824K, used 10741K [0x000000076ab00000, 0x0000000777500000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 99% used [0x0000000772b00000,0x000000077357d770,0x0000000773580000)
- to space 10752K, 0% used [0x0000000776a80000,0x0000000776a80000,0x0000000777500000)
- ParOldGen total 110080K, used 19331K [0x00000006c0000000, 0x00000006c6b80000, 0x000000076ab00000)
- object space 110080K, 17% used [0x00000006c0000000,0x00000006c12e0ec0,0x00000006c6b80000)
- Metaspace used 33447K, capacity 35428K, committed 35504K, reserved 1081344K
- class space used 4235K, capacity 4600K, committed 4608K, reserved 1048576K
-Event: 1.281 GC heap after
-Heap after GC invocations=5 (full 2):
- PSYoungGen total 141824K, used 0K [0x000000076ab00000, 0x0000000777500000, 0x00000007c0000000)
- eden space 131072K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000772b00000)
- from space 10752K, 0% used [0x0000000772b00000,0x0000000772b00000,0x0000000773580000)
- to space 10752K, 0% used [0x0000000776a80000,0x0000000776a80000,0x0000000777500000)
- ParOldGen total 191488K, used 20904K [0x00000006c0000000, 0x00000006cbb00000, 0x000000076ab00000)
- object space 191488K, 10% used [0x00000006c0000000,0x00000006c146a210,0x00000006cbb00000)
- Metaspace used 33447K, capacity 35428K, committed 35504K, reserved 1081344K
- class space used 4235K, capacity 4600K, committed 4608K, reserved 1048576K
-}
-
-Deoptimization events (10 events):
-Event: 0.859 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000001052f4c30 method=java.lang.reflect.Method.equals(Ljava/lang/Object;)Z @ 1
-Event: 0.865 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000105177780 method=org.springframework.util.ConcurrentReferenceHashMap$Segment.findInChain(Lorg/springframework/util/ConcurrentReferenceHashMap$Reference;Ljava/lang/Object;I)Lorg/springframewo
-Event: 0.872 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000010528ead0 method=org.springframework.beans.factory.support.AbstractBeanFactory.isTypeMatch(Ljava/lang/String;Lorg/springframework/core/ResolvableType;Z)Z @ 559
-Event: 0.873 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000001052fad88 method=java.lang.Class$MethodArray.matchesNameAndDescriptor(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)Z @ 33
-Event: 0.876 Thread 0x0000000157009000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000104ed9188 method=org.springframework.boot.context.properties.source.ConfigurationPropertyName$Elements.charAt(II)C @ 43
-Event: 0.886 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000001052fb814 method=java.lang.Class$MethodArray.matchesNameAndDescriptor(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)Z @ 33
-Event: 0.948 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000104d7e9f0 method=org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(Ljava/lang/String;Z)Ljava/lang/Object; @ 39
-Event: 0.975 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000104f3e3f0 method=org.springframework.util.ConcurrentReferenceHashMap$Segment.clear()V @ 7
-Event: 1.136 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000104de83f8 method=java.lang.String.lastIndexOf([CII[CIII)I @ 118
-Event: 1.311 Thread 0x0000000157009000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000104ecb75c method=java.lang.ref.ReferenceQueue.poll()Ljava/lang/ref/Reference; @ 4
-
-Classes redefined (0 events):
-No events
-
-Internal exceptions (10 events):
-Event: 0.859 Thread 0x0000000157009000 Implicit null exception at 0x00000001052f4a64 to 0x00000001052f4c20
-Event: 0.921 Thread 0x0000000157009000 Exception (0x00000007711371b8) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans
-Event: 0.935 Thread 0x0000000157009000 Exception (0x00000007713bd7b8) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/int
-Event: 0.984 Thread 0x0000000157009000 Exception (0x0000000771e970f8) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/prims/jni.cpp, line 710]
-Event: 0.984 Thread 0x0000000157009000 Exception (0x0000000771e97c00) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/prims/jni.cpp, line 710]
-Event: 1.137 Thread 0x0000000157009000 Exception current thread )
- 0x00000001547c8000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=26887, stack(0x000000028841c000,0x000000028861f000)]
- 0x0000000153740800 JavaThread "http-nio-8080-Acceptor" daemon [_thread_in_native, id=28931, stack(0x0000000288210000,0x0000000288413000)]
- 0x000000015373f800 JavaThread "http-nio-8080-Poller" daemon [_thread_in_native, id=29187, stack(0x0000000288004000,0x0000000288207000)]
- 0x0000000154e92800 JavaThread "http-nio-8080-exec-10" daemon [_thread_blocked, id=25859, stack(0x000000016fd2c000,0x000000016ff2f000)]
- 0x000000011d078800 JavaThread "http-nio-8080-exec-9" daemon [_thread_blocked, id=25603, stack(0x000000016fb20000,0x000000016fd23000)]
- 0x0000000153735800 JavaThread "http-nio-8080-exec-8" daemon [_thread_blocked, id=25091, stack(0x000000016f914000,0x000000016fb17000)]
- 0x0000000153735000 JavaThread "http-nio-8080-exec-7" daemon [_thread_blocked, id=29955, stack(0x000000016f708000,0x000000016f90b000)]
- 0x00000001532fc800 JavaThread "http-nio-8080-exec-6" daemon [_thread_blocked, id=30211, stack(0x000000016f4fc000,0x000000016f6ff000)]
- 0x00000001532fb800 JavaThread "http-nio-8080-exec-5" daemon [_thread_blocked, id=24323, stack(0x000000016f2f0000,0x000000016f4f3000)]
- 0x0000000153848800 JavaThread "http-nio-8080-exec-4" daemon [_thread_blocked, id=30467, stack(0x000000016f0e4000,0x000000016f2e7000)]
- 0x0000000153829000 JavaThread "http-nio-8080-exec-3" daemon [_thread_blocked, id=23555, stack(0x000000016eed8000,0x000000016f0db000)]
- 0x0000000153828000 JavaThread "http-nio-8080-exec-2" daemon [_thread_blocked, id=23299, stack(0x000000016eccc000,0x000000016eecf000)]
- 0x00000001538ee000 JavaThread "http-nio-8080-exec-1" daemon [_thread_blocked, id=31235, stack(0x000000016eac0000,0x000000016ecc3000)]
- 0x000000015421b800 JavaThread "container-0" [_thread_blocked, id=31491, stack(0x000000016e8b4000,0x000000016eab7000)]
- 0x00000001541d7000 JavaThread "Catalina-utility-2" [_thread_blocked, id=32003, stack(0x000000016e6a8000,0x000000016e8ab000)]
- 0x00000001532ff800 JavaThread "Catalina-utility-1" [_thread_blocked, id=22795, stack(0x000000016e49c000,0x000000016e69f000)]
- 0x000000015308c800 JavaThread "Service Thread" daemon [_thread_blocked, id=22019, stack(0x000000016e084000,0x000000016e287000)]
- 0x000000015307c000 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=18947, stack(0x000000016de78000,0x000000016e07b000)]
- 0x000000015307b000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=19203, stack(0x000000016dc6c000,0x000000016de6f000)]
- 0x000000015307a000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=18435, stack(0x000000016da60000,0x000000016dc63000)]
- 0x0000000153079000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=18179, stack(0x000000016d854000,0x000000016da57000)]
- 0x0000000152012000 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=17923, stack(0x000000016d648000,0x000000016d84b000)]
- 0x0000000155033000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=20483, stack(0x000000016d43c000,0x000000016d63f000)]
- 0x000000015401b800 JavaThread "Finalizer" daemon [_thread_blocked, id=13827, stack(0x000000016d118000,0x000000016d31b000)]
- 0x000000015502d800 JavaThread "Reference Handler" daemon [_thread_blocked, id=14595, stack(0x000000016cf0c000,0x000000016d10f000)]
-=>0x000000015300a000 JavaThread "main" [_thread_in_native, id=5123, stack(0x000000016b888000,0x000000016ba8b000)]
-
-Other Threads:
- 0x0000000153016800 VMThread [stack: 0x000000016cd00000,0x000000016cf03000] [id=13059]
- 0x00000001530c7800 WatcherThread [stack: 0x000000016e290000,0x000000016e493000] [id=22531]
-
-VM state:not at safepoint (normal execution)
-
-VM Mutex/Monitor currently owned by a thread: None
-
-heap address: 0x00000006c0000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
-Narrow klass base: 0x0000000800000000, Narrow klass shift: 0
-Compressed class space size: 1073741824 Address: 0x0000000800000000
-
-Heap:
- PSYoungGen total 103424K, used 13516K [0x000000076ab00000, 0x0000000771e00000, 0x00000007c0000000)
- eden space 93184K, 14% used [0x000000076ab00000,0x000000076b833140,0x0000000770600000)
- from space 10240K, 0% used [0x0000000771400000,0x0000000771400000,0x0000000771e00000)
- to space 10752K, 0% used [0x0000000770900000,0x0000000770900000,0x0000000771380000)
- ParOldGen total 164864K, used 13536K [0x00000006c0000000, 0x00000006ca100000, 0x000000076ab00000)
- object space 164864K, 8% used [0x00000006c0000000,0x00000006c0d38000,0x00000006ca100000)
- Metaspace used 33691K, capacity 35780K, committed 36144K, reserved 1081344K
- class space used 4252K, capacity 4632K, committed 4736K, reserved 1048576K
-
-Card table byte_map: [0x0000000104b1c000,0x0000000105320000] byte_map_base: 0x000000010151c000
-
-Marking Bits: (ParMarkBitMap*) 0x0000000105e93d40
- Begin Bits: [0x000000010ea4c000, 0x0000000112a4c000)
- End Bits: [0x0000000112a4c000, 0x0000000116a4c000)
-
-Polling page: 0x0000000104630000
-
-CodeCache: size=131072Kb used=9915Kb max_used=9930Kb free=121156Kb
- bounds [0x00000001064f4000, 0x0000000106eb4000, 0x000000010e4f4000]
- total_blobs=3227 nmethods=2781 adapters=361
- compilation: enabled
-
-Compilation events (10 events):
-Event: 2.294 Thread 0x000000015307c000 3076 3 com.sun.imageio.plugins.jpeg.JPEGImageReader$CallBackLock::access$100 (5 bytes)
-Event: 2.294 Thread 0x000000015307c000 nmethod 3076 0x0000000106e4d650 code [0x0000000106e4d7c0, 0x0000000106e4d910]
-Event: 2.294 Thread 0x000000015307c000 3077 3 com.sun.imageio.plugins.jpeg.JPEGImageReader$CallBackLock::unlock (8 bytes)
-Event: 2.294 Thread 0x000000015307c000 nmethod 3077 0x0000000106ea4dd0 code [0x0000000106ea4f40, 0x0000000106ea5050]
-Event: 2.296 Thread 0x000000015307a000 3078 4 com.sun.imageio.plugins.jpeg.JPEGBuffer::scanForFF (162 bytes)
-Event: 2.297 Thread 0x000000015307b000 3079 4 sun.awt.image.ByteInterleavedRaster::getByteData (851 bytes)
-Event: 2.300 Thread 0x000000015307a000 nmethod 3078 0x0000000106eabd50 code [0x0000000106eabec0, 0x0000000106eac4e8]
-Event: 2.307 Thread 0x000000015307b000 nmethod 3079 0x0000000106ea8a10 code [0x0000000106ea8bc0, 0x0000000106ea9e50]
-Event: 2.309 Thread 0x0000000153079000 3080 4 java.lang.ref.Reference:: (25 bytes)
-Event: 2.310 Thread 0x0000000153079000 nmethod 3080 0x0000000106ead990 code [0x0000000106eadb00, 0x0000000106eadbd0]
-
-GC Heap History (10 events):
-Event: 0.721 GC heap before
-{Heap before GC invocations=2 (full 0):
- PSYoungGen total 76288K, used 58366K [0x000000076ab00000, 0x0000000770000000, 0x00000007c0000000)
- eden space 65536K, 74% used [0x000000076ab00000,0x000000076dada3f8,0x000000076eb00000)
- from space 10752K, 87% used [0x000000076eb00000,0x000000076f425680,0x000000076f580000)
- to space 10752K, 0% used [0x000000076f580000,0x000000076f580000,0x0000000770000000)
- ParOldGen total 175104K, used 30K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0007ad8,0x00000006cab00000)
- Metaspace used 20350K, capacity 21232K, committed 21296K, reserved 1069056K
- class space used 2565K, capacity 2784K, committed 2816K, reserved 1048576K
-Event: 0.725 GC heap after
-Heap after GC invocations=2 (full 0):
- PSYoungGen total 76288K, used 10068K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 0% used [0x000000076ab00000,0x000000076ab00000,0x000000076eb00000)
- from space 10752K, 93% used [0x000000076f580000,0x000000076ff55090,0x0000000770000000)
- to space 10752K, 0% used [0x000000076eb00000,0x000000076eb00000,0x000000076f580000)
- ParOldGen total 175104K, used 38K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0009ad8,0x00000006cab00000)
- Metaspace used 20350K, capacity 21232K, committed 21296K, reserved 1069056K
- class space used 2565K, capacity 2784K, committed 2816K, reserved 1048576K
-}
-Event: 0.725 GC heap before
-{Heap before GC invocations=3 (full 1):
- PSYoungGen total 76288K, used 10068K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 0% used [0x000000076ab00000,0x000000076ab00000,0x000000076eb00000)
- from space 10752K, 93% used [0x000000076f580000,0x000000076ff55090,0x0000000770000000)
- to space 10752K, 0% used [0x000000076eb00000,0x000000076eb00000,0x000000076f580000)
- ParOldGen total 175104K, used 38K [0x00000006c0000000, 0x00000006cab00000, 0x000000076ab00000)
- object space 175104K, 0% used [0x00000006c0000000,0x00000006c0009ad8,0x00000006cab00000)
- Metaspace used 20350K, capacity 21232K, committed 21296K, reserved 1069056K
- class space used 2565K, capacity 2784K, committed 2816K, reserved 1048576K
-Event: 0.737 GC heap after
-Heap after GC invocations=3 (full 1):
- PSYoungGen total 76288K, used 0K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 0% used [0x000000076ab00000,0x000000076ab00000,0x000000076eb00000)
- from space 10752K, 0% used [0x000000076f580000,0x000000076f580000,0x0000000770000000)
- to space 10752K, 0% used [0x000000076eb00000,0x000000076eb00000,0x000000076f580000)
- ParOldGen total 106496K, used 9564K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 8% used [0x00000006c0000000,0x00000006c0957330,0x00000006c6800000)
- Metaspace used 20350K, capacity 21232K, committed 21296K, reserved 1069056K
- class space used 2565K, capacity 2784K, committed 2816K, reserved 1048576K
-}
-Event: 1.032 GC heap before
-{Heap before GC invocations=4 (full 1):
- PSYoungGen total 76288K, used 65536K [0x000000076ab00000, 0x0000000774000000, 0x00000007c0000000)
- eden space 65536K, 100% used [0x000000076ab00000,0x000000076eb00000,0x000000076eb00000)
- from space 10752K, 0% used [0x000000076f580000,0x000000076f580000,0x0000000770000000)
- to space 10752K, 0% used [0x000000076eb00000,0x000000076eb00000,0x000000076f580000)
- ParOldGen total 106496K, used 9613K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 9% used [0x00000006c0000000,0x00000006c09637f8,0x00000006c6800000)
- Metaspace used 26885K, capacity 28434K, committed 28544K, reserved 1075200K
- class space used 3417K, capacity 3701K, committed 3712K, reserved 1048576K
-Event: 1.035 GC heap after
-Heap after GC invocations=4 (full 1):
- PSYoungGen total 76288K, used 8765K [0x000000076ab00000, 0x0000000771e80000, 0x00000007c0000000)
- eden space 65536K, 0% used [0x000000076ab00000,0x000000076ab00000,0x000000076eb00000)
- from space 10752K, 81% used [0x000000076eb00000,0x000000076f38f4a8,0x000000076f580000)
- to space 10752K, 0% used [0x0000000771400000,0x0000000771400000,0x0000000771e80000)
- ParOldGen total 106496K, used 9621K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 9% used [0x00000006c0000000,0x00000006c09657f8,0x00000006c6800000)
- Metaspace used 26885K, capacity 28434K, committed 28544K, reserved 1075200K
- class space used 3417K, capacity 3701K, committed 3712K, reserved 1048576K
-}
-Event: 2.253 GC heap before
-{Heap before GC invocations=5 (full 1):
- PSYoungGen total 76288K, used 64513K [0x000000076ab00000, 0x0000000771e80000, 0x00000007c0000000)
- eden space 65536K, 85% used [0x000000076ab00000,0x000000076e171260,0x000000076eb00000)
- from space 10752K, 81% used [0x000000076eb00000,0x000000076f38f4a8,0x000000076f580000)
- to space 10752K, 0% used [0x0000000771400000,0x0000000771400000,0x0000000771e80000)
- ParOldGen total 106496K, used 9621K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 9% used [0x00000006c0000000,0x00000006c09657f8,0x00000006c6800000)
- Metaspace used 33396K, capacity 35426K, committed 35504K, reserved 1081344K
- class space used 4224K, capacity 4599K, committed 4608K, reserved 1048576K
-Event: 2.257 GC heap after
-Heap after GC invocations=5 (full 1):
- PSYoungGen total 103424K, used 10219K [0x000000076ab00000, 0x0000000771e00000, 0x00000007c0000000)
- eden space 93184K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000770600000)
- from space 10240K, 99% used [0x0000000771400000,0x0000000771dfacc8,0x0000000771e00000)
- to space 10752K, 0% used [0x0000000770900000,0x0000000770900000,0x0000000771380000)
- ParOldGen total 106496K, used 9629K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 9% used [0x00000006c0000000,0x00000006c09677f8,0x00000006c6800000)
- Metaspace used 33396K, capacity 35426K, committed 35504K, reserved 1081344K
- class space used 4224K, capacity 4599K, committed 4608K, reserved 1048576K
-}
-Event: 2.257 GC heap before
-{Heap before GC invocations=6 (full 2):
- PSYoungGen total 103424K, used 10219K [0x000000076ab00000, 0x0000000771e00000, 0x00000007c0000000)
- eden space 93184K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000770600000)
- from space 10240K, 99% used [0x0000000771400000,0x0000000771dfacc8,0x0000000771e00000)
- to space 10752K, 0% used [0x0000000770900000,0x0000000770900000,0x0000000771380000)
- ParOldGen total 106496K, used 9629K [0x00000006c0000000, 0x00000006c6800000, 0x000000076ab00000)
- object space 106496K, 9% used [0x00000006c0000000,0x00000006c09677f8,0x00000006c6800000)
- Metaspace used 33396K, capacity 35426K, committed 35504K, reserved 1081344K
- class space used 4224K, capacity 4599K, committed 4608K, reserved 1048576K
-Event: 2.279 GC heap after
-Heap after GC invocations=6 (full 2):
- PSYoungGen total 103424K, used 0K [0x000000076ab00000, 0x0000000771e00000, 0x00000007c0000000)
- eden space 93184K, 0% used [0x000000076ab00000,0x000000076ab00000,0x0000000770600000)
- from space 10240K, 0% used [0x0000000771400000,0x0000000771400000,0x0000000771e00000)
- to space 10752K, 0% used [0x0000000770900000,0x0000000770900000,0x0000000771380000)
- ParOldGen total 164864K, used 13536K [0x00000006c0000000, 0x00000006ca100000, 0x000000076ab00000)
- object space 164864K, 8% used [0x00000006c0000000,0x00000006c0d38000,0x00000006ca100000)
- Metaspace used 33396K, capacity 35426K, committed 35504K, reserved 1081344K
- class space used 4224K, capacity 4599K, committed 4608K, reserved 1048576K
-}
-
-Deoptimization events (10 events):
-Event: 1.132 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106d2c070 method=java.lang.reflect.Method.equals(Ljava/lang/Object;)Z @ 1
-Event: 1.138 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106b8f340 method=org.springframework.util.ConcurrentReferenceHashMap$Segment.findInChain(Lorg/springframework/util/ConcurrentReferenceHashMap$Reference;Ljava/lang/Object;I)Lorg/springframewo
-Event: 1.145 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106cb3a90 method=org.springframework.beans.factory.support.AbstractBeanFactory.isTypeMatch(Ljava/lang/String;Lorg/springframework/core/ResolvableType;Z)Z @ 559
-Event: 1.147 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106d2d9c8 method=java.lang.Class$MethodArray.matchesNameAndDescriptor(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)Z @ 33
-Event: 1.150 Thread 0x000000015300a000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000001068ed248 method=org.springframework.boot.context.properties.source.ConfigurationPropertyName$Elements.charAt(II)C @ 43
-Event: 1.160 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106d3f314 method=java.lang.Class$MethodArray.matchesNameAndDescriptor(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)Z @ 33
-Event: 1.216 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106cc04f0 method=org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(Ljava/lang/String;Z)Ljava/lang/Object; @ 39
-Event: 1.242 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000010695ed70 method=org.springframework.util.ConcurrentReferenceHashMap$Segment.clear()V @ 7
-Event: 2.204 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106800638 method=java.lang.String.lastIndexOf([CII[CIII)I @ 118
-Event: 2.204 Thread 0x000000015300a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000106c53984 method=java.lang.StringCoding.encode(Ljava/lang/String;[CII)[B @ 38
-
-Classes redefined (0 events):
-No events
-
-Internal exceptions (10 events):
-Event: 1.132 Thread 0x000000015300a000 Implicit null exception at 0x0000000106d2bea4 to 0x0000000106d2c060
-Event: 1.193 Thread 0x000000015300a000 Exception (0x000000076cf416c8) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans
-Event: 1.205 Thread 0x000000015300a000 Exception (0x000000076d1c97d8) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/int
-Event: 1.254 Thread 0x000000015300a000 Exception (0x000000076da13918) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/prims/jni.cpp, line 710]
-Event: 1.255 Thread 0x000000015300a000 Exception (0x000000076da14420) thrown at [/System/Volumes/Data/jenkins/workspace/8-2-build-macosx-aarch64-sans-NAS/jdk8u381/237/hotspot/src/share/vm/prims/jni.cpp, line 710]
-Event: 2.204 Thread 0x000000015300a000 Exception