Home
last modified time | relevance | path

Searched refs:isLoad (Results 1 – 25 of 85) sorted by relevance

1234

/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp69 bool &isLoad, bool &isStore) { in GetInstrType() argument
71 isFirst = isSingle = isCracked = isLoad = isStore = false; in GetInstrType()
78 isLoad = MCID.mayLoad(); in GetInstrType()
129 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
132 isLoad, isStore); in getHazardType()
171 if (isLoad && NumStores) { in getHazardType()
228 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
231 isLoad, isStore); in EmitInstruction()
DPPCHazardRecognizers.h64 bool &isLoad, bool &isStore);
/external/proguard/src/proguard/evaluation/
DBasicInvocationUnit.java49 private boolean isLoad; field in BasicInvocationUnit
146 isLoad = true; in invokeMember()
151 isLoad = false; in invokeMember()
156 isLoad = true; in invokeMember()
161 isLoad = false; in invokeMember()
188 if (!isLoad) in visitFieldrefConstant()
200 if (isLoad) in visitFieldrefConstant()
/external/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp329 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getPointerDependencyFrom() argument
341 return getSimplePointerDependencyFrom(MemLoc, isLoad, ScanIt, BB, QueryInst); in getPointerDependencyFrom()
396 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getSimplePointerDependencyFrom() argument
436 if (isLoad && QueryInst) { in getSimplePointerDependencyFrom()
532 if (isLoad) { in getSimplePointerDependencyFrom()
645 if (isLoad && FI->getOrdering() == AtomicOrdering::Release) in getSimplePointerDependencyFrom()
662 if (isLoad) in getSimplePointerDependencyFrom()
711 bool isLoad = !(MR & MRI_Mod); in getDependency() local
713 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start; in getDependency()
716 MemLoc, isLoad, ScanPos->getIterator(), QueryParent, QueryInst); in getDependency()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp330 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getPointerDependencyFrom() argument
342 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit); in getPointerDependencyFrom()
442 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getSimplePointerDependencyFrom() argument
448 return getSimplePointerDependencyFrom(MemLoc, isLoad, ScanIt, BB, QueryInst, in getSimplePointerDependencyFrom()
484 if (isLoad && QueryInst) { in getSimplePointerDependencyFrom()
579 if (isLoad) { in getSimplePointerDependencyFrom()
680 if (isLoad && FI->getOrdering() == AtomicOrdering::Release) in getSimplePointerDependencyFrom()
697 if (isLoad) in getSimplePointerDependencyFrom()
747 bool isLoad = !isModSet(MR); in getDependency() local
749 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start; in getDependency()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp284 bool &isLoad, bool &isStore) { in GetInstrType() argument
287 isLoad = MCID.mayLoad(); in GetInstrType()
337 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
340 isLoad, isStore); in getHazardType()
378 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType()
395 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
398 isLoad, isStore); in EmitInstruction()
DPPCHazardRecognizers.h93 bool &isLoad, bool &isStore);
/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp284 bool &isLoad, bool &isStore) { in GetInstrType() argument
287 isLoad = MCID.mayLoad(); in GetInstrType()
337 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
340 isLoad, isStore); in getHazardType()
378 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType()
395 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
398 isLoad, isStore); in EmitInstruction()
DPPCHazardRecognizers.h93 bool &isLoad, bool &isStore);
/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryDependenceAnalysis.cpp339 getPointerDependencyFrom(const AliasAnalysis::Location &MemLoc, bool isLoad, in getPointerDependencyFrom() argument
388 if (isLoad) { in getPointerDependencyFrom()
490 if (isLoad) in getPointerDependencyFrom()
541 bool isLoad = !(MR & AliasAnalysis::Mod); in getDependency() local
543 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start; in getDependency()
545 LocalCache = getPointerDependencyFrom(MemLoc, isLoad, ScanPos, in getDependency()
728 getNonLocalPointerDependency(const AliasAnalysis::Location &Loc, bool isLoad, in getNonLocalPointerDependency() argument
742 if (!getNonLocalPointerDepFromBB(Address, Loc, isLoad, FromBB, in getNonLocalPointerDependency()
757 bool isLoad, BasicBlock *BB, in GetNonLocalInfoForBlock() argument
790 ValueIsLoadPair CacheKey(Loc.Ptr, isLoad); in GetNonLocalInfoForBlock()
[all …]
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.cpp93 bool isLoad = false; in isLoadInstr() local
96 isLoad = (TSFlags == 1); in isLoadInstr()
97 if (isLoad) in isLoadInstr()
99 return isLoad; in isLoadInstr()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DMemoryDependenceAnalysis.h370 bool isLoad, BasicBlock *BB,
398 bool isLoad,
422 bool isLoad, BasicBlock *BB,
427 bool isLoad, BasicBlock *BB,
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DCalcSpillWeights.cpp178 bool isLoad = false; in CalculateWeightAndHint() local
179 if (LIS.isReMaterializable(li, 0, isLoad)) { in CalculateWeightAndHint()
180 if (isLoad) in CalculateWeightAndHint()
DLiveIntervalAnalysis.cpp928 if (RI->end.isLoad()) in addKillFlags()
980 bool &isLoad) { in isReMaterializable() argument
1027 bool &isLoad) { in isReMaterializable() argument
1028 isLoad = false; in isReMaterializable()
1042 isLoad |= DefIsLoad; in isReMaterializable()
1199 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete, in rewriteInstructionForSpills() argument
1236 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad)); in rewriteInstructionForSpills()
1237 if (isLoad) { in rewriteInstructionForSpills()
1422 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete, in rewriteInstructionsForSpills() argument
1549 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat, in rewriteInstructionsForSpills()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundChecker.cpp31 void checkLocation(SVal l, bool isLoad, const Stmt* S,
36 void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS, in checkLocation() argument
DNSErrorChecker.cpp163 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
203 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, in checkLocation() argument
206 if (!isLoad) in checkLocation()
DDereferenceChecker.cpp40 void checkLocation(SVal location, bool isLoad, const Stmt* S,
189 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S, in checkLocation() argument
232 ImplicitNullDerefEvent event = {l, isLoad, N, &C.getBugReporter(), in checkLocation()
DArrayBoundCheckerV2.cpp39 void checkLocation(SVal l, bool isLoad, const Stmt*S,
84 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad, in checkLocation() argument
/external/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h415 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
421 bool isLoad,
455 const MemoryLocation &Loc, bool isLoad,
461 const MemoryLocation &Loc, bool isLoad,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h448 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
455 bool isLoad,
490 const MemoryLocation &Loc, bool isLoad,
496 const MemoryLocation &Loc, bool isLoad,
/external/swiftshader/src/Reactor/
DOptimizer.cpp42 static bool isLoad(const Ice::Inst &instruction);
240 if(load->isDeleted() || !isLoad(*load)) in eliminateLoadsFollowingSingleStore()
371 bool isLoadInst = isLoad(inst); in optimizeStoresInSingleBasicBlock()
590 bool Optimizer::isLoad(const Ice::Inst &instruction) in isLoad() function in __anon5e84af970111::Optimizer
629 assert(isLoad(*instruction)); in loadAddress()
685 assert(isLoad(*load) && isStore(*store)); in loadTypeMatchesStore()
776 if(isLoad(*instruction)) in insert()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DLiveIntervalAnalysis.h293 bool &isLoad);
380 bool &isLoad);
441 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
450 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
DMachineMemOperand.h140 bool isLoad() const { return Flags & MOLoad; } in isLoad() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineOperand.cpp991 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
1067 assert((isLoad() || isStore()) && in print()
1069 if (isLoad()) in print()
1083 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1086 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
/external/capstone/arch/Sparc/
DSparcDisassembler.c253 bool isLoad, DecodeFunc DecodeRD) in DecodeMem() argument
267 if (isLoad) { in DecodeMem()
287 if (!isLoad) { in DecodeMem()

1234