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

  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 66 std::unique_ptr<const llvm::MCSubtargetInfo> MSI;
90 const MCSubtargetInfo *mSI,
100 MSI.reset(mSI);
118 const MCSubtargetInfo *getSubtargetInfo() const { return MSI.get(); }
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 145 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
146 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
147 if (MSI->isVolatile())
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 229 void addMemSet(int64_t OffsetFromFirst, MemSetInst *MSI) {
230 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
231 addRange(OffsetFromFirst, Size, MSI->getDest(), MSI->getAlignment(), MSI);
412 MemSetInst *MSI = cast<MemSetInst>(BI);
414 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
415 !isa<ConstantInt>(MSI->getLength()))
420 if (!IsPointerOffset(StartPtr, MSI->getDest(), Offset, *DL)
    [all...]
LoopIdiomRecognize.cpp 150 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
754 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
756 if (!processLoopMemSet(MSI, BECount)) continue;
831 processLoopMemSet(MemSetInst *MSI, const SCEV *BECount) {
833 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) return false;
839 Value *Pointer = MSI->getDest();
849 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
859 if (!Stride || MSI->getLength() != Stride->getValue())
863 MSI->getAlignment(), MSI->getValue()
    [all...]
ScalarReplAggregates.cpp 537 if (MemSetInst *MSI = dyn_cast<MemSetInst>(UI)) {
542 if (!isa<ConstantInt>(MSI->getValue()))
546 ConstantInt *Len = dyn_cast<ConstantInt>(MSI->getLength());
657 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
658 assert(MSI->getRawDest() == Ptr && "Consistency error!");
660 int64_t SNumBytes = cast<ConstantInt>(MSI->getLength())->getSExtValue();
663 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
684 MSI->eraseFromParent();
    [all...]
GVN.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp 540 } else if (MemberSpecializationInfo *MSI =
542 TSK = MSI->getTemplateSpecializationKind();
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 458 MessageSendInfo &MSI) = 0;
465 MessageSendInfo &MSI) = 0;
589 MessageSendInfo &MSI) override {
599 llvm::Value *cmd, MessageSendInfo &MSI) override {
647 MessageSendInfo &MSI) override {
    [all...]
CGObjCMac.cpp     [all...]
  /external/chromium_org/chrome/installer/util/
installation_validator_unittest.cc 50 MSI
204 if (vehicle == MSI)
  /external/llvm/lib/Analysis/
Lint.cpp 310 MemSetInst *MSI = cast<MemSetInst>(&I);
312 visitMemoryReference(I, MSI->getDest(), AliasAnalysis::UnknownSize,
313 MSI->getAlignment(), nullptr,
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 213 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
214 if (isa<Constant>(MSI->getValue())) {
216 MSI->eraseFromParent();
217 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
219 Dead.push_back(std::make_pair(I, MSI));
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 226 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
227 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
    [all...]
SemaType.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 267 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
268 if (Instruction *I = SimplifyMemSet(MSI))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]

Completed in 528 milliseconds