HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 101 - 125 of 430) sorted by null

1 2 3 45 6 7 8 91011>>

  /dalvik/vm/mterp/mips/
OP_MOVE_RESULT_WIDE.S 10 GOTO_OPCODE(t0) # jump to next instruction
OP_MOVE_WIDE.S 12 GOTO_OPCODE(t0) # jump to next instruction
OP_MOVE_WIDE_16.S 12 GOTO_OPCODE(t0) # jump to next instruction
OP_MOVE_WIDE_FROM16.S 12 GOTO_OPCODE(t0) # jump to next instruction
stub.S 8 FETCH_INST() # load next instruction from rPC
unflop.S 4 * specifies an instruction that performs "result = op a0".
5 * This could be a MIPS instruction or a function call.
31 GOTO_OPCODE(t1) # jump to next instruction
unopWide.S 4 * specifies an instruction that performs "result = op a0/a1".
5 * This could be MIPS instruction or a function call.
20 GOTO_OPCODE(t0) # jump to next instruction
unopWider.S 4 * that specifies an instruction that performs "result = op a0", where
19 GOTO_OPCODE(t0) # jump to next instruction
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequencesReplacer.java 25 import proguard.classfile.instruction.Instruction;
26 import proguard.classfile.instruction.visitor.*;
29 * This InstructionVisitor replaces multiple instruction sequences at once.
45 * instruction.
46 * @param instructionSequences the instruction sequences to be replaced,
49 * and the instruction index in the sequence.
57 Instruction[][][] instructionSequences,
72 * instruction.
73 * @param instructionSequences the instruction sequences to be replaced
    [all...]
ReachableCodeMarker.java 26 import proguard.classfile.instruction.*;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
31 * This AttributeVisitor finds all instruction offsets, branch targets, and
49 * Returns whether the instruction at the given offset is reachable in
200 * Marks the branch targets of the given jump offsets for the instruction
234 // Continue with the current instruction as long as we haven't marked it
238 // Get the current instruction.
239 Instruction instruction = InstructionFactory.create(code, offset); local
245 // instruction in a moment
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 6 # instruction. On most x86 processors the retired_instruction
7 # performance counter counts this as one instruction. However,
  /external/valgrind/main/exp-bbv/tests/x86/
fldcw_check.S 6 # instruction. On most x86 processors the retired_instruction
7 # performance counter counts this as one instruction. However,
  /external/proguard/src/proguard/classfile/util/
DynamicMemberReferenceInitializer.java 28 import proguard.classfile.instruction.*;
29 import proguard.classfile.instruction.visitor.InstructionVisitor;
109 private final Instruction[] CONSTANT_GET_FIELD_INSTRUCTIONS = new Instruction[]
117 private final Instruction[] CONSTANT_GET_METHOD_INSTRUCTIONS0 = new Instruction[]
127 private final Instruction[] CONSTANT_GET_METHOD_INSTRUCTIONS1 = new Instruction[]
141 private final Instruction[] CONSTANT_GET_METHOD_INSTRUCTIONS2 = new Instruction[]
    [all...]
  /external/proguard/src/proguard/optimize/info/
SideEffectInstructionChecker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
33 * This class can tell whether an instruction has any side effects. Return
59 public boolean hasSideEffects(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
63 instruction.accept(clazz, method, codeAttribute, offset, this);
71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
AccessMethodMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
50 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
ReadWriteFieldMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
50 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java 48 private Instruction[] instructions;
78 Instruction[] instructions,
113 List<Instruction> instructions,
118 Instruction[] instructionsArray = null;
131 instructionsArray = new Instruction[instructions.size()];
154 final ArrayList<Instruction> instructionList = new ArrayList<Instruction>();
159 public void ProcessInstruction(int codeAddress, Instruction instruction) {
160 instructionList.add(instruction);
424 Instruction instruction = instructions[i]; local
490 Instruction instruction = instructions[i]; local
530 Instruction instruction = instructions[i]; local
547 Instruction instruction = instructions[i]; local
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
WakelockDetector.java 156 AbstractInsnNode instruction = instructions.get(i); local
157 int type = instruction.getType();
159 MethodInsnNode call = (MethodInsnNode) instruction;
251 AbstractInsnNode instruction = node.instruction; local
252 if (instruction.getType() == AbstractInsnNode.JUMP_INSN) {
253 int opcode = instruction.getOpcode();
281 if (instruction.getType() == AbstractInsnNode.METHOD_INSN) {
282 MethodInsnNode method = (MethodInsnNode) instruction;
314 // if (node.instruction is a call, and the call is not caught b
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 51 for (DecodedInstruction instruction : mappedInstructions) {
52 if (instruction != null) {
53 instruction.encode(out);
109 " into a non-jumbo instruction!");
  /external/proguard/src/proguard/classfile/editor/
VariableRemapper.java 26 import proguard.classfile.instruction.*;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
123 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
133 // Replace the instruction.
134 Instruction replacementInstruction =
  /external/proguard/src/proguard/optimize/
DuplicateInitializerInvocationFixer.java 29 import proguard.classfile.instruction.*;
30 import proguard.classfile.instruction.visitor.InstructionVisitor;
98 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
110 Instruction extraInstruction =
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
SparseSwitchMethodItem.java 47 SparseSwitchDataPseudoInstruction instruction) {
48 super(codeItem, codeAddress, instruction);
53 Iterator<SparseSwitchDataPseudoInstruction.SparseSwitchTarget> iterator = instruction.iterateKeysAndTargets();
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 148 (** The predicate for an integer comparison ([icmp]) instruction.
164 (** The predicate for a floating-point comparison ([fcmp]) instruction.
189 | Invalid (* not an instruction *)
281 | Instruction of Opcode.t
671 (** [has_metadata i] returns whether or not the instruction [i] has any
673 [llvm::Instruction::hasMetadata]. *)
677 kind [kind] in the instruction [i] See the function
678 [llvm::Instruction::getMetadata]. *)
682 instruction [i]. See the function [llvm::Instruction::setMetadata]. *
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_CONST_CLASS.S 16 GOTO_OPCODE(ip) @ jump to next instruction
35 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_STRING.S 16 GOTO_OPCODE(ip) @ jump to next instruction
34 GOTO_OPCODE(ip) @ jump to next instruction

Completed in 1384 milliseconds

1 2 3 45 6 7 8 91011>>