Searched refs:newOpcode (Results 1 – 5 of 5) sorted by relevance
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | OutputFinisher.java | 460 Dop newOpcode = findOpcodeForInsn(insn, originalOpcode); in calculateReservedCount() local 462 if (newOpcode == null) { in calculateReservedCount() 473 } else if (originalOpcode == newOpcode) { in calculateReservedCount() 477 opcodes[i] = newOpcode; in calculateReservedCount()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILCFGStructurizer.cpp | 1728 int newOpcode = CFGTraits::getBreakZeroOpcode(oldOpcode); in mergeLoopbreakBlock() local 1729 CFGTraits::insertCondBranchBefore(branchInstrPos, newOpcode, passRep, DL); in mergeLoopbreakBlock() 1734 int newOpcode = CFGTraits::getBreakZeroOpcode(oldOpcode); in mergeLoopbreakBlock() local 1735 CFGTraits::insertCondBranchBefore(branchInstrPos, newOpcode, passRep, DL); in mergeLoopbreakBlock() 3006 static MachineInstr *insertInstrBefore(MachineBasicBlock *blk, int newOpcode, in insertInstrBefore() 3008 return insertInstrBefore(blk,newOpcode,passRep,DebugLoc()); in insertInstrBefore() 3011 static MachineInstr *insertInstrBefore(MachineBasicBlock *blk, int newOpcode, in insertInstrBefore() 3015 blk->getParent()->CreateMachineInstr(tii->get(newOpcode), DL); in insertInstrBefore() 3029 static void insertInstrEnd(MachineBasicBlock *blk, int newOpcode, in insertInstrEnd() 3031 insertInstrEnd(blk,newOpcode,passRep,DebugLoc()); in insertInstrEnd() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | LiteralOpUpgrader.java | 187 RegisterSpecList newSources, int newOpcode, Constant cst) { in replacePlainInsn() argument 190 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst); in replacePlainInsn()
|
D | EscapeAnalysis.java | 785 RegisterSpecList newSources, RegisterSpec newResult, int newOpcode, in insertPlainInsnBefore() argument 790 if (newOpcode == RegOps.MOVE_RESULT_PSEUDO) { in insertPlainInsnBefore() 793 newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertPlainInsnBefore() 823 RegisterSpecList newSources, RegisterSpec newResult, int newOpcode, in insertThrowingInsnBefore() argument 827 Rop newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertThrowingInsnBefore()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | EvaluationShrinker.java | 971 byte newOpcode = (byte)newOpcodes; in visitSimpleInstruction() 973 if (newOpcode == InstructionConstants.OP_NOP) in visitSimpleInstruction() 985 else if (newOpcode == oldOpcode) in visitSimpleInstruction() 995 Instruction replacementInstruction = new SimpleInstruction(newOpcode); in visitSimpleInstruction()
|