HomeSort by: relevance | last modified time | path
    Searched refs:isLoad (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 31 void checkLocation(SVal l, bool isLoad, const Stmt* S,
36 void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS,
NonnullGlobalConstantsChecker.cpp 44 void checkLocation(SVal l, bool isLoad, const Stmt *S,
69 void NonnullGlobalConstantsChecker::checkLocation(SVal location, bool isLoad,
73 if (!isLoad || !location.isValid())
DereferenceChecker.cpp 43 void checkLocation(SVal location, bool isLoad, const Stmt* S,
207 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S,
243 ImplicitNullDerefEvent event = {l, isLoad, N, &C.getBugReporter(),
284 ImplicitNullDerefEvent event = {V, /*isLoad=*/true, N,
NSErrorChecker.cpp 173 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
212 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad,
215 if (!isLoad)
250 if (event.IsLoad)
ArrayBoundCheckerV2.cpp 42 void checkLocation(SVal l, bool isLoad, const Stmt*S,
116 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad,
ObjCSelfInitChecker.cpp 74 void checkLocation(SVal location, bool isLoad, const Stmt *S,
300 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad,
ObjCSuperDeallocChecker.cpp 46 void checkLocation(SVal l, bool isLoad, const Stmt *S,
130 void ObjCSuperDeallocChecker::checkLocation(SVal L, bool IsLoad, const Stmt *S,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 281 bool &isLoad, bool &isStore) {
284 isLoad = MCID.mayLoad();
334 bool isFirst, isSingle, isCracked, isLoad, isStore;
337 isLoad, isStore);
375 if (isLoad && NumStores && !MI->memoperands_empty()) {
392 bool isFirst, isSingle, isCracked, isLoad, isStore;
395 isLoad, isStore);
PPCHazardRecognizers.h 92 bool &isLoad, bool &isStore);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 326 /// The key of this map is the pointer+isload bit, the value is a list of
443 /// If isLoad is true, this routine ignores may-aliases with read-only
444 /// operations. If isLoad is false, this routine ignores may-aliases
454 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
460 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad,
468 getSimplePointerDependencyFrom(const MemoryLocation &MemLoc, bool isLoad,
498 const MemoryLocation &Loc, bool isLoad,
505 const MemoryLocation &Loc, bool isLoad,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 247 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
260 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, BatchAA);
275 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
278 return getPointerDependencyFrom(MemLoc, isLoad, ScanIt, BB, QueryInst, Limit,
370 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt,
411 if (isLoad && QueryInst) {
515 if (isLoad) {
612 if (isLoad && FI->getOrdering() == AtomicOrdering::Release)
629 if (isLoad)
680 bool isLoad = !isModSet(MR)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kCollapseMOVEMPass.cpp 144 bool isLoad() const { return Access == AccessTy::Load; }
187 if (State.isLoad()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineOperand.cpp 1028 assert((isLoad() || isStore()) && "Not a load/store!");
1093 assert((isLoad() || isStore()) &&
1095 if (isLoad())
1113 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
1116 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
1160 OS << ((isLoad() && isStore()) ? " on "
1161 : isLoad() ? " from "
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/Disassembler/
VEDisassembler.cpp 363 const void *Decoder, bool isLoad,
368 if (isLoad) {
378 if (!isLoad) {
387 const void *Decoder, bool isLoad,
392 if (isLoad) {
402 if (!isLoad) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCInstrInfo.cpp 53 static bool isLoad(int Opcode) {
71 if (isLoad(Opcode)) {
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetBuiltins.h 245 bool isLoad() const { return Flags & IsLoad; }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 318 bool IsLoad;
324 SVal loc, bool isLoad, const Stmt *NodeEx,
327 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx),
335 ProgramPoint::Kind K = IsLoad ? ProgramPoint::PreLoadKind :
342 checkFn(Loc, IsLoad, BoundEx, C);
352 SVal location, bool isLoad,
356 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx,
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineMemOperand.h 258 bool isLoad() const { return FlagVals & MOLoad; }
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
Checker.h 197 const SVal &location, bool isLoad, const Stmt *S,
199 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C);
555 bool IsLoad;
CheckerManager.h 334 bool isLoad,
493 CheckerFn<void (const SVal &location, bool isLoad, const Stmt *S,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 372 bool isLoad, DecodeFunc DecodeRD) {
386 if (isLoad) {
409 if (!isLoad) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 716 bool isLoad() const {
1115 if (MemInst.isLoad() && !InVal.IsAtomic && MemInst.isAtomic())
1121 bool MemInstMatching = !MemInst.isLoad();
1381 if (MemInst.isValid() && MemInst.isLoad()) {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 894 return isLoad() || isStore() || isAtomic() ||
901 if (!isLoad() && !isStore() && !isAtomic()) {
906 "MemoryVT requires IsLoad or IsStore");
909 if (!isLoad() && !isStore()) {
912 "IsUnindexed requires IsLoad or IsStore");
918 "ScalarMemoryVT requires IsLoad or IsStore");
921 if (isLoad() + isStore() + isAtomic() > 1)
923 "IsLoad, IsStore, and IsAtomic are mutually exclusive");
925 if (isLoad()) {
931 "IsLoad cannot be used by itself")
    [all...]
GlobalISelEmitter.cpp 328 if (Predicate.isLoad() && Predicate.getMemoryVT())
331 if (Predicate.isLoad() || Predicate.isStore()) {
336 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3747 if (!Equiv.isValueUnset("IfSignExtend") && Predicate.isLoad() &&
3750 if (!Equiv.isValueUnset("IfZeroExtend") && Predicate.isLoad() &&
3790 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3813 if (Predicate.isLoad() && Predicate.isNonExtLoad()) {
3818 if (Predicate.isLoad() && Predicate.isAnyExtLoad()) {
3862 if (Predicate.isLoad() || Predicate.isStore() || Predicate.isAtomic()) {
3874 if (Predicate.isLoad() || Predicate.isStore())
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 770 bool isLoad);

Completed in 55 milliseconds

1 2