HomeSort by: relevance | last modified time | path
    Searched refs:OldImm (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ConditionOptimizer.cpp 257 const int OldImm = (int)CmpMI->getOperand(2).getImm();
258 const int NewImm = std::abs(OldImm + Correction);
262 if (OldImm == 0 && ((Negative && Correction == 1) ||
AArch64ISelLowering.cpp 1553 uint64_t OldImm = Imm, NewImm, Enc;
1617 (void)OldImm;
1618 assert(((OldImm ^ NewImm) & Demanded.getZExtValue()) == 0 &&
1620 assert(OldImm != NewImm && "the new imm shouldn't be equal to the old imm");
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 4078 uint8_t OldImm = Imm;
4079 Imm = OldImm & 0xa5;
4080 if (OldImm & 0x02) Imm |= 0x10;
4081 if (OldImm & 0x10) Imm |= 0x02;
4082 if (OldImm & 0x08) Imm |= 0x40;
4083 if (OldImm & 0x40) Imm |= 0x08;
4089 uint8_t OldImm = Imm;
4090 Imm = OldImm & 0x99;
4091 if (OldImm & 0x02) Imm |= 0x04;
4092 if (OldImm & 0x04) Imm |= 0x02
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIRegisterInfo.cpp 1836 int64_t OldImm
1838 int64_t NewOffset = OldImm + Offset;

Completed in 59 milliseconds