Searched defs:store (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp511 /* store value base base + scaled index. */
718 ArmLIR *store = NULL; local
774 store = res = newLIR3(cUnit, opcode, rSrc, rBase, encodedDisp);
782 store = newLIR3(cUnit, kThumbStrRRI5, rSrc, rScratch, 0);
786 store = newLIR3(cUnit, opcode, rSrc, rBase, rScratch);
791 if (store != NULL)
792 annotateDalvikRegAccess(store, displacement >> 2,
799 if (store != NULL && cUnit->heapMemOp)
800 store->flags.insertWrapper = true;
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp482 /* store value base base + scaled index. */
723 MipsLIR *store = NULL; local
776 store = res = newLIR3(cUnit, opcode, rSrc, displacement, rBase);
778 store = res = newLIR3(cUnit, opcode, rSrc, displacement + LOWORD_OFFSET, rBase);
785 store = newLIR3(cUnit, opcode, rSrc, 0, rScratch);
787 store = newLIR3(cUnit, opcode, rSrc, LOWORD_OFFSET, rScratch);
794 if (store != NULL)
795 annotateDalvikRegAccess(store, (displacement + (pair ? LOWORD_OFFSET : 0)) >> 2,
803 if (store != NULL && cUnit->heapMemOp)
804 store
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp814 ArmLIR *store; local
838 store = newLIR3(cUnit, opcode, rSrc, regPtr, 0);
841 store->flags.insertWrapper = true;
843 return store;
859 store = newLIR3(cUnit, opcode, rSrc, rBase, rIndex);
861 store = newLIR4(cUnit, opcode, rSrc, rBase, rIndex, scale);
865 store->flags.insertWrapper = true;
867 return store;
1013 ArmLIR *res, *store; local
1087 store
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DAssemble.cpp2041 * space to store the addr/line mapping. Since this is a debugging feature
2456 * Handles a store of a specified size of data to a specified address.
2622 bool store = false; local
2647 // Determine whether the mem op is a store or load
2659 store = true;
2754 if (store) {
2811 // Determine whether the mem op is a store or load
2818 store = true;
2825 store = true;
2904 if (store) {
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DAssemble.cpp1413 * space to store the addr/line mapping. Since this is a debugging feature
1833 * Handles a store of a specified size of data to a specified address.
2002 bool store = false; local
2028 // Determine whether the mem op is a store or load
2040 store = true;
2135 if (store) {
2192 // Determine whether the mem op is a store or load
2199 store = true;
2206 store = true;
2285 if (store) {
[all...]

Completed in 85 milliseconds