HomeSort by: relevance | last modified time | path
    Searched refs:Log2 (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 30 unsigned StoresNumEstimate = alignTo(CopyLen, Alignment) >> Log2(Alignment);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBasicBlockInfo.h 34 if (KnownBits < Log2(Alignment))
105 return std::max(Log2(std::max(PostAlign, Align)), internalKnownBits());
ARMConstantIslandPass.cpp 333 << " ua=" << unsigned(BBI.Unalign) << " pa=" << Log2(BBI.PostAlign)
519 const unsigned MaxLogAlign = Log2(MaxAlign);
552 unsigned LogAlign = Log2(Alignment);
726 BBInfo.front().KnownBits = Log2(MF->getAlignment());
828 const unsigned LogCPEAlign = Log2(CPEAlign);
1094 UserOffset += Growth + UnknownPadding(MF->getAlignment(), Log2(CPEAlign));
1383 << " la=" << Log2(Align) << " kb=" << KnownBits
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySetP2AlignOperands.cpp 68 uint64_t P2Align = Log2((*MI.memoperands_begin())->getAlign());
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerTracePC.h 293 uint32_t Log2 = Log(A);
294 if (Log2 < 3) return A;
295 Log2 -= 3;
296 return (Log2 + 1) * 8 + ((A >> Log2) & 7);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 182 if (Log2(Block.Alignment) > Position.KnownBits) {
187 Position.KnownBits = Log2(Block.Alignment);
278 BlockPosition Position(Log2(MF->getAlignment()));
342 BlockPosition Position(Log2(MF->getAlignment()));
443 BlockPosition Position(Log2(MF->getAlignment()));
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
GISelKnownBits.h 89 Known.Zero.setLowBits(Log2(Alignment));
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 684 unsigned Log2 = MostSignificantSetBitIndex(GetPageSizeCached() / Size);
685 Size <<= Log2;
686 NumBuckets <<= Log2;
sanitizer_allocator_primary64.h 420 counter_size_bits_log = Log2(counter_size_bits);
425 packing_ratio_log = Log2(packing_ratio);
475 page_size_scaled_log(Log2(GetPageSizeCached() >> kCompactPtrScale)) {}
563 const uptr page_size_scaled_log = Log2(page_size_scaled);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Alignment.h 41 uint8_t ShiftValue = 0; /// The log2 of the required alignment.
45 friend unsigned Log2(Align);
206 /// Returns the log2 of the alignment.
207 inline unsigned Log2(Align A) { return A.ShiftValue; }
  /src/external/gpl3/gcc/dist/contrib/
compare_two_ftime_report_sets 68 compare_two_ftime_report_sets "Log1/*perf" "Log2/*perf"
72 compare_two_ftime_report_sets "Log1/*perf" "Log2/*perf" "^phase parsing" 75
  /src/external/gpl3/gcc.old/dist/contrib/
compare_two_ftime_report_sets 68 compare_two_ftime_report_sets "Log1/*perf" "Log2/*perf"
72 compare_two_ftime_report_sets "Log1/*perf" "Log2/*perf" "^phase parsing" 75
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_primary64.h 342 counter_size_bits_log = Log2(counter_size_bits);
347 packing_ratio_log = Log2(packing_ratio);
408 page_size_scaled_log(Log2(GetPageSizeCached() >> kCompactPtrScale)),
496 const uptr page_size_scaled_log = Log2(page_size_scaled);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsNaClELFStreamer.cpp 273 S->emitBundleAlignMode(Log2(MIPS_NACL_BUNDLE_ALIGN));
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_primary64.h 420 counter_size_bits_log = Log2(counter_size_bits);
425 packing_ratio_log = Log2(packing_ratio);
475 page_size_scaled_log(Log2(GetPageSizeCached() >> kCompactPtrScale)) {}
563 const uptr page_size_scaled_log = Log2(page_size_scaled);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 637 int32_t Log2 = ImmValue.exactLogBase2();
639 if (Log2 != -1) {
640 Imm = CurDAG->getTargetConstant(Log2, SDLoc(N), EltTy);
724 int32_t Log2 = (~ImmValue).exactLogBase2();
726 if (Log2 != -1) {
727 Imm = CurDAG->getTargetConstant(Log2, SDLoc(N), EltTy);
MipsConstantIslandPass.cpp 531 // MachineConstantPool measures alignment in bytes. We measure in log2(bytes).
546 SmallVector<MachineBasicBlock::iterator, 8> InsPoint(Log2(MaxAlign) + 1,
563 unsigned LogAlign = Log2(Alignment);
574 for (unsigned a = LogAlign + 1; a <= Log2(MaxAlign); ++a)
615 /// represented by CPEMI. Alignment is measured in log2(bytes) units.
1259 << " la=" << Log2(Align) << '\n');
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 290 return (int)Log2(Offset) << (int)ELF::STO_PPC64_LOCAL_BIT;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 597 // log2(X * 0.5) * Y = log2(X) * Y - Y
599 IntrinsicInst *Log2 = nullptr;
600 if (match(Op0, m_OneUse(m_Intrinsic<Intrinsic::log2>(
602 Log2 = cast<IntrinsicInst>(Op0);
605 if (match(Op1, m_OneUse(m_Intrinsic<Intrinsic::log2>(
607 Log2 = cast<IntrinsicInst>(Op1);
610 if (Log2) {
611 Value *Log2 = Builder.CreateUnaryIntrinsic(Intrinsic::log2, X, &I)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_thread.cc 208 uptr stack_size_log = Log2(RoundUpToPowerOfTwo(stack_size));
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.cpp 207 unsigned LogA = Log2(BoundAlignment);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_thread.cpp 216 uptr stack_size_log = Log2(RoundUpToPowerOfTwo(stack_size));
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DataLayout.cpp 565 assert(Log2(abi_align) < 16 && Log2(pref_align) < 16 && "Alignment too big");
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
HIP.cpp 186 ObjStream << " .p2align " << llvm::Log2(llvm::Align(HIPCodeObjectAlign))
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOModule.cpp 421 uint32_t attr = go ? Log2(go->getAlign().valueOrOne()) : 0;

Completed in 59 milliseconds

1 2 3