Lines Matching full:load
133 * Load a immediate using a shortcut if possible; otherwise
205 * Load an immediate value into a fixed or temp register. Target
683 ArmLIR *load;
707 load = newLIR3(cUnit, opCode, rDest, regPtr, 0);
710 load->branchInsertSV = true;
712 return load;
732 load = newLIR3(cUnit, opCode, rDest, rBase, rIndex);
734 load = newLIR4(cUnit, opCode, rDest, rBase, rIndex, scale);
738 load->branchInsertSV = true;
740 return load;
810 * Load value from base + displacement. Optionally perform null check
818 ArmLIR *res, *load;
914 load = res = newLIR3(cUnit, opCode, rDest, rBase, encodedDisp);
918 load = loadBaseIndexed(cUnit, rBase, regOffset, rDest, 0, size);
923 annotateDalvikRegAccess(load, displacement >> 2, true /* isLoad */);
927 load->branchInsertSV = true;