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

1 2

  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 67 std::unique_ptr<const llvm::MCSubtargetInfo> MSI;
90 const MCRegisterInfo *mRI, const MCSubtargetInfo *mSI,
98 MSI.reset(mSI);
116 const MCSubtargetInfo *getSubtargetInfo() const { return MSI.get(); }
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 350 bool AliasSetTracker::add(MemSetInst *MSI) {
352 MSI->getAAMetadata(AAInfo);
357 if (ConstantInt *C = dyn_cast<ConstantInt>(MSI->getLength()))
363 addPointer(MSI->getRawDest(), Len, AAInfo, AliasSet::ModAccess, NewPtr);
364 if (MSI->isVolatile())
394 if (MemSetInst *MSI = dyn_cast<MemSetInst>(I))
395 return add(MSI);
507 bool AliasSetTracker::remove(MemSetInst *MSI) {
509 MSI->getAAMetadata(AAInfo);
512 if (ConstantInt *C = dyn_cast<ConstantInt>(MSI->getLength())
    [all...]
Lint.cpp 315 MemSetInst *MSI = cast<MemSetInst>(&I);
317 visitMemoryReference(I, MSI->getDest(), MemoryLocation::UnknownSize,
318 MSI->getAlignment(), nullptr, MemRef::Write);
  /external/swiftshader/third_party/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 468 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
470 if (!isa<ConstantInt>(MSI->getValue()))
474 ConstantInt *Len = dyn_cast<ConstantInt>(MSI->getLength());
573 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
574 assert(MSI->getRawDest() == Ptr && "Consistency error!");
575 unsigned NumBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
577 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
598 MSI->eraseFromParent();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 224 void addMemSet(int64_t OffsetFromFirst, MemSetInst *MSI) {
225 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
226 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, DL)
    [all...]
LoopIdiomRecognize.cpp 113 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
489 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
491 if (!processLoopMemSet(MSI, BECount))
647 bool LoopIdiomRecognize::processLoopMemSet(MemSetInst *MSI,
650 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength()))
657 Value *Pointer = MSI->getDest();
667 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
683 Value *SplatValue = MSI->getValue();
688 MSIs.insert(MSI);
    [all...]
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 152 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
153 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
154 if (MSI->isVolatile())
Evaluator.cpp 368 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
369 if (MSI->isVolatile()) {
374 Constant *Ptr = getVal(MSI->getDest());
375 Constant *Val = getVal(MSI->getValue());
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 339 bool add(MemSetInst *MSI);
352 bool remove(MemSetInst *MSI);
  /prebuilts/go/darwin-x86/src/text/template/
exec_test.go 42 MSI map[string]int
123 MSI: map[string]int{"one": 1, "two": 2, "three": 3},
267 {"map .one", "{{.MSI.one}}", "1", tVal, true},
268 {"map .two", "{{.MSI.two}}", "2", tVal, true},
269 {"map .NO", "{{.MSI.NO}}", "<no value>", tVal, true},
271 {"map .WRONG args", "{{.MSI.one 1}}", "", tVal, false},
390 {"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
440 {"map[one]", "{{index .MSI `one`}}", "1", tVal, true},
441 {"map[two]", "{{index .MSI `two`}}", "2", tVal, true},
442 {"map[NO]", "{{index .MSI `XXX`}}", "0", tVal, true}
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
exec_test.go 42 MSI map[string]int
123 MSI: map[string]int{"one": 1, "two": 2, "three": 3},
267 {"map .one", "{{.MSI.one}}", "1", tVal, true},
268 {"map .two", "{{.MSI.two}}", "2", tVal, true},
269 {"map .NO", "{{.MSI.NO}}", "<no value>", tVal, true},
271 {"map .WRONG args", "{{.MSI.one 1}}", "", tVal, false},
390 {"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
440 {"map[one]", "{{index .MSI `one`}}", "1", tVal, true},
441 {"map[two]", "{{index .MSI `two`}}", "2", tVal, true},
442 {"map[NO]", "{{index .MSI `XXX`}}", "0", tVal, true}
    [all...]
  /external/clang/lib/AST/
Decl.cpp 552 } else if (MemberSpecializationInfo *MSI =
554 TSK = MSI->getTemplateSpecializationKind();
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 484 MessageSendInfo &MSI) = 0;
492 MessageSendInfo &MSI) = 0;
620 MessageSendInfo &MSI) override {
631 llvm::Value *cmd, MessageSendInfo &MSI) override {
683 MessageSendInfo &MSI) override {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
facp.asl 85 MSI Not Supported (V4) : 0
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 354 void add(MemSetInst *MSI);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Lint.cpp 305 MemSetInst *MSI = cast<MemSetInst>(&I);
307 visitMemoryReference(I, MSI->getDest(), AliasAnalysis::UnknownSize,
308 MSI->getAlignment(), 0,

Completed in 1419 milliseconds

1 2