HomeSort by relevance Sort by last modified time
    Searched refs:kNumPackedOpcodes (Results 1 - 9 of 9) sorted by null

  /dalvik/libdex/
DexOpcodes.cpp 31 static const char* gOpNames[kNumPackedOpcodes] = {
297 assert(op >= 0 && op < kNumPackedOpcodes);
InstrUtils.h 144 assert((u4) opcode < kNumPackedOpcodes);
160 assert((u4) opcode < kNumPackedOpcodes);
177 assert((u4) opcode < kNumPackedOpcodes);
186 assert((u4) opcode < kNumPackedOpcodes);
InstrUtils.cpp 33 static InstructionWidth gInstructionWidthTable[kNumPackedOpcodes] = {
58 static u1 gOpcodeFlagsTable[kNumPackedOpcodes] = {
323 static u1 gInstructionFormatTable[kNumPackedOpcodes] = {
369 static u1 gInstructionIndexTypeTable[kNumPackedOpcodes] = {
DexOpcodes.h 36 * kNumPackedOpcodes: the highest possible packed opcode value of a
44 #define kNumPackedOpcodes 0x100
335 static const void* _name[kNumPackedOpcodes] = { \
    [all...]
  /art/runtime/interpreter/mterp/
gen_mterp.py 26 kNumPackedOpcodes = 256
251 # "goto table" definition macro, which has exactly kNumPackedOpcodes
265 if len(opcodes) != kNumPackedOpcodes:
267 % (len(opcodes), kNumPackedOpcodes)
276 # Load and emit opcodes for all kNumPackedOpcodes instructions.
280 assert len(opcodes) == kNumPackedOpcodes
291 for i in xrange(kNumPackedOpcodes):
345 # Load and emit alternate opcodes for all kNumPackedOpcodes instructions.
348 assert len(opcodes) == kNumPackedOpcodes
358 for i in xrange(kNumPackedOpcodes)
    [all...]
mterp.cc 40 if ((interp_size == 0) || (interp_size != (art::kNumPackedOpcodes * width))) {
  /art/compiler/dex/
compiler_enums.h 124 kMirOpFirst = kNumPackedOpcodes,
  /art/runtime/
dex_instruction.h 32 kNumPackedOpcodes = 0x100
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc 163 static const void* const handlersTable[instrumentation::kNumHandlerTables][kNumPackedOpcodes] = {
    [all...]

Completed in 458 milliseconds