Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp241 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getPointerDependencyFrom() argument
254 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, BatchAA); in getPointerDependencyFrom()
269 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getPointerDependencyFrom() argument
272 return getPointerDependencyFrom(MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, in getPointerDependencyFrom()
364 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getSimplePointerDependencyFrom() argument
405 if (isLoad && QueryInst) { in getSimplePointerDependencyFrom()
509 if (isLoad) { in getSimplePointerDependencyFrom()
609 if (isLoad && FI->getOrdering() == AtomicOrdering::Release) in getSimplePointerDependencyFrom()
626 if (isLoad) in getSimplePointerDependencyFrom()
677 bool isLoad = !isModSet(MR); in getDependency() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp281 bool &isLoad, bool &isStore) { in GetInstrType() argument
284 isLoad = MCID.mayLoad(); in GetInstrType()
334 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local
337 isLoad, isStore); in getHazardType()
375 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType()
392 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local
395 isLoad, isStore); in EmitInstruction()
H A DPPCHazardRecognizers.h92 bool &isLoad, bool &isStore);
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp45 void checkLocation(SVal l, bool isLoad, const Stmt *S,
70 void NonnullGlobalConstantsChecker::checkLocation(SVal location, bool isLoad, in checkLocation() argument
74 if (!isLoad || !location.isValid()) in checkLocation()
H A 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
H A DNSErrorChecker.cpp174 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
213 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, in checkLocation() argument
216 if (!isLoad) in checkLocation()
H A DDereferenceChecker.cpp46 void checkLocation(SVal location, bool isLoad, const Stmt* S,
238 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S, in checkLocation() argument
274 ImplicitNullDerefEvent event = {l, isLoad, N, &C.getBugReporter(), in checkLocation()
H A DArrayBoundCheckerV2.cpp43 void checkLocation(SVal l, bool isLoad, const Stmt*S,
117 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad, in checkLocation() argument
H A DObjCSelfInitChecker.cpp74 void checkLocation(SVal location, bool isLoad, const Stmt *S,
302 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad, in checkLocation() argument
H A DObjCSuperDeallocChecker.cpp46 void checkLocation(SVal l, bool isLoad, const Stmt *S,
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h448 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
454 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
462 getSimplePointerDependencyFrom(const MemoryLocation &MemLoc, bool isLoad,
492 const MemoryLocation &Loc, bool isLoad,
499 const MemoryLocation &Loc, bool isLoad,
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineOperand.cpp1076 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand()
1162 assert((isLoad() || isStore()) && in print()
1164 if (isLoad()) in print()
1182 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1185 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
1229 OS << ((isLoad() && isStore()) ? " on " in print()
1230 : isLoad() ? " from " in print()
H A DMachineVerifier.cpp1599 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad()) || in verifyPreISelGenericInstruction()
1600 (MMOs[1]->isStore() || !MMOs[1]->isLoad())) { in verifyPreISelGenericInstruction()
1636 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad())) { in verifyPreISelGenericInstruction()
1802 if (Op->isLoad() && !MI->mayLoad()) in visitMachineInstrBefore()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/cert/
H A DInvalidPtrChecker.cpp77 void checkLocation(SVal l, bool isLoad, const Stmt *S,
250 void InvalidPtrChecker::checkLocation(SVal Loc, bool isLoad, const Stmt *S, in checkLocation() argument
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp144 bool isLoad() const { return Access == AccessTy::Load; } in isLoad() function in __anone3adc0e60111::MOVEMState
187 if (State.isLoad()) { in Finish()
/openbsd-src/gnu/llvm/llvm/lib/Target/VE/Disassembler/
H A DVEDisassembler.cpp372 const MCDisassembler *Decoder, bool isLoad, in DecodeMem() argument
377 if (isLoad) { in DecodeMem()
387 if (!isLoad) { in DecodeMem()
396 const MCDisassembler *Decoder, bool isLoad, in DecodeMemAS() argument
401 if (isLoad) { in DecodeMemAS()
411 if (!isLoad) { in DecodeMemAS()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp53 static bool isLoad(int Opcode) { in isLoad() function
71 if (isLoad(Opcode)) { in isLoadFromStackSlot()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp322 SVal loc, bool isLoad, const Stmt *NodeEx, in CheckLocationContext()
325 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx), in CheckLocationContext()
350 SVal location, bool isLoad, in runCheckersForLocation() argument
354 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx, in runCheckersForLocation()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h333 bool isLoad,
492 CheckerFn<void (const SVal &location, bool isLoad, const Stmt *S,
H A DChecker.h197 const SVal &location, bool isLoad, const Stmt *S, in _checkLocation() argument
199 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C); in _checkLocation()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp735 bool isLoad() const { in isLoad() function in __anon76457fe20311::EarlyCSE::ParseMemoryInst
1155 if (MemInst.isLoad() && !InVal.IsAtomic && MemInst.isAtomic()) in getMatchingValue()
1161 bool MemInstMatching = !MemInst.isLoad(); in getMatchingValue()
1445 if (MemInst.isValid() && MemInst.isLoad()) { in processNode()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h287 bool isLoad() const { return FlagVals & MOLoad; } in isLoad() function
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTargetBuiltins.h272 bool isLoad() const { return Flags & IsLoad; } in isLoad() function
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp933 return isLoad() || isStore() || isAtomic() || hasNoUse() || in hasPredCode()
940 if (!isLoad() && !isStore() && !isAtomic()) { in getPredCode()
948 if (!isLoad() && !isStore()) { in getPredCode()
960 if (isLoad() + isStore() + isAtomic() > 1) in getPredCode()
964 if (isLoad()) { in getPredCode()
1044 if (isLoad() || isStore() || isAtomic()) { in getPredCode()
1114 if (isLoad() || isStore()) { in getPredCode()
1115 StringRef SDNodeName = isLoad() ? "LoadSDNode" : "StoreSDNode"; in getPredCode()
1123 if (isLoad()) { in getPredCode()
1212 bool TreePredicateFn::isLoad() const { in isLoad() function in TreePredicateFn
[all …]
H A DGlobalISelEmitter.cpp344 if (Predicate.isLoad() && Predicate.getMemoryVT()) in isTrivialOperatorNode()
347 if (Predicate.isLoad() || Predicate.isStore()) { in isTrivialOperatorNode()
352 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in isTrivialOperatorNode()
3796 (Predicate.isLoad() || Predicate.isAtomic()) && in getEquivNode()
3800 (Predicate.isLoad() || Predicate.isAtomic()) && in getEquivNode()
3842 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates()
3868 if (Predicate.isLoad() && Predicate.isNonExtLoad()) { in addBuiltinPredicates()
3873 if (Predicate.isLoad() && Predicate.isAnyExtLoad()) { in addBuiltinPredicates()
3917 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) { in addBuiltinPredicates()
3929 if (Predicate.isLoad() || Predicate.isStore()) { in addBuiltinPredicates()

12