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

12

/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp31 void checkLocation(SVal l, bool isLoad, const Stmt* S,
36 void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS, argument
H A DNonnullGlobalConstantsChecker.cpp45 void checkLocation(SVal l, bool isLoad, const Stmt *S,
70 void NonnullGlobalConstantsChecker::checkLocation(SVal location, bool isLoad, argument
74 if (!isLoad || !location.isValid())
H A DDereferenceChecker.cpp46 void checkLocation(SVal location, bool isLoad, const Stmt* S,
238 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S, argument
274 ImplicitNullDerefEvent event = {l, isLoad, N, &C.getBugReporter(),
315 ImplicitNullDerefEvent event = {V, /*isLoad=*/true, N,
H A DNSErrorChecker.cpp174 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
213 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, argument
216 if (!isLoad)
H A DObjCSelfInitChecker.cpp74 void checkLocation(SVal location, bool isLoad, const Stmt *S,
299 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad, argument
H A DObjCSuperDeallocChecker.cpp47 void checkLocation(SVal l, bool isLoad, const Stmt *S,
/freebsd-current/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-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h438 /// If isLoad is true, this routine ignores may-aliases with read-only
439 /// operations. If isLoad is false, this routine ignores may-aliases
449 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
455 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
463 getSimplePointerDependencyFrom(const MemoryLocation &MemLoc, bool isLoad,
493 const MemoryLocation &Loc, bool isLoad,
500 const MemoryLocation &Loc, bool isLoad,
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp241 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
254 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, BatchAA);
269 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
272 return getPointerDependencyFrom(MemLoc, isLoad, ScanIt, BB, QueryInst, Limit,
397 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
440 if (isLoad && QueryInst)
545 if (isLoad) {
647 if (isLoad && FI->getOrdering() == AtomicOrdering::Release)
660 if (isLoad)
711 bool isLoad local
240 getPointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, BatchAAResults &BatchAA) argument
268 getPointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit) argument
396 getSimplePointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, BatchAAResults &BatchAA) argument
874 bool isLoad = isa<LoadInst>(QueryInst); local
934 getNonLocalInfoForBlock( Instruction *QueryInst, const MemoryLocation &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries, BatchAAResults &BatchAA) argument
1066 getNonLocalPointerDepFromBB( Instruction *QueryInst, const PHITransAddr &Pointer, const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock *, Value *> &Visited, bool SkipFirstBlock, bool IsIncomplete) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp145 bool isLoad() const { return Access == AccessTy::Load; } function in class:__anon2390::MOVEMState
188 if (State.isLoad()) {
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/
H A DInvalidPtrChecker.cpp92 void checkLocation(SVal l, bool isLoad, const Stmt *S,
328 void InvalidPtrChecker::checkLocation(SVal Loc, bool isLoad, const Stmt *S,
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp1094 assert((isLoad() || isStore()) && "Not a load/store!");
1170 assert((isLoad() || isStore()) &&
1172 if (isLoad())
1190 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
1193 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
1237 OS << ((isLoad() && isStore()) ? " on "
1238 : isLoad() ? " from "
/freebsd-current/contrib/llvm-project/llvm/lib/Target/VE/Disassembler/
H A DVEDisassembler.cpp372 const MCDisassembler *Decoder, bool isLoad,
377 if (isLoad) {
387 if (!isLoad) {
396 const MCDisassembler *Decoder, bool isLoad,
401 if (isLoad) {
411 if (!isLoad) {
371 DecodeMem(MCInst &MI, uint64_t insn, uint64_t Address, const MCDisassembler *Decoder, bool isLoad, DecodeFunc DecodeSX) argument
395 DecodeMemAS(MCInst &MI, uint64_t insn, uint64_t Address, const MCDisassembler *Decoder, bool isLoad, DecodeFunc DecodeSX) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp53 static bool isLoad(int Opcode) { function
71 if (isLoad(Opcode)) {
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp322 SVal loc, bool isLoad, const Stmt *NodeEx,
325 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx),
350 SVal location, bool isLoad,
354 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx,
321 CheckLocationContext(const CheckersTy &checkers, SVal loc, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &eng) argument
348 runCheckersForLocation(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, SVal location, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &Eng) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h290 bool isLoad() const { return FlagVals & MOLoad; } function in class:llvm::MachineMemOperand
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp221 if (Predicate.isLoad() && Predicate.getMemoryVT())
224 if (Predicate.isLoad() || Predicate.isStore()) {
229 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
516 (Predicate.isLoad() || Predicate.isAtomic()) &&
520 (Predicate.isLoad() || Predicate.isAtomic()) &&
564 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
590 if (Predicate.isLoad() && Predicate.isNonExtLoad()) {
595 if (Predicate.isLoad() && Predicate.isAnyExtLoad()) {
640 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
652 if (Predicate.isLoad() || Predicat
[all...]
H A DCodeGenDAGPatterns.cpp916 return isLoad() || isStore() || isAtomic() || hasNoUse() ||
923 if (!isLoad() && !isStore() && !isAtomic()) {
931 if (!isLoad() && !isStore()) {
943 if (isLoad() + isStore() + isAtomic() > 1)
947 if (isLoad()) {
1027 if (isLoad() || isStore() || isAtomic()) {
1097 if (isLoad() || isStore()) {
1098 StringRef SDNodeName = isLoad() ? "LoadSDNode" : "StoreSDNode";
1106 if (isLoad()) {
1195 bool TreePredicateFn::isLoad() cons function in class:TreePredicateFn
[all...]
H A DCodeGenDAGPatterns.h541 bool isLoad() const;
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp849 bool isLoad() const { function in class:__anon2904::EarlyCSE::ParseMemoryInst
1259 if (MemInst.isLoad() && !InVal.IsAtomic && MemInst.isAtomic())
1265 bool MemInstMatching = !MemInst.isLoad();
1554 if (MemInst.isValid() && MemInst.isLoad()) {
1606 MemInst.isLoad()));
1756 MemInst.isLoad()));
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h333 bool isLoad,
491 using CheckLocationFunc = CheckerFn<void(SVal location, bool isLoad,
H A DChecker.h196 static void _checkLocation(void *checker, SVal location, bool isLoad, argument
198 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C);
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetBuiltins.h285 bool isLoad() const { return Flags & IsLoad; } function in class:clang::SVETypeFlags
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h770 bool isLoad);

Completed in 421 milliseconds

12