Home | History | Annotate | Download | only in out

Lines Matching refs:u4

145 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
154 /* get a long from an array of u4 */
155 static inline s8 getLongFromArray(const u4* ptr, int idx)
158 union { s8 ll; u4 parts[2]; } conv;
171 /* store a long into an array of u4 */
172 static inline void putLongToArray(u4* ptr, int idx, s8 val)
175 union { s8 ll; u4 parts[2]; } conv;
186 /* get a double from an array of u4 */
187 static inline double getDoubleFromArray(const u4* ptr, int idx)
190 union { double d; u4 parts[2]; } conv;
203 /* store a double into an array of u4 */
204 static inline void putDoubleToArray(u4* ptr, int idx, double dval)
207 union { double d; u4 parts[2]; } conv;
222 * Assumes the existence of "u4* fp".
232 (fp[(_idx)] = (u4)(_val)) : (assert(!"bad reg"),1969) )
259 # define SET_REGISTER_AS_OBJECT(_idx, _val) (fp[(_idx)] = (u4)(_val))
310 * Assumes existence of "u4* fp" and "const u2* pc".
337 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {
355 static inline bool checkForNullExportPC(Object* obj, u4* fp, const u2* pc)
369 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {
436 u4 ref; \
671 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
717 if ((u4)firstVal == 0x80000000 && ((s2) vsrc2) == -1) { \
751 if ((u4)firstVal == 0x80000000 && ((s1) vsrc2) == -1) { \
796 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
1184 u4 arg0, arg1, arg2, arg3;
1282 u4* contents;
1285 u4 arg5;
1348 contents = (u4*)(void*)newArray->contents;
1449 (u4) baseMethod->methodIndex,
1457 (u4) baseMethod->methodIndex,
1820 fp = (u4*)saveArea->prevFrame;
1976 //fp = (u4*) self->interpSave.curFrame;
2035 u4* outs;
2050 u4 count = vsrc1 >> 4;
2098 u4* newFp;
2105 newFp = (u4*) SAVEAREA_FROM_FP(fp) - methodToCall->registersSize;
2111 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);