Searched refs:classPtr (Results 1 – 6 of 6) sorted by relevance
/dalvik/vm/compiler/codegen/x86/ |
D | LowerObject.cpp | 40 ClassObject *classPtr = in check_cast_nohelper() local 42 ALOGV("in check_cast, class is resolved to %p", classPtr); in check_cast_nohelper() 43 if(classPtr != NULL) { in check_cast_nohelper() 45 ALOGV("check_cast class %s", classPtr->descriptor); in check_cast_nohelper() 82 move_imm_to_reg(OpndSize_32, (int)classPtr, PhysicalReg_EAX, true); in check_cast_nohelper() 325 ClassObject *classPtr = in op_new_instance() local 327 assert(classPtr != NULL); in op_new_instance() 328 assert(classPtr->status & CLASS_INITIALIZED); in op_new_instance() 333 assert((classPtr->accessFlags & (ACC_INTERFACE|ACC_ABSTRACT)) == 0); in op_new_instance() 337 move_imm_to_mem(OpndSize_32, (int)classPtr, 0, PhysicalReg_ESP, true); in op_new_instance() [all …]
|
D | LowerConst.cpp | 188 void *classPtr = (void*) in op_const_class() local 190 assert(classPtr != NULL); in op_const_class() 191 set_VR_to_imm(vA, OpndSize_32, (int) classPtr ); in op_const_class()
|
/dalvik/vm/native/ |
D | InternalNative.cpp | 72 DalvikNativeClass* classPtr = gDvmNativeMethodSet; in dvmInternalNativeStartup() local 74 while (classPtr->classDescriptor != NULL) { in dvmInternalNativeStartup() 75 classPtr->classDescriptorHash = in dvmInternalNativeStartup() 76 dvmComputeUtf8Hash(classPtr->classDescriptor); in dvmInternalNativeStartup() 77 classPtr++; in dvmInternalNativeStartup()
|
/dalvik/vm/compiler/codegen/arm/ |
D | CodegenDriver.cpp | 1608 void *classPtr = (void*) in handleFmt21c_Fmt31c() local 1611 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1619 loadConstantNoClobber(cUnit, rlResult.lowReg, (int) classPtr ); in handleFmt21c_Fmt31c() 1790 ClassObject *classPtr = (ClassObject *) in handleFmt21c_Fmt31c() local 1793 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1803 assert((classPtr->accessFlags & (ACC_INTERFACE|ACC_ABSTRACT)) == 0); in handleFmt21c_Fmt31c() 1807 loadConstant(cUnit, r0, (int) classPtr); in handleFmt21c_Fmt31c() 1834 ClassObject *classPtr = in handleFmt21c_Fmt31c() local 1844 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1851 loadConstant(cUnit, r1, (int) classPtr ); in handleFmt21c_Fmt31c() [all …]
|
/dalvik/vm/compiler/codegen/mips/ |
D | CodegenDriver.cpp | 1668 void *classPtr = (void*) in handleFmt21c_Fmt31c() local 1671 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1679 loadConstantNoClobber(cUnit, rlResult.lowReg, (int) classPtr ); in handleFmt21c_Fmt31c() 1850 ClassObject *classPtr = (ClassObject *) in handleFmt21c_Fmt31c() local 1853 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1863 assert((classPtr->accessFlags & (ACC_INTERFACE|ACC_ABSTRACT)) == 0); in handleFmt21c_Fmt31c() 1867 loadConstant(cUnit, r_A0, (int) classPtr); in handleFmt21c_Fmt31c() 1896 ClassObject *classPtr = in handleFmt21c_Fmt31c() local 1906 if (classPtr == NULL) { in handleFmt21c_Fmt31c() 1913 loadConstant(cUnit, r_A1, (int) classPtr ); in handleFmt21c_Fmt31c() [all …]
|
/dalvik/vm/compiler/ |
D | Frontend.cpp | 427 ClassObject *classPtr = (ClassObject *)(void*) in dvmCompilerCanIncludeThisInstruction() local 431 if (classPtr == NULL) { in dvmCompilerCanIncludeThisInstruction() 488 void *classPtr = (void*) in dvmCompilerCanIncludeThisInstruction() local 491 if (classPtr == NULL) { in dvmCompilerCanIncludeThisInstruction()
|