Lines Matching refs:delta
544 int delta = offset2 - offset1; in AssembleInstructions() local
545 if ((delta & 0xffff) == delta && ((delta & 0x8000) == 0)) { in AssembleInstructions()
547 lir->operands[1] = delta; in AssembleInstructions()
571 int delta = offset2 - offset1; in AssembleInstructions() local
572 lir->operands[1] = delta & 0xffff; in AssembleInstructions()
577 int delta = offset2 - offset1; in AssembleInstructions() local
578 lir->operands[1] = (delta >> 16) & 0xffff; in AssembleInstructions()
583 int delta = target - pc; in AssembleInstructions() local
584 if (delta & 0x3) { in AssembleInstructions()
585 LOG(FATAL) << "PC-rel offset not multiple of 4: " << delta; in AssembleInstructions()
587 if (delta > 131068 || delta < -131069) { in AssembleInstructions()
591 lir->operands[0] = delta >> 2; in AssembleInstructions()
597 int delta = target - pc; in AssembleInstructions() local
598 if (delta & 0x3) { in AssembleInstructions()
599 LOG(FATAL) << "PC-rel offset not multiple of 4: " << delta; in AssembleInstructions()
601 if (delta > 131068 || delta < -131069) { in AssembleInstructions()
605 lir->operands[1] = delta >> 2; in AssembleInstructions()
611 int delta = target - pc; in AssembleInstructions() local
612 if (delta & 0x3) { in AssembleInstructions()
613 LOG(FATAL) << "PC-rel offset not multiple of 4: " << delta; in AssembleInstructions()
615 if (delta > 131068 || delta < -131069) { in AssembleInstructions()
619 lir->operands[2] = delta >> 2; in AssembleInstructions()