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);
114 const MCSubtargetInfo *getSubtargetInfo() const { return MSI.get(); }
  /external/llvm/lib/Transforms/Scalar/
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...]
LoopIdiomRecognize.cpp 151 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
755 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
757 if (!processLoopMemSet(MSI, BECount)) continue;
832 processLoopMemSet(MemSetInst *MSI, const SCEV *BECount) {
834 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) return false;
840 Value *Pointer = MSI->getDest();
850 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
860 if (Stride == 0 || MSI->getLength() != Stride->getValue())
864 MSI->getAlignment(), MSI->getValue()
    [all...]
ScalarReplAggregates.cpp 535 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
540 if (!isa<ConstantInt>(MSI->getValue()))
544 ConstantInt *Len = dyn_cast<ConstantInt>(MSI->getLength());
655 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
656 assert(MSI->getRawDest() == Ptr && "Consistency error!");
658 int64_t SNumBytes = cast<ConstantInt>(MSI->getLength())->getSExtValue();
661 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
682 MSI->eraseFromParent();
    [all...]
GVN.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp 460 } else if (MemberSpecializationInfo *MSI =
462 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/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 281 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
282 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
283 if (MSI->isVolatile()) return true;
413 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
414 if (isa<Constant>(MSI->getValue())) {
416 MSI->eraseFromParent();
417 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
419 Dead.push_back(std::make_pair(I, MSI));
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 241 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
242 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
    [all...]
SemaType.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 265 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
266 if (Instruction *I = SimplifyMemSet(MSI))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 755 milliseconds