HomeSort by relevance Sort by last modified time
    Searched refs:MSI (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 67 llvm::OwningPtr<const llvm::MCSubtargetInfo> MSI;
87 const MCSubtargetInfo *mSI,
96 MSI.reset(mSI);
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 83 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
251 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
253 if (!processLoopMemSet(MSI, BECount)) continue;
328 processLoopMemSet(MemSetInst *MSI, const SCEV *BECount) {
330 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) return false;
336 Value *Pointer = MSI->getDest();
346 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
356 if (Stride == 0 || MSI->getLength() != Stride->getValue())
360 MSI->getAlignment(), MSI->getValue()
    [all...]
MemCpyOptimizer.cpp 218 void addMemSet(int64_t OffsetFromFirst, MemSetInst *MSI) {
219 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
220 addRange(OffsetFromFirst, Size, MSI->getDest(), MSI->getAlignment(), MSI);
401 MemSetInst *MSI = cast<MemSetInst>(BI);
403 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
404 !isa<ConstantInt>(MSI->getLength()))
409 if (!IsPointerOffset(StartPtr, MSI->getDest(), Offset, *TD)
    [all...]
ScalarReplAggregates.cpp 470 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
472 if (!isa<ConstantInt>(MSI->getValue()))
476 ConstantInt *Len = dyn_cast<ConstantInt>(MSI->getLength());
575 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
576 assert(MSI->getRawDest() == Ptr && "Consistency error!");
577 int64_t SNumBytes = cast<ConstantInt>(MSI->getLength())->getSExtValue();
580 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
601 MSI->eraseFromParent();
    [all...]
GVN.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp 511 } else if (MemberSpecializationInfo *MSI =
513 TSK = MSI->getTemplateSpecializationKind();
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 310 MemSetInst *MSI = cast<MemSetInst>(&I);
312 visitMemoryReference(I, MSI->getDest(), AliasAnalysis::UnknownSize,
313 MSI->getAlignment(), 0,
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 248 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
249 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
    [all...]
SemaType.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 275 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
276 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
277 if (MSI->isVolatile()) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 238 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
239 if (Instruction *I = SimplifyMemSet(MSI))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 212 milliseconds