Searched refs:isLoad (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp30 void checkLocation(SVal l, bool isLoad, const Stmt* S,
35 void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS, argument
H A DNonnullGlobalConstantsChecker.cpp44 void checkLocation(SVal l, bool isLoad, const Stmt *S,
69 void NonnullGlobalConstantsChecker::checkLocation(SVal location, bool isLoad, argument
73 if (!isLoad || !location.isValid())
H A DNSErrorChecker.cpp162 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
201 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, argument
204 if (!isLoad)
H A DDereferenceChecker.cpp39 void checkLocation(SVal location, bool isLoad, const Stmt* S,
194 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S, argument
236 ImplicitNullDerefEvent event = {l, isLoad, N, &C.getBugReporter(),
277 ImplicitNullDerefEvent event = {V, /*isLoad=*/true, N,
H A DObjCSelfInitChecker.cpp74 void checkLocation(SVal location, bool isLoad, const Stmt *S,
300 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad, argument
H A DArrayBoundCheckerV2.cpp41 void checkLocation(SVal l, bool isLoad, const Stmt*S,
115 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad, argument
H A DObjCSuperDeallocChecker.cpp46 void checkLocation(SVal l, bool isLoad, const Stmt *S,
H A DMallocChecker.cpp372 void checkLocation(SVal l, bool isLoad, const Stmt *S,
2872 void MallocChecker::checkLocation(SVal l, bool isLoad, const Stmt *S, argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp281 bool &isLoad, bool &isStore) {
284 isLoad = MCID.mayLoad();
334 bool isFirst, isSingle, isCracked, isLoad, isStore; local
337 isLoad, isStore);
375 if (isLoad && NumStores && !MI->memoperands_empty()) {
392 bool isFirst, isSingle, isCracked, isLoad, isStore; local
395 isLoad, isStore);
278 GetInstrType(unsigned Opcode, bool &isFirst, bool &isSingle, bool &isCracked, bool &isLoad, bool &isStore) argument
H A DPPCHazardRecognizers.h92 bool &isLoad, bool &isStore);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp329 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
342 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, OBB);
442 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
483 if (isLoad && QueryInst) {
581 if (isLoad) {
682 if (isLoad && FI->getOrdering() == AtomicOrdering::Release)
699 if (isLoad)
750 bool isLoad = !isModSet(MR); local
752 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start;
755 getPointerDependencyFrom(MemLoc, isLoad, ScanPo
328 getPointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, OrderedBasicBlock *OBB) argument
441 getSimplePointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, OrderedBasicBlock *OBB) argument
918 bool isLoad = isa<LoadInst>(QueryInst); local
978 GetNonLocalInfoForBlock( Instruction *QueryInst, const MemoryLocation &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries) argument
1093 getNonLocalPointerDepFromBB( Instruction *QueryInst, const PHITransAddr &Pointer, const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock *, Value *> &Visited, bool SkipFirstBlock) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h439 /// If isLoad is true, this routine ignores may-aliases with read-only
440 /// operations. If isLoad is false, this routine ignores may-aliases
450 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
458 getSimplePointerDependencyFrom(const MemoryLocation &MemLoc, bool isLoad,
492 const MemoryLocation &Loc, bool isLoad,
498 const MemoryLocation &Loc, bool isLoad,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp1018 assert((isLoad() || isStore()) && "Not a load/store!");
1083 assert((isLoad() || isStore()) &&
1085 if (isLoad())
1103 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
1106 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
H A DTargetInstrInfo.cpp358 if ((*o)->isLoad() &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp53 static bool isLoad(int Opcode) { function
71 if (isLoad(Opcode)) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h258 bool isLoad() const { return FlagVals & MOLoad; } function in class:llvm::MachineMemOperand
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp324 SVal loc, bool isLoad, const Stmt *NodeEx,
327 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx),
352 SVal location, bool isLoad,
356 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx,
323 CheckLocationContext(const CheckersTy &checkers, SVal loc, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &eng) argument
350 runCheckersForLocation(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, SVal location, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &Eng) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h295 bool isLoad,
456 CheckerFn<void (const SVal &location, bool isLoad, const Stmt *S,
H A DChecker.h197 const SVal &location, bool isLoad, const Stmt *S,
199 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C);
196 _checkLocation(void *checker, const SVal &location, bool isLoad, const Stmt *S, CheckerContext &C) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp372 bool isLoad, DecodeFunc DecodeRD) {
386 if (isLoad) {
409 if (!isLoad) {
370 DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder, bool isLoad, DecodeFunc DecodeRD) argument
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp869 return isLoad() || isStore() || isAtomic() ||
876 if (!isLoad() && !isStore() && !isAtomic()) {
884 if (!isLoad() && !isStore()) {
896 if (isLoad() + isStore() + isAtomic() > 1)
900 if (isLoad()) {
976 if (isLoad() || isStore() || isAtomic()) {
1045 if (isLoad() || isStore()) {
1046 StringRef SDNodeName = isLoad() ? "LoadSDNode" : "StoreSDNode";
1054 if (isLoad()) {
1135 bool TreePredicateFn::isLoad() cons function in class:TreePredicateFn
[all...]
H A DGlobalISelEmitter.cpp324 if (Predicate.isLoad() && Predicate.getMemoryVT())
327 if (Predicate.isLoad() || Predicate.isStore()) {
332 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3467 if (!Equiv.isValueUnset("IfSignExtend") && Predicate.isLoad() &&
3470 if (!Equiv.isValueUnset("IfZeroExtend") && Predicate.isLoad() &&
3547 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3570 if (Predicate.isLoad() && Predicate.isNonExtLoad()) {
3575 if (Predicate.isLoad() && Predicate.isAnyExtLoad()) {
3610 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3629 if (Predicate.isLoad() || Predicat
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h707 bool isLoad);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp649 bool isLoad() const { function in class:__anon2669::EarlyCSE::ParseMemoryInst
1088 if (MemInst.isValid() && MemInst.isLoad()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp171 bool isLoad = !MI.mayStore(); local
172 const MachineOperand &WB = isLoad ? MI.getOperand(1) : MI.getOperand(0);
240 if (isLoad)
256 if (isLoad)

Completed in 418 milliseconds

12