Home
last modified time | relevance | path

Searched refs:jumpAdjOffsets (Results 1 – 1 of 1) sorted by relevance

/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java1123 … final int [] jumpAdjOffsets = new int [blockCount]; // room for initial 0 + (blockCount - 1) in visit() local
1124 …final int [] jumpAdjMap = new int [jumpAdjOffsets.length]; // room for initial 0 + (blockCount - … in visit()
1126 if ($assert.ENABLED) $assert.ASSERT (jumpAdjOffsets.length == jumpAdjMap.length, in visit()
1141jumpAdjOffsets [l + 1] = _blocks [l].m_first + _blocks [l].m_length; // implies the insertion goes… in visit()
1153 m_methodJumpAdjOffsets = jumpAdjOffsets; in visit()
1159 for (int a = 0; a < jumpAdjOffsets.length; ++ a) in visit()
1161 s.append (" " + jumpAdjOffsets [a] + ": +" + jumpAdjMap [a]); in visit()
1162 if (a < jumpAdjOffsets.length - 1) s.append (EOL); in visit()
1213 int adjSegment = lowbound (jumpAdjOffsets, exception.m_start_pc); in visit()
1216 adjSegment = lowbound (jumpAdjOffsets, exception.m_end_pc); in visit()
[all …]