Home
last modified time | relevance | path

Searched refs:LowBit (Results 1 – 9 of 9) sorted by relevance

/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRFSDiscriminator.h35 unsigned LowBit; variable
43 LowBit = getFSPassBitBegin(P); in MachineFunctionPass()
45 assert(LowBit < HighBit && "HighBit needs to be greater than Lowbit"); in MachineFunctionPass()
H A DMIRSampleProfile.h41 unsigned LowBit; variable
/llvm-project/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp119 unsigned LowBitTemp = LowBit; in runOnMachineFunction()
120 assert(LowBit > 0 && "LowBit in FSDiscriminator cannot be 0"); in runOnMachineFunction()
174 DiscriminatorCurrPass = DiscriminatorCurrPass << LowBit; in runOnMachineFunction()
H A DMIRSampleProfile.cpp161 LowBit = getFSPassBitBegin(P); in setFSPass()
163 assert(LowBit < HighBit && "HighBit needs to be greater than Lowbit"); in MIRProfileLoader()
185 // LowBit in the FS discriminator used by this instance. Note the number is
187 unsigned LowBit;
354 LowBit = getFSPassBitBegin(P); in MIRProfileLoaderPass()
360 assert(LowBit < HighBit && "HighBit needs to be greater than Lowbit"); in runOnMachineFunction()
184 unsigned LowBit; global() member in llvm::MIRProfileLoader
/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h364 template <unsigned HighBit, unsigned LowBit, unsigned D = 0>
366 static_assert(HighBit >= LowBit, "Invalid bit range!");
367 static constexpr unsigned Offset = LowBit;
368 static constexpr unsigned Width = HighBit - LowBit + 1;
/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp689 unsigned LowBit = LowBitExpr.getValue(); in evalSliceExpr()
690 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1; in evalSliceExpr() local
691 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask; in evalSliceExpr()
/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp888 unsigned LowBit = Mask & -Mask; in getITMaskOpValue()
889 unsigned BitsAboveLowBit = 0xF & (-LowBit << 1); in getITMaskOpValue()
890 unsigned LowBit = Mask & -Mask; getITMaskOpValue() local
/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp5872 unsigned LowBit = mask & -mask; in DecodeIT()
5873 unsigned BitsAboveLowBit = 0xF & (-LowBit << 1); in DecodeIT()
5866 unsigned LowBit = mask & -mask; DecodeIT() local
/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2591 SDValue LowBit = DAG.getZExtOrTrunc(Z.getOperand(0).getOperand(0), DL, VT);
2594 return DAG.getNode(IsAdd ? ISD::SUB : ISD::ADD, DL, VT, C1, LowBit); in foldAddSubOfSignBit()
2564 SDValue LowBit = DAG.getZExtOrTrunc(SetCC.getOperand(0), DL, VT); foldAddSubBoolOfMaskedVal() local
[all...]