Searched refs:FieldInsnNode (Results 1 – 6 of 6) sorted by relevance
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | AtomicFUTransformer.kt | 326 val fi = (if (isStatic) insns[0] else insns[1]) as FieldInsnNode in visitEnd() 619 private fun FieldInsnNode.checkPutFieldOrPutStatic(): FieldId? { in FieldInsnNode() method 628 ld: FieldInsnNode, in fixupInvokeVirtual() 643 val getOwnerClass = FieldInsnNode( in fixupInvokeVirtual() 651 val j = FieldInsnNode( in fixupInvokeVirtual() 705 val aload = FieldInsnNode( in fixupInvokeVirtual() 823 private fun fixupLoadedAtomicVar(f: FieldInfo, ld: FieldInsnNode): AbstractInsnNode? { in fixupLoadedAtomicVar() 829 …private fun fixupLoadedArrayElement(f: FieldInfo, ld: FieldInsnNode, getter: MethodInsnNode): Abst… in fixupLoadedArrayElement() 851 …upOperationOnAtomicVar(operation: AbstractInsnNode, f: FieldInfo, ld: FieldInsnNode, arrayElementI… in fixupOperationOnAtomicVar() 893 …private fun fixupLoad(f: FieldInfo, ld: FieldInsnNode, otherLd: VarInsnNode, arrayElementInfo: Lis… in fixupLoad() [all …]
|
D | AsmUtil.kt | 61 this is FieldInsnNode && this.opcode == GETFIELD && this.owner == owner in AbstractInsnNode() 64 this is FieldInsnNode && this.opcode == GETSTATIC && this.owner == owner in AbstractInsnNode()
|
D | FlowAnalyzer.kt | 96 is FieldInsnNode -> when (i.opcode) { in executeOne()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/ |
D | DuplicateFrameEliminatorTest.java | 24 import org.objectweb.asm.tree.FieldInsnNode; 91 testInstructionBetweenFrames(new FieldInsnNode(Opcodes.GETFIELD, "Foo", in testFieldInsn()
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | LambdaDesugaring.java | 44 import org.objectweb.asm.tree.FieldInsnNode; 505 FieldInsnNode getfield = (FieldInsnNode) insn; in attemptAllocationBeforeArgumentLoads() 521 ((FieldInsnNode) insn).desc.startsWith("L"), in attemptAllocationBeforeArgumentLoads() 526 ((FieldInsnNode) insn).desc); in attemptAllocationBeforeArgumentLoads()
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | ClassInstrumentor.java | 21 import org.objectweb.asm.tree.FieldInsnNode; 404 FieldInsnNode fieldInsnNode = (FieldInsnNode) node; in rewriteMethodBody()
|