HomeSort by relevance Sort by last modified time
    Searched refs:OpcodeInfo (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /libcore/dalvik/src/main/java/dalvik/bytecode/
OpcodeInfo.java 22 public final class OpcodeInfo {
71 private OpcodeInfo() {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
OpcodeInfo.java 22 * Every Instruction points to an OpcodeInfo object that holds useful information
26 public class OpcodeInfo {
33 * Construct an OpcodeInfo. A static list of these is created in Instruction.java.
35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) {
Instruction.java 64 public OpcodeInfo info;
123 Log.errorAndQuit("Couldn't find OpcodeInfo for opcode with value: "
297 private static Map<Integer,OpcodeInfo> opcode_map_by_int = new HashMap<Integer,OpcodeInfo>();
298 private static Map<Opcode,OpcodeInfo> opcode_map_by_enum = new HashMap<Opcode,OpcodeInfo>();
300 public static OpcodeInfo getOpcodeInfo(Opcode opcode) {
304 public static OpcodeInfo getOpcodeInfo(int opcodeValue) {
310 OpcodeInfo info = new OpcodeInfo(opcode, name, opcodeValue, fmt)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
ContainsPoolIndex.java 20 import dexfuzz.rawdex.OpcodeInfo;
40 public PoolIndexKind getPoolIndexKind(OpcodeInfo info);
Format22cs.java 21 import dexfuzz.rawdex.OpcodeInfo;
67 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
Format31c.java 21 import dexfuzz.rawdex.OpcodeInfo;
65 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
Format21c.java 22 import dexfuzz.rawdex.OpcodeInfo;
66 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
Format22c.java 22 import dexfuzz.rawdex.OpcodeInfo;
66 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
Format35c.java 22 import dexfuzz.rawdex.OpcodeInfo;
69 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
Format3rc.java 22 import dexfuzz.rawdex.OpcodeInfo;
62 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) {
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 19 import com.android.dx.io.OpcodeInfo;
134 return OpcodeInfo.getName(opcode);
  /dalvik/opcode-gen/
regen-all 39 ${progdir}/opcode-gen dx/src/com/android/dx/io/OpcodeInfo.java
48 ../libcore/dalvik/src/main/java/dalvik/bytecode/OpcodeInfo.java
  /dalvik/dx/src/com/android/dx/io/
CodeReader.java 102 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 25 import com.android.dx.io.OpcodeInfo;
84 + " (" + OpcodeInfo.getName(one.getOpcode()) + ")");
94 + " (" + OpcodeInfo.getName(one.getOpcode()) + ")");
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
ArithOpChanger.java 26 import dexfuzz.rawdex.OpcodeInfo;
111 OpcodeInfo oldOpcodeInfo = randomInsn.insn.info;
113 OpcodeInfo newOpcodeInfo = oldOpcodeInfo;
138 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(mutation.newOpcode);
RandomInstructionGenerator.java 27 import dexfuzz.rawdex.OpcodeInfo;
148 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(newOpcode);
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 21 import com.android.dx.io.OpcodeInfo;
72 InstructionCodec format = OpcodeInfo.getFormat(opcode);
InstructionCodec.java 21 import com.android.dx.io.OpcodeInfo;
260 IndexType indexType = OpcodeInfo.getIndexType(opcode);
368 IndexType indexType = OpcodeInfo.getIndexType(opcode);
502 IndexType indexType = OpcodeInfo.getIndexType(opcode);
801 IndexType indexType = OpcodeInfo.getIndexType(opcode);
861 IndexType indexType = OpcodeInfo.getIndexType(opcode);
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 271 /// OpcodeInfo - This encodes the index of the string to use for the first
273 std::vector<uint64_t> OpcodeInfo(NumberedInstructions.size());
308 OpcodeInfo[AWI.CGIIndex] = Idx+1;
345 OpcodeInfo[Instructions[Idx].CGIIndex] |=
385 O << " " << ((OpcodeInfo[i] >> Shift) & Mask) << "U,\t// "
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterEmitter.cpp 282 /// OpcodeInfo - This encodes the index of the string to use for the first
284 std::vector<unsigned> OpcodeInfo;
309 OpcodeInfo.push_back(Idx+1);
346 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
368 O << " " << OpcodeInfo[i] << "U,\t// "
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 47 import dalvik.bytecode.OpcodeInfo;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pickletools.py 693 # and in the stack_before and stack_after attributes of OpcodeInfo
823 class OpcodeInfo(object):
882 I = OpcodeInfo
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pickletools.py 693 # and in the stack_before and stack_after attributes of OpcodeInfo
823 class OpcodeInfo(object):
882 I = OpcodeInfo
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pickletools.py 693 # and in the stack_before and stack_after attributes of OpcodeInfo
823 class OpcodeInfo(object):
882 I = OpcodeInfo
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickletools.py 693 # and in the stack_before and stack_after attributes of OpcodeInfo
823 class OpcodeInfo(object):
882 I = OpcodeInfo
    [all...]

Completed in 712 milliseconds

1 2 3 4