HomeSort by relevance Sort by last modified time
    Searched refs:LowBits (Results 1 - 10 of 10) sorted by null

  /art/compiler/utils/x86_64/
assembler_x86_64.cc 43 EmitRegisterOperand(2, reg.LowBits());
65 EmitUint8(0x50 + reg.LowBits());
93 EmitUint8(0x58 + reg.LowBits());
111 EmitRegisterOperand(0, dst.LowBits());
115 EmitUint8(0xB8 + dst.LowBits());
124 EmitUint8(0xB8 + dst.LowBits());
134 EmitRegisterOperand(src.LowBits(), dst.LowBits());
142 EmitRegisterOperand(dst.LowBits(), src.LowBits());
    [all...]
constants_x86_64.h 37 uint8_t LowBits() const {
54 uint8_t LowBits() const {
assembler_x86_64.h 101 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match.
114 encoding_[0] = (mod << 6) | rm.LowBits();
127 encoding_[1] = (scale << 6) | (static_cast<uint8_t>(index.LowBits()) << 3) |
128 static_cast<uint8_t>(base.LowBits());
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 461 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
463 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
470 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
472 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 727 APInt LowBits = RA - 1;
728 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
734 KnownZero = LHSKnownZero & LowBits
    [all...]
InstCombineShifts.cpp 133 unsigned LowBits = TypeWidth - CI->getZExtValue();
135 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
157 unsigned LowBits = CI->getZExtValue() - NumBits;
159 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 538 APInt LowBits = RA - 1;
542 KnownZero = KnownZero2 & LowBits;
543 KnownOne = KnownOne2 & LowBits;
547 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
548 KnownZero |= ~LowBits;
552 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
553 KnownOne |= ~LowBits;
575 APInt LowBits = (RA - 1);
578 KnownZero |= ~LowBits;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 121 milliseconds