Home
last modified time | relevance | path

Searched refs:Log2_64 (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCELFStreamer.cpp109 : sbss[(Log2_64(AccessSize))]; in HexagonMCEmitCommonSymbol()
131 ? ELF::SHN_HEXAGON_SCOMMON + (Log2_64(AccessSize) + 1) in HexagonMCEmitCommonSymbol()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCELFStreamer.cpp107 : sbss[(Log2_64(AccessSize))]; in HexagonMCEmitCommonSymbol()
131 ? ELF::SHN_HEXAGON_SCOMMON + (Log2_64(AccessSize) + 1) in HexagonMCEmitCommonSymbol()
/external/llvm/include/llvm/Support/
DMathExtras.h497 inline unsigned Log2_64(uint64_t Value) {
731 int Log2Z = Log2_64(X) + Log2_64(Y);
733 int Log2Max = Log2_64(Max);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMathExtras.h519 inline unsigned Log2_64(uint64_t Value) {
789 int Log2Z = Log2_64(X) + Log2_64(Y);
791 int Log2Max = Log2_64(Max);
/external/llvm/lib/Target/X86/
DX86ShuffleDecodeConstantPool.cpp306 unsigned EltMaskSize = Log2_64(NumElements); in DecodeVPERMVMask()
339 unsigned EltMaskSize = Log2_64(NumElements * 2); in DecodeVPERMV3Mask()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblySetP2AlignOperands.cpp98 uint64_t P2Align = Log2_64((*MI.memoperands_begin())->getAlignment()); in runOnMachineFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DMathExtras.h545 inline unsigned Log2_64(uint64_t Value) {
807 int Log2Z = Log2_64(X) + Log2_64(Y);
809 int Log2Max = Log2_64(Max);
DParallel.h147 llvm::Log2_64(std::distance(Start, End)) + 1); in parallel_sort()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblySetP2AlignOperands.cpp69 uint64_t P2Align = Log2_64((*MI.memoperands_begin())->getAlignment()); in RewriteP2Align()
/external/capstone/
DMathExtras.h281 static inline unsigned Log2_64(uint64_t Value) { in Log2_64() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
DBPFInstrInfo.cpp77 unsigned IterationNum = CopyLen >> Log2_64(Alignment); in expandMEMCPY()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64LegalizerInfo.cpp434 MIRBuilder.buildPtrMask(DstPtr, ListTmp, Log2_64(Align)); in legalizeVaArg()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonPatterns.td140 return isPowerOf2_64(V) && Log2_64(V) < 32;
145 return isPowerOf2_64(V) && Log2_64(V) >= 32;
150 return isPowerOf2_64(NV) && Log2_64(NV) < 32;
155 return isPowerOf2_64(NV) && Log2_64(NV) >= 32;
185 def Log2_64: SDNodeXForm<imm, [{
187 return CurDAG->getTargetConstant(Log2_64(V), SDLoc(N), MVT::i32);
197 return CurDAG->getTargetConstant(Log2_64(NV), SDLoc(N), MVT::i32);
1602 (S2_setbit_i (LoReg $Rss), (Log2_64 $V)))>;
1604 (Combinew (S2_setbit_i (HiReg $Rss), (UDEC32 (i32 (Log2_64 $V)))),
1609 (S2_togglebit_i (LoReg $Rss), (Log2_64 $V)))>;
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp437 Imm = Log2_64(Imm); in selectBinaryOp()
1747 Imm = Log2_64(Imm); in fastEmit_ri_()
1751 Imm = Log2_64(Imm); in fastEmit_ri_()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp626 Imm = Log2_64(Imm); in selectBinaryOp()
1940 Imm = Log2_64(Imm); in fastEmit_ri_()
1944 Imm = Log2_64(Imm); in fastEmit_ri_()
/external/llvm/lib/Target/Mips/
DMips64InstrInfo.td38 return getImm(N, Log2_64((unsigned) N->getZExtValue()));
43 return getImm(N, Log2_64((unsigned) (N->getZExtValue() >> 32)));
DMipsSEISelLowering.cpp812 DAG.getConstant(Log2_64(C), DL, ShiftTy)); in genConstMult()
815 uint64_t Floor = 1LL << Log2_64(C); in genConstMult()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsAsmPrinter.cpp509 O << Log2_64(MO.getImm()); in PrintAsmOperand()
DMips64InstrInfo.td33 return getImm(N, Log2_64((unsigned) N->getZExtValue()));
38 return getImm(N, Log2_64((unsigned) (N->getZExtValue() >> 32)));
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp4239 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
5028 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp4738 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
5532 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()
/external/clang/lib/AST/
DType.cpp89 return NumElements.getActiveBits() + llvm::Log2_64(ElementSize); in getNumAddressingBits()
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp3914 unsigned Imm = Log2_64(Mask); in optimizeCondBranch()
DAArch64ISelLowering.cpp3678 DAG.getConstant(Log2_64(Mask), dl, MVT::i64), in LowerBR_CC()
3694 DAG.getConstant(Log2_64(Mask), dl, MVT::i64), in LowerBR_CC()
7327 unsigned shift = Log2_64(NumBytes); in isLegalAddressingMode()
/external/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp1307 unsigned KnownBits = Log2_64(MaxGPUAlloc / MinGranularity); in LowerFrameIndex()

12