HomeSort by: relevance | last modified time | path
    Searched defs:Memset (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
LoopIdiomRecognize.h 32 /// When true, Memset is disabled.
33 static bool Memset;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerIntrinsics.cpp 107 case Intrinsic::memset: {
108 auto *Memset = cast<MemSetInst>(Inst);
109 if (shouldExpandOperationWithSize(Memset->getLength())) {
110 expandMemSetAsLoop(Memset);
112 Memset->eraseFromParent();
155 case Intrinsic::memset:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 110 STATISTIC(NumMemSet, "Number of memset's formed from loop stores");
125 bool DisableLIRP::Memset;
127 DisableLIRPMemset("disable-" DEBUG_TYPE "-memset",
129 "not convert loop(s) to memset."),
130 cl::location(DisableLIRP::Memset), cl::init(false),
190 Memset,
367 if (Name == "memset" || Name == "memcpy")
515 // See if the store can be turned into a memset.
518 // turned into a memset of i8 -1, assuming that all the consecutive bytes
519 // are stored. A store of i32 0x01020304 can never be turned into a memset,
    [all...]

Completed in 17 milliseconds