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

  /art/compiler/utils/x86_64/
assembler_x86_64.cc 71 EmitRegisterOperand(2, reg.LowBits());
94 EmitUint8(0x50 + reg.LowBits());
122 EmitUint8(0x58 + reg.LowBits());
140 EmitRegisterOperand(0, dst.LowBits());
144 EmitUint8(0xB8 + dst.LowBits());
154 EmitUint8(0xB8 + dst.LowBits());
174 EmitRegisterOperand(src.LowBits(), dst.LowBits());
182 EmitRegisterOperand(dst.LowBits(), src.LowBits());
    [all...]
constants_x86_64.h 38 constexpr uint8_t LowBits() const {
56 constexpr uint8_t LowBits() const {
assembler_x86_64.h 116 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match.
133 encoding_[0] = (mod_in << 6) | rm_in.LowBits();
146 encoding_[1] = (scale_in << 6) | (static_cast<uint8_t>(index_in.LowBits()) << 3) |
147 static_cast<uint8_t>(base_in.LowBits());
206 if (disp == 0 && base_in.LowBits() != RBP) {
208 if (base_in.LowBits() == RSP) {
213 if (base_in.LowBits() == RSP) {
219 if (base_in.LowBits() == RSP) {
236 if (disp == 0 && base_in.LowBits() != RBP) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCJITInfo.cpp 447 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
449 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
456 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
458 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 693 APInt LowBits = RA - 1;
694 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
700 KnownZero = LHSKnownZero & LowBits;
701 KnownOne = LHSKnownOne & LowBits;
705 if (LHSKnownZero[BitWidth-1] || ((LHSKnownZero & LowBits) == LowBits))
706 KnownZero |= ~LowBits;
710 if (LHSKnownOne[BitWidth-1] && ((LHSKnownOne & LowBits) != 0))
711 KnownOne |= ~LowBits;
    [all...]
InstCombineShifts.cpp 131 unsigned LowBits = TypeWidth - CI->getZExtValue();
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
155 unsigned LowBits = CI->getZExtValue() - NumBits;
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 471 APInt LowBits = RA - 1;
472 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
477 KnownZero = KnownZero2 & LowBits;
478 KnownOne = KnownOne2 & LowBits;
482 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
483 KnownZero |= ~LowBits;
487 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
488 KnownOne |= ~LowBits;
514 APInt LowBits = (RA - 1)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 684 APInt LowBits = RA - 1;
685 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
691 KnownZero = LHSKnownZero & LowBits;
692 KnownOne = LHSKnownOne & LowBits;
696 if (LHSKnownZero[BitWidth-1] || ((LHSKnownZero & LowBits) == LowBits))
697 KnownZero |= ~LowBits;
701 if (LHSKnownOne[BitWidth-1] && ((LHSKnownOne & LowBits) != 0))
702 KnownOne |= ~LowBits;
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 438 milliseconds