Home | History | Annotate | Download | only in examples

Lines Matching refs:ih

191                 InstructionHandle ih = bi.getTarget();
192 put(ih, "Label" + label_counter++ + ":");
198 InstructionHandle ih = lv.getStart();
199 put(ih, "Label" + label_counter++ + ":");
200 ih = lv.getEnd();
201 put(ih, "Label" + label_counter++ + ":");
206 InstructionHandle ih = c.getStartPC();
208 put(ih, "Label" + label_counter++ + ":");
209 ih = c.getEndPC();
210 put(ih, "Label" + label_counter++ + ":");
211 ih = c.getHandlerPC();
212 put(ih, "Label" + label_counter++ + ":");
217 InstructionHandle ih = ln.getInstruction();
218 put(ih, ".line " + ln.getSourceLine());
231 for (InstructionHandle ih : ihs) {
232 Instruction inst = ih.getInstruction();
233 String str = map.get(ih);
263 ih = bi.getTarget();
264 str = get(ih);
287 private String get(InstructionHandle ih) {
288 String str = new StringTokenizer(map.get(ih), "\n").nextToken();
292 private void put(InstructionHandle ih, String line) {
293 String str = map.get(ih);
296 map.put(ih, line);
302 map.put(ih, str + "\n" + line); // append