Searched refs:LowBit (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMIRFSDiscriminator.h46 unsigned LowBit; member in class:llvm::MIRAddFSDiscriminators
53 MIRAddFSDiscriminators(unsigned LowBit = 0, unsigned HighBit = 0)
54 : MachineFunctionPass(ID), LowBit(LowBit), HighBit(HighBit) {
55 assert(LowBit < HighBit && "HighBit needs to be greater than Lowbit");
H A DPasses.h494 FunctionPass *createMIRAddFSDiscriminatorsPass(unsigned LowBit,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp36 FunctionPass *llvm::createMIRAddFSDiscriminatorsPass(unsigned LowBit, argument
38 return new MIRAddFSDiscriminators(LowBit, HighBit);
65 // b/w LowBit and HighBit.
81 unsigned BitMaskBefore = getN1Bits(LowBit);
107 DiscriminatorCurrPass = DiscriminatorCurrPass << LowBit;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp620 unsigned LowBit = LowBitExpr.getValue(); local
621 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1;
622 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp900 unsigned LowBit = Mask & -Mask; local
901 unsigned BitsAboveLowBit = 0xF & (-LowBit << 1);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp5542 unsigned LowBit = mask & -mask; local
5543 unsigned BitsAboveLowBit = 0xF & (-LowBit << 1);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2201 SDValue LowBit = DAG.getZExtOrTrunc(SetCC.getOperand(0), DL, VT); local
2204 return DAG.getNode(IsAdd ? ISD::SUB : ISD::ADD, DL, VT, C1, LowBit);

Completed in 485 milliseconds