/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/ |
D | Disassembler.h | 66 std::unique_ptr<const llvm::MCSubtargetInfo> MSI; variable 91 std::unique_ptr<const MCSubtargetInfo> &&MSI, in LLVMDisasmContext() argument 98 MAI(std::move(MAI)), MRI(std::move(MRI)), MSI(std::move(MSI)), in LLVMDisasmContext() 113 const MCSubtargetInfo *getSubtargetInfo() const { return MSI.get(); } in getSubtargetInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 180 void addMemSet(int64_t OffsetFromFirst, MemSetInst *MSI) { in addMemSet() argument 181 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue(); in addMemSet() 182 addRange(OffsetFromFirst, Size, MSI->getDest(), MSI->getDestAlignment(), MSI); in addMemSet() 346 MemSetInst *MSI = cast<MemSetInst>(BI); in INITIALIZE_PASS_DEPENDENCY() local 348 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY() 349 !isa<ConstantInt>(MSI->getLength())) in INITIALIZE_PASS_DEPENDENCY() 353 Optional<int64_t> Offset = isPointerOffset(StartPtr, MSI->getDest(), DL); in INITIALIZE_PASS_DEPENDENCY() 357 Ranges.addMemSet(*Offset, MSI); in INITIALIZE_PASS_DEPENDENCY() 699 bool MemCpyOptPass::processMemSet(MemSetInst *MSI, BasicBlock::iterator &BBI) { in processMemSet() argument 702 if (isa<ConstantInt>(MSI->getLength()) && !MSI->isVolatile()) in processMemSet() [all …]
|
D | LoopIdiomRecognize.cpp | 172 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount); 585 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) { in runOnLoopBlock() local 587 if (!processLoopMemSet(MSI, BECount)) in runOnLoopBlock() 747 bool LoopIdiomRecognize::processLoopMemSet(MemSetInst *MSI, in processLoopMemSet() argument 750 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) in processLoopMemSet() 757 Value *Pointer = MSI->getDest(); in processLoopMemSet() 767 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue(); in processLoopMemSet() 783 Value *SplatValue = MSI->getValue(); in processLoopMemSet() 788 MSIs.insert(MSI); in processLoopMemSet() 791 Pointer, (unsigned)SizeInBytes, MaybeAlign(MSI->getDestAlignment()), in processLoopMemSet() [all …]
|
D | InferAddressSpaces.cpp | 793 if (auto *MSI = dyn_cast<MemSetInst>(MI)) { in handleMemIntrinsicPtrUse() local 794 B.CreateMemSet(NewV, MSI->getValue(), MSI->getLength(), in handleMemIntrinsicPtrUse() 795 MaybeAlign(MSI->getDestAlignment()), in handleMemIntrinsicPtrUse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64StackTagging.cpp | 117 bool addMemSet(uint64_t Offset, MemSetInst *MSI) { in addMemSet() argument 118 uint64_t StoreSize = cast<ConstantInt>(MSI->getLength())->getZExtValue(); in addMemSet() 119 if (!addRange(Offset, Offset + StoreSize, MSI)) in addMemSet() 121 IRBuilder<> IRB(MSI); in addMemSet() 123 cast<ConstantInt>(MSI->getValue())); in addMemSet() 372 MemSetInst *MSI = cast<MemSetInst>(BI); in collectInitializers() local 374 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) in collectInitializers() 377 if (!isa<ConstantInt>(MSI->getValue())) in collectInitializers() 381 Optional<int64_t> Offset = isPointerOffset(StartPtr, MSI->getDest(), *DL); in collectInitializers() 385 if (!IB.addMemSet(*Offset, MSI)) in collectInitializers() [all …]
|
/third_party/python/Doc/library/ |
D | msilib.rst | 29 routines, low-level MSI routines, higher-level MSI routines, and standard table 42 Callbacks to Python for the various steps of MSI creation are currently not 55 name of the MSI file; *persist* can be one of the constants 87 The *table* argument must be one of the predefined tables in the MSI schema, 121 Return a new UUID, in the format that MSI typically requires (i.e. in curly 321 All wrappers around MSI functions raise :exc:`MSIError`; the string inside the 333 The class :class:`CAB` represents a CAB file. During MSI construction, files 336 MSI file. 338 *name* is the name of the CAB file in the MSI file. 353 Generate a CAB file, add it as a stream to the MSI file, put it into the [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 162 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) { in analyzeGlobalAux() local 163 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!"); in analyzeGlobalAux() 164 if (MSI->isVolatile()) in analyzeGlobalAux()
|
D | VNCoercion.cpp | 471 if (MemSetInst *MSI = dyn_cast<MemSetInst>(SrcInst)) { in getMemInstValueForLoadHelper() local 474 T *Val = cast<T>(MSI->getValue()); in getMemInstValueForLoadHelper() 531 if (auto *MSI = dyn_cast<MemSetInst>(SrcInst)) in getConstantMemInstValueForLoad() local 532 if (!isa<Constant>(MSI->getValue())) in getConstantMemInstValueForLoad()
|
D | Evaluator.cpp | 495 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) { in EvaluateBlock() local 496 if (MSI->isVolatile()) { in EvaluateBlock() 501 Constant *Ptr = getVal(MSI->getDest()); in EvaluateBlock() 502 Constant *Val = getVal(MSI->getValue()); in EvaluateBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | AliasSetTracker.cpp | 425 void AliasSetTracker::add(AnyMemSetInst *MSI) { in add() argument 426 addPointer(MemoryLocation::getForDest(MSI), AliasSet::ModAccess); in add() 469 if (AnyMemSetInst *MSI = dyn_cast<AnyMemSetInst>(I)) in add() local 470 return add(MSI); in add()
|
D | Lint.cpp | 358 MemSetInst *MSI = cast<MemSetInst>(&I); in visitCallSite() local 360 visitMemoryReference(I, MSI->getDest(), MemoryLocation::UnknownSize, in visitCallSite() 361 MSI->getDestAlignment(), nullptr, MemRef::Write); in visitCallSite()
|
/third_party/python/Tools/msi/ |
D | buildrelease.bat | 27 rem {msi} MSI filename core.msi 221 echo --skip-msi Do not build executable/MSI packages 239 echo {msi} MSI filename core.msi
|
D | build.bat | 47 rem Build the launcher MSI separately
|
D | README.txt | 43 CAB and MSI files and a single EXE. 49 Each MSI contains the logic required to install a component or feature 54 embedded into their associated MSI and are never seen by users. 58 associated MSI is not downloaded. This allows the installer to offer 236 single MSI. Packages are built with the WiX Toolset. Some project files 320 MSI packages are installed or uninstalled based on their current state
|
/third_party/python/Tools/ |
D | README | 22 msi Support for packaging Python as an MSI package on Windows.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | AliasSetTracker.h | 381 void add(AnyMemSetInst *MSI);
|
/third_party/node/deps/npm/ |
D | README.md | 33 [Get the MSI](https://nodejs.org/en/download/). npm is in it.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 220 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) { in CleanupPointerRootUsers() local 221 if (isa<Constant>(MSI->getValue())) { in CleanupPointerRootUsers() 223 MSI->eraseFromParent(); in CleanupPointerRootUsers() 224 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) { in CleanupPointerRootUsers() 226 Dead.push_back(std::make_pair(I, MSI)); in CleanupPointerRootUsers()
|
/third_party/pulseaudio/src/modules/alsa/ |
D | 90-pulseaudio.rules | 85 # MSI X360
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 1669 const MemSetInst *MSI = cast<MemSetInst>(II); in fastLowerIntrinsicCall() local 1671 if (MSI->isVolatile()) in fastLowerIntrinsicCall() 1673 if (!MSI->getLength()->getType()->isIntegerTy(32)) in fastLowerIntrinsicCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 2555 const MemSetInst &MSI = cast<MemSetInst>(I); in SelectIntrinsicCall() local 2557 if (MSI.isVolatile()) in SelectIntrinsicCall() 2560 if (!MSI.getLength()->getType()->isIntegerTy(32)) in SelectIntrinsicCall() 2563 if (MSI.getDestAddressSpace() > 255) in SelectIntrinsicCall()
|
/third_party/eudev/hwdb/ |
D | 60-keyboard.hwdb | 1193 # some MSI models generate ACPI/input events on the LNXVIDEO input devices, 1204 # MSI Wind U90/U100 generates separate touchpad on/off keycodes so ignore touchpad toggle keycode 1209 # MSI 1212 evdev:name:MSI Laptop hotkeys:dmi:bvn*:bvr*:bd*:svn*:pnM[iI][cC][rR][oO]-S[tT][aA][rR]*:pvr*
|
D | 60-sensor.hwdb | 442 # MSI
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 2754 const MemSetInst *MSI = cast<MemSetInst>(II); in fastLowerIntrinsicCall() local 2756 if (MSI->isVolatile()) in fastLowerIntrinsicCall() 2760 if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth)) in fastLowerIntrinsicCall() 2763 if (MSI->getDestAddressSpace() > 255) in fastLowerIntrinsicCall()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a3.rst | 400 couldn't open or create an MSI file. Initial patch by William Tisäter. 1427 Implement the ``Database.Close()`` method to help closing MSI database
|