Searched refs:kind (Results 1 - 25 of 31) sorted by relevance

12

/dalvik/vm/jdwp/
H A DJdwpConstants.cpp149 const char* dvmJdwpEventKindStr(JdwpEventKind kind) argument
151 switch (kind) {
179 const char* dvmJdwpModKindStr(JdwpModKind kind) argument
181 switch (kind) {
H A DJdwpConstants.h121 const char* dvmJdwpEventKindStr(JdwpEventKind kind);
139 const char* dvmJdwpModKindStr(JdwpModKind kind);
H A DJdwpEvent.cpp166 ALOGI(" kind=%s susp=%s modCount=%d",
173 JdwpModKind kind = static_cast<JdwpModKind>(pMod->modKind); local
174 ALOGI(" %s", dvmJdwpModKindStr(kind));
519 ALOGE("unhandled mod kind %d", pMod->modKind);
/dalvik/vm/
H A DIndirectRefTable.h96 * Indirect reference kind, used as the two low bits of IndirectRef.
106 const char* indirectRefKindToString(IndirectRefKind kind);
109 * Determine what kind of indirect reference this is.
304 * "kind" should be Local or Global. The Global table may also hold
309 bool init(size_t initialCount, size_t maxCount, IndirectRefKind kind);
361 static inline IndirectRef toIndirectRef(u4 index, u4 serial, IndirectRefKind kind) { argument
363 return reinterpret_cast<IndirectRef>((serial << 20) | (index << 2) | kind);
H A DIndirectRefTable.cpp141 IndirectRefKind kind = indirectRefKind(iref); local
142 if (kind != kind_) {
147 if (kind == kIndirectKindInvalid) {
153 // References of the requested kind cannot appear within this table.
224 IndirectRefKind kind = indirectRefKind(iref); local
226 if (kind == kind_) {
251 } else if (kind == kIndirectKindInvalid && gDvmJni.workAroundAppJniBugs) {
260 // References of the requested kind cannot appear within this table.
297 const char* indirectRefKindToString(IndirectRefKind kind) argument
299 switch (kind) {
[all...]
/dalvik/vm/mterp/x86/
H A DOP_THROW_VERIFICATION_ERROR.S15 call dvmThrowVerificationError # call(method, kind, ref)
/dalvik/vm/compiler/codegen/x86/libenc/
H A Denc_base.cpp107 OpcodeByteKind kind = (OpcodeByteKind)(byte & OpcodeByteKind_KindMask); local
114 switch(kind>>8) {
121 //assert((odesc->opnds[0].kind & OpndKind_Mem) ||
122 // (odesc->opnds[1].kind & OpndKind_Mem));
123 unsigned memidx = odesc->opnds[0].kind & OpndKind_Mem ? 0 : 1;
212 if (kind == OpcodeByteKind_ib) {
217 else if (kind == OpcodeByteKind_iw) {
222 else if (kind == OpcodeByteKind_id) {
229 assert(kind == OpcodeByteKind_io);
397 assert(original.kind()
[all...]
H A Denc_base.h146 * Description of an operand in opcode - its kind, size or RegName if
155 OpndKind kind;
311 * @brief Initializes the instance with empty size and kind.
325 * specified size and kind.
328 * size and kind from the RegName.
329 * The provided size and kind must match the RegName's ones though.
331 Operand(OpndSize sz, OpndKind kind, RegName reg, OpndExt ext = OpndExt_None) :
332 m_kind(kind), m_size(sz), m_ext(ext), m_reg(reg)
401 * @brief Returns kind of the operand.
403 OpndKind kind(voi
[all...]
H A Ddec_base.cpp197 OpcodeByteKind kind = (OpcodeByteKind)(aux & OpcodeByteKind_KindMask); local
203 switch (kind) {
209 if (opndDesc.kind & OpndKind_Mem) { // 1st operand is memory
217 okind = ((opndDesc2.kind & OpndKind_XMMReg) || opndDesc2.size==OpndSize_64) ? OpndKind_XMMReg : OpndKind_GPReg;
222 okind = ((opndDesc.kind & OpndKind_XMMReg) || opndDesc.size==OpndSize_64) ? OpndKind_XMMReg : OpndKind_GPReg;
248 switch(kind)
363 // unknown kind ? how comes ?
477 OpndKind okind = ((opndDesc.kind & OpndKind_XMMReg) || opndDesc.size == OpndSize_64) ? OpndKind_XMMReg : OpndKind_GPReg;
H A Denc_tabl.cpp133 'mnemonic' is a kind of synonim for 'instruction'):
194 Instead, we use a kind of mapping: the opcodes info is stored in packed
281 OpndKind kind = odesc->opnds[0].kind; local
283 assert(kind<COUNTOF(kind_hash));
285 hash = get_kind_hash(kind) | get_size_hash(size);
289 OpndKind kind = odesc->opnds[1].kind; local
291 assert(kind<COUNTOF(kind_hash));
294 (get_kind_hash(kind) | get_size_has
[all...]
H A Denc_defs.h91 * NOTE: an MMXReg kind is incompatible with the current constraints framework,
104 OpndKind_MaxRegKind = OpndKind_StatusReg, // a max existing kind of register
682 inline bool isRegKind(OpndKind kind) argument
684 return OpndKind_GPReg<= kind && kind<=OpndKind_MaxRegKind;
748 * Returns NULL if the passed kind is invalid.
750 const char * getOpndKindString(OpndKind kind);
763 * Constructs an RegName with the same index and kind, but with a different size from
774 * brief Tests two RegName-s of the same kind for equality.
/dalvik/vm/interp/
H A DInterp.h49 int kind, int ref);
H A DInterp.cpp1385 * "kind" indicates the kind of failure encountered by the verifier. It
1388 void dvmThrowVerificationError(const Method* method, int kind, int ref) argument
1390 int errorPart = kind & ~(0xff << kVerifyErrorRefTypeShift);
1391 int errorRefPart = kind >> kVerifyErrorRefTypeShift;
/dalvik/vm/native/
H A Ddalvik_system_VMRuntime.cpp242 if (cpe->kind == kCpeDex) {
245 if (cpe->kind == kCpeJar) {
248 LOG_ALWAYS_FATAL("Unknown cpe->kind=%d", cpe->kind);
402 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
416 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
475 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
H A Ddalvik_system_VMDebug.cpp167 * private static int getAllocCount(int kind)
173 unsigned int kind = args[0]; local
174 if (kind < (1<<16)) {
178 kind >>= 16;
180 switch (kind) {
/dalvik/vm/compiler/
H A DCompiler.cpp39 assert(gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex].kind
43 gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex++].kind =
66 void dvmCompilerForceWorkEnqueue(const u2 *pc, WorkOrderKind kind, void* info) argument
71 success = dvmCompilerWorkEnqueue(pc, kind, info);
95 bool dvmCompilerWorkEnqueue(const u2 *pc, WorkOrderKind kind, void* info) argument
130 newOrder->kind = kind;
135 (kind == kWorkOrderTraceDebug) ? true : false;
H A DCompiler.h103 WorkOrderKind kind; member in struct:CompilerWorkOrder
198 void dvmCompilerForceWorkEnqueue(const u2* pc, WorkOrderKind kind, void* info);
199 bool dvmCompilerWorkEnqueue(const u2* pc, WorkOrderKind kind, void* info);
/dalvik/vm/oo/
H A DClass.h45 ClassPathEntryKind kind; member in struct:ClassPathEntry
H A DClass.cpp508 while (cpe->kind != kCpeLastEntry) {
511 switch (cpe->kind) {
518 if (CALC_CACHE_STATS && cpe->kind == kCpeJar) {
542 while (cpe->kind != kCpeLastEntry) {
563 while (cpe->kind != kCpeLastEntry) {
564 switch (cpe->kind) {
599 * filename. We need to figure out what kind of file it is, and for
623 cpe->kind = kCpeJar;
630 cpe->kind = kCpeDex;
710 tmp.kind
[all...]
/dalvik/vm/alloc/
H A DDdmHeap.cpp173 #define HPSG_STATE(solidity, kind) \
174 ((u1)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
457 /* Figure out what kind of chunks we'll be sending.
/dalvik/vm/analysis/
H A DDexPrepare.cpp1105 switch (cpe->kind) {
1111 ALOGE("DexOpt: unexpected cpe kind %d", cpe->kind);
1124 switch (cpe->kind) {
1132 ALOGE("unexpected cpe kind %d", cpe->kind);
/dalvik/vm/compiler/codegen/arm/
H A DArmLIR.h711 /* Instruction assembly fieldLoc kind */
733 ArmEncodingKind kind; member in struct:ArmEncodingMap::__anon53
/dalvik/vm/compiler/codegen/mips/
H A DMipsLIR.h559 /* Instruction assembly fieldLoc kind */
571 MipsEncodingKind kind; member in struct:MipsEncodingMap::__anon60
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp410 if (EncodingMap[opcode].fieldLoc[2].kind == kFmtShift)
/dalvik/vm/compiler/codegen/x86/
H A DCodegenInterface.cpp1508 switch (work->kind) {

Completed in 384 milliseconds

12