HomeSort by relevance Sort by last modified time
    Searched refs:isLoad (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/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,
DereferenceChecker.cpp 39 void checkLocation(SVal location, bool isLoad, const Stmt* S,
177 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S,
217 ImplicitNullDerefEvent event = { l, isLoad, N, &C.getBugReporter() };
254 ImplicitNullDerefEvent event = { V, /*isLoad=*/true, N,
NSErrorChecker.cpp 163 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
203 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad,
206 if (!isLoad)
241 if (event.IsLoad)
ArrayBoundCheckerV2.cpp 39 void checkLocation(SVal l, bool isLoad, const Stmt*S,
84 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad,
ObjCSelfInitChecker.cpp 75 void checkLocation(SVal location, bool isLoad, const Stmt *S,
302 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad,
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 49 private boolean isLoad;
146 isLoad = true;
151 isLoad = false;
156 isLoad = true;
161 isLoad = false;
188 if (!isLoad)
200 if (isLoad)
  /external/valgrind/main/VEX/priv/
host_arm64_defs.h 681 Bool isLoad;
687 Bool isLoad;
693 Bool isLoad;
699 Bool isLoad;
782 Bool isLoad;
789 Bool isLoad;
796 Bool isLoad;
965 //ZZ Bool isLoad;
1038 extern ARM64Instr* ARM64Instr_LdSt64 ( Bool isLoad, HReg, ARM64AMode* );
1039 extern ARM64Instr* ARM64Instr_LdSt32 ( Bool isLoad, HReg, ARM64AMode* )
    [all...]
host_arm_defs.h 667 Bool isLoad;
674 Bool isLoad;
682 Bool isLoad;
762 Bool isLoad;
768 Bool isLoad;
896 Bool isLoad;
901 Bool isLoad;
965 Bool isLoad, HReg, ARMAMode1* );
967 Bool isLoad, Bool signedLoad,
970 Bool isLoad, HReg, ARMAMode1* )
    [all...]
host_arm64_defs.c     [all...]
host_x86_defs.h 546 Bool isLoad;
555 Bool isLoad;
597 Bool isLoad;
687 extern X86Instr* X86Instr_FpLdSt ( Bool isLoad, UChar sz, HReg reg, X86AMode* );
688 extern X86Instr* X86Instr_FpLdStI ( Bool isLoad, UChar sz, HReg reg, X86AMode* );
696 extern X86Instr* X86Instr_SseLdSt ( Bool isLoad, HReg, X86AMode* );
host_arm_defs.c     [all...]
host_ppc_defs.h 739 Bool isLoad;
792 Bool isLoad;
1058 extern PPCInstr* PPCInstr_FpLdSt ( Bool isLoad, UChar sz, HReg, PPCAMode* );
    [all...]
host_x86_defs.c 769 X86Instr* X86Instr_FpLdSt ( Bool isLoad, UChar sz, HReg reg, X86AMode* addr ) {
772 i->Xin.FpLdSt.isLoad = isLoad;
779 X86Instr* X86Instr_FpLdStI ( Bool isLoad, UChar sz,
783 i->Xin.FpLdStI.isLoad = isLoad;
833 X86Instr* X86Instr_SseLdSt ( Bool isLoad, HReg reg, X86AMode* addr ) {
836 i->Xin.SseLdSt.isLoad = isLoad;
    [all...]
  /external/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 93 bool &isLoad, bool &isStore);
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 294 /// pointer+isload bit, the value is a list of <bb->result> mappings.
372 bool isLoad, BasicBlock *BB,
393 /// location depends. If isLoad is true, this routine ignores may-aliases
394 /// with read-only operations. If isLoad is false, this routine ignores
402 bool isLoad,
427 bool isLoad, BasicBlock *BB,
432 bool isLoad, BasicBlock *BB,
  /external/llvm/lib/Target/NVPTX/
NVPTXInstrInfo.cpp 114 bool isLoad = false;
117 isLoad = (TSFlags == 1);
118 if (isLoad)
120 return isLoad;
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 356 /// location depends. If isLoad is true, this routine ignores may-aliases with
357 /// read-only operations. If isLoad is false, this routine ignores may-aliases
362 getPointerDependencyFrom(const AliasAnalysis::Location &MemLoc, bool isLoad,
370 if (isLoad && QueryInst) {
418 if (isLoad) {
533 if (isLoad)
584 bool isLoad = !(MR & AliasAnalysis::Mod);
586 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start;
588 LocalCache = getPointerDependencyFrom(MemLoc, isLoad, ScanPos,
771 getNonLocalPointerDependency(const AliasAnalysis::Location &Loc, bool isLoad,
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 170 bool isLoad() const { return Flags & MOLoad; }
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 191 variableInstruction.isLoad())
  /external/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 272 bool isLoad, DecodeFunc DecodeRD) {
284 if (isLoad) {
304 if (!isLoad) {
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 266 bool IsLoad;
275 SVal loc, bool isLoad, const Stmt *NodeEx,
278 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx),
283 ProgramPoint::Kind K = IsLoad ? ProgramPoint::PreLoadKind :
290 checkFn(Loc, IsLoad, BoundEx, C);
299 SVal location, bool isLoad,
303 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx,
  /external/proguard/src/proguard/classfile/instruction/
VariableInstruction.java 158 public boolean isLoad()
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 186 const SVal &location, bool isLoad, const Stmt *S,
188 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C);
545 bool IsLoad;
CheckerManager.h 312 bool isLoad,
455 typedef CheckerFn<void (const SVal &location, bool isLoad,

Completed in 1305 milliseconds

1 2 3