Searched defs:mayStore (Results 1 - 6 of 6) sorted by relevance
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonShuffler.h | 92 bool mayStore() const { return (Store); }; function in class:llvm::HexagonCVIResource
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
H A D | MCInstrDesc.h | 415 /// mayStore - Return true if this instruction could possibly modify memory. 419 bool mayStore() const { function in class:llvm::MCInstrDesc 429 /// 2. Memory accesses. Use mayLoad/mayStore.
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
H A D | CodeGenInstruction.h | 228 bool mayLoad, mayStore; member in class:llvm::CodeGenInstruction
|
H A D | CodeGenDAGPatterns.cpp | 2369 bool &mayStore; member in class:InstAnalyzer 2377 : CDP(cdp), mayStore(maystore), mayLoad(mayload), IsBitcast(isbc), 2398 if (HasSideEffects || mayLoad || mayStore || IsVariadic) 2427 if (CP.hasProperty(SDNPMayStore)) mayStore = true; 2449 if (OpInfo.hasProperty(SDNPMayStore)) mayStore = true; 2460 mayStore = true;// Intrinsics that can write to memory are 'mayStore'. 2481 // InstAnalyzer only correctly analyzes mayStore/mayLoad so far. 2482 if (Inst.mayStore) { // If the .td file explicitly sets mayStore, us [all...] |
/external/llvm/include/llvm/MC/ |
H A D | MCInstrDesc.h | 356 bool mayStore() const { return Flags & (1 << MCID::MayStore); } function in class:llvm::MCInstrDesc 364 /// 2. Memory accesses. Use mayLoad/mayStore.
|
/external/llvm/utils/TableGen/ |
H A D | CodeGenDAGPatterns.cpp | 2743 bool mayStore; member in class:InstAnalyzer 2749 : CDP(cdp), hasSideEffects(false), mayStore(false), mayLoad(false), 2763 if (hasSideEffects || mayLoad || mayStore || isVariadic) 2793 if (CP.hasProperty(SDNPMayStore)) mayStore = true; 2812 if (N->NodeHasProperty(SDNPMayStore, CDP)) mayStore = true; 2823 mayStore = true;// Intrinsics that can write to memory are 'mayStore'. 2855 if (InstInfo.mayStore != PatInfo.mayStore && !InstInfo.mayStore_Unset) { 2857 PrintError(PatDef->getLoc(), "Pattern doesn't match mayStore [all...] |
Completed in 1146 milliseconds