Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching defs:out

239     // instruction it is is actually out of range for the instruction.
392 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
413 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
426 uint32_t out = (opc << 21);
427 out |= (Value & 0x800) << 15;
428 out |= (Value & 0x700) << 4;
429 out |= (Value & 0x0FF);
431 return swapHalfWords(out, IsLittleEndian);
449 uint32_t out = 0;
456 out |= I << 26; // S bit
457 out |= !J1 << 13; // J1 bit
458 out |= !J2 << 11; // J2 bit
459 out |= (Value & 0x1FF800) << 5; // imm6 field
460 out |= (Value & 0x0007FF); // imm11 field
462 return swapHalfWords(out, IsLittleEndian);
468 uint64_t out = 0;
469 out |= (Value & 0x80000) << 7; // S bit
470 out |= (Value & 0x40000) >> 7; // J2 bit
471 out |= (Value & 0x20000) >> 4; // J1 bit
472 out |= (Value & 0x1F800) << 5; // imm6 field
473 out |= (Value & 0x007FF); // imm11 field
475 return swapHalfWords(out, IsLittleEndian);
560 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
579 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");