Searched refs:callsiteMap (Results 1 – 1 of 1) sorted by relevance
/art/test/952-invoke-custom/util-src/transformer/ |
D | IndyTransformer.java | 76 private final Map<String, CalledByIndy> callsiteMap; field in IndyTransformer.BootstrapBuilder 79 public BootstrapBuilder(int api, Map<String, CalledByIndy> callsiteMap) { in BootstrapBuilder() argument 80 this(api, null, callsiteMap); in BootstrapBuilder() 83 public BootstrapBuilder(int api, ClassVisitor cv, Map<String, CalledByIndy> callsiteMap) { in BootstrapBuilder() argument 85 this.callsiteMap = callsiteMap; in BootstrapBuilder() 97 CalledByIndy callsite = callsiteMap.get(name); in visitMethod() 172 Map<String, CalledByIndy> callsiteMap = new HashMap<>(); 187 callsiteMap.put(m.getName(), calledByIndy); 192 cr.accept(new BootstrapBuilder(Opcodes.ASM6, cw, callsiteMap), 0);
|