Lines Matching full:load
42 * Load a immediate using a shortcut if possible; otherwise
111 * Load an immediate value into a fixed or temp register. Target
448 /* Load value from base + scaled index. */
559 * Load value from base + displacement. Optionally perform null check
568 ArmLIR *load = NULL;
638 load = res = newLIR3(cUnit, opCode, rDest, rBase, encodedDisp);
646 load = newLIR3(cUnit, kThumbLdrRRI5, rDest, rTmp, 0);
653 load = newLIR3(cUnit, opCode, rDest, rBase, rTmp);
655 annotateDalvikRegAccess(load, displacement >> 2,
662 if (load != NULL)
663 annotateDalvikRegAccess(load, displacement >> 2,
670 if (load != NULL && cUnit->heapMemOp)
671 load->branchInsertSV = true;