Lines Matching defs:out
199 return "out of range pc-relative fixup value";
211 return "out of range pc-relative fixup value";
222 return "out of range pc-relative fixup value";
227 // instruction it is is actually out of range for the instruction.
399 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
420 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
435 uint32_t out = (opc << 21);
436 out |= (Value & 0x800) << 15;
437 out |= (Value & 0x700) << 4;
438 out |= (Value & 0x0FF);
440 return swapHalfWords(out, IsLittleEndian);
459 uint32_t out = 0;
466 out |= I << 26; // S bit
467 out |= !J1 << 13; // J1 bit
468 out |= !J2 << 11; // J2 bit
469 out |= (Value & 0x1FF800) << 5; // imm6 field
470 out |= (Value & 0x0007FF); // imm11 field
472 return swapHalfWords(out, IsLittleEndian);
478 uint64_t out = 0;
479 out |= (Value & 0x80000) << 7; // S bit
480 out |= (Value & 0x40000) >> 7; // J2 bit
481 out |= (Value & 0x20000) >> 4; // J1 bit
482 out |= (Value & 0x1F800) << 5; // imm6 field
483 out |= (Value & 0x007FF); // imm11 field
485 return swapHalfWords(out, IsLittleEndian);
594 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
615 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
657 // If the symbol is out of range, produce a relocation and hope the
883 // Directive not convertable to compact unwind, bail out.
938 << StackAdjust << ") out of range\n");