gpt4 book ai didi

org.adoptopenjdk.jitwatch.parser.zing.ZingLine.getNativeSize()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-19 09:19:31 25 4
gpt4 key购买 nike

本文整理了Java中org.adoptopenjdk.jitwatch.parser.zing.ZingLine.getNativeSize()方法的一些代码示例,展示了ZingLine.getNativeSize()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZingLine.getNativeSize()方法的具体详情如下:
包路径:org.adoptopenjdk.jitwatch.parser.zing.ZingLine
类名称:ZingLine
方法名:getNativeSize

ZingLine.getNativeSize介绍

暂无

代码示例

代码示例来源:origin: AdoptOpenJDK/jitwatch

public Tag toTagNMethod()
{
  Map<String, String> map = new HashMap<>();
  map.put(ATTR_COMPILE_ID, Integer.toString(compileId));
  map.put(ATTR_STAMP, millisToSecondsString(timestampMillisNMethodEmitted));
  map.put(ATTR_METHOD, signature);
  map.put(ATTR_COMPILER, tier == 3 ? FALCON : ZING);
  map.put(ATTR_ADDRESS, Long.toHexString(startAddress));
  map.put(ATTR_SIZE, Integer.toString(getNativeSize()));
  map.put(ATTR_BYTES, Integer.toString(getBytecodeSize()));
  map.put(ATTR_LEVEL, Integer.toString(tier));
  Tag tag = new Tag(TAG_NMETHOD, StringUtil.attributeMapToString(map, C_QUOTE), true);
  return tag;
}

代码示例来源:origin: AdoptOpenJDK/jitwatch

public Tag toTagNMethod()
{
  Map<String, String> map = new HashMap<>();
  map.put(ATTR_COMPILE_ID, Integer.toString(compileId));
  map.put(ATTR_STAMP, millisToSecondsString(timestampMillisNMethodEmitted));
  map.put(ATTR_METHOD, signature);
  map.put(ATTR_COMPILER, tier == 3 ? FALCON : ZING);
  map.put(ATTR_ADDRESS, Long.toHexString(startAddress));
  map.put(ATTR_SIZE, Integer.toString(getNativeSize()));
  map.put(ATTR_BYTES, Integer.toString(getBytecodeSize()));
  map.put(ATTR_LEVEL, Integer.toString(tier));
  Tag tag = new Tag(TAG_NMETHOD, StringUtil.attributeMapToString(map, C_QUOTE), true);
  return tag;
}

代码示例来源:origin: AdoptOpenJDK/jitwatch

public Task toTagTask()
{
  Map<String, String> map = new HashMap<>();
  map.put(ATTR_COMPILE_ID, Integer.toString(compileId));
  map.put(ATTR_STAMP, millisToSecondsString(timestampMillisCompileStart));
  map.put(ATTR_METHOD, signature);
  map.put(ATTR_LEVEL, Integer.toString(tier));
  map.put(ATTR_BYTES, Integer.toString(getBytecodeSize()));
  Task task = new Task(StringUtil.attributeMapToString(map, C_QUOTE), true);
  Map<String, String> doneAttrs = new HashMap<>();
  doneAttrs.put(ATTR_NMSIZE, Integer.toString(getNativeSize()));
  doneAttrs.put(ATTR_STAMP, millisToSecondsString(timestampMillisNMethodEmitted));
  doneAttrs.put("success", "1");
  Tag tagTaskDone = new Tag(TAG_TASK_DONE, StringUtil.attributeMapToString(doneAttrs), true);
  task.addChild(tagTaskDone);
  return task;
}

代码示例来源:origin: AdoptOpenJDK/jitwatch

public Task toTagTask()
{
  Map<String, String> map = new HashMap<>();
  map.put(ATTR_COMPILE_ID, Integer.toString(compileId));
  map.put(ATTR_STAMP, millisToSecondsString(timestampMillisCompileStart));
  map.put(ATTR_METHOD, signature);
  map.put(ATTR_LEVEL, Integer.toString(tier));
  map.put(ATTR_BYTES, Integer.toString(getBytecodeSize()));
  Task task = new Task(StringUtil.attributeMapToString(map, C_QUOTE), true);
  Map<String, String> doneAttrs = new HashMap<>();
  doneAttrs.put(ATTR_NMSIZE, Integer.toString(getNativeSize()));
  doneAttrs.put(ATTR_STAMP, millisToSecondsString(timestampMillisNMethodEmitted));
  doneAttrs.put("success", "1");
  Tag tagTaskDone = new Tag(TAG_TASK_DONE, StringUtil.attributeMapToString(doneAttrs), true);
  task.addChild(tagTaskDone);
  return task;
}

代码示例来源:origin: AdoptOpenJDK/jitwatch

@Test
public void testParseLineInstalledWithoutStashedCompile() throws Exception
{
  String lineQueued = "0.777: 1098 1 sun.misc.FloatingDecimal::appendTo (DLjava/lang/Appendable;)V (11 score) (11 bytes) 0.776559";
  ZingLogParser parser = getParser();
  parser.parseLine(lineQueued);
  String lineInstalled = "0.777: 1098 1 installed at 0x31b36240 with size 0xc4 ( sun.misc.FloatingDecimal::appendTo waited 0 ms, compile time 0 / 0 ms ) 0.776716";
  ZingLine zingLine = parser.parseLine(lineInstalled);
  assertEquals(777, zingLine.getTimestampMillisCompileStart());
  assertEquals(777, zingLine.getTimestampMillisNMethodEmitted());
  assertEquals(1098, zingLine.getCompileId());
  assertEquals(1, zingLine.getTier());
  assertEquals("sun/misc/FloatingDecimal appendTo (DLjava/lang/Appendable;)V", zingLine.getSignature());
  assertEquals(ParseUtil.parseHexAddress("0x31b36240"), zingLine.getStartAddress());
  assertEquals(ParseUtil.parseHexAddress("0x31b36240") + ParseUtil.parseHexAddress("0xc4"), zingLine.getEndAddress());
  assertEquals(ParseUtil.parseHexAddress("0xc4"), zingLine.getNativeSize());
  assertTrue(!zingLine.isStashedCompile());
  assertTrue(!zingLine.isThrowsExceptions());
}

代码示例来源:origin: AdoptOpenJDK/jitwatch

@Test
public void testParseLineInstalledWithStashedCompile() throws Exception
{
  String lineQueued = "0.426: 930 3 java.lang.String::indexOf (II)I (70 score) (71 bytes) 0.425883";
  ZingLogParser parser = getParser();
  parser.parseLine(lineQueued);
  String lineInstalled = "0.429: 930 3 installed at 0x30014450 with size 0x117 from object cache ( java.lang.String::indexOf waited 0 ms, compile time 2 / 2 ms ) 0.428904";
  ZingLine zingLine = parser.parseLine(lineInstalled);
  assertEquals(426, zingLine.getTimestampMillisCompileStart());
  assertEquals(429, zingLine.getTimestampMillisNMethodEmitted());
  assertEquals(930, zingLine.getCompileId());
  assertEquals(3, zingLine.getTier());
  assertEquals("java/lang/String indexOf (II)I", zingLine.getSignature());
  assertEquals(ParseUtil.parseHexAddress("0x30014450"), zingLine.getStartAddress());
  assertEquals(ParseUtil.parseHexAddress("0x30014450") + ParseUtil.parseHexAddress("0x117"), zingLine.getEndAddress());
  assertEquals(ParseUtil.parseHexAddress("0x117"), zingLine.getNativeSize());
  assertTrue(zingLine.isStashedCompile());
  assertEquals(70, zingLine.getScore());
  assertEquals(71, zingLine.getBytecodeSize());
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com