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

12

/external/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 DDereferenceChecker.cpp39 void checkLocation(SVal location, bool isLoad, const Stmt* S,
177 void DereferenceChecker::checkLocation(SVal l, bool isLoad, const Stmt* S, argument
217 ImplicitNullDerefEvent event = { l, isLoad, N, &C.getBugReporter() };
254 ImplicitNullDerefEvent event = { V, /*isLoad=*/true, N,
H A DArrayBoundCheckerV2.cpp39 void checkLocation(SVal l, bool isLoad, const Stmt*S,
84 void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad, argument
H A DNSErrorChecker.cpp163 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
203 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad, argument
206 if (!isLoad)
H A DObjCSelfInitChecker.cpp75 void checkLocation(SVal location, bool isLoad, const Stmt *S,
302 void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad, argument
H A DMallocChecker.cpp189 void checkLocation(SVal l, bool isLoad, const Stmt *S,
1989 void MallocChecker::checkLocation(SVal l, bool isLoad, const Stmt *S, argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXInstrInfo.cpp114 bool isLoad = false; local
117 isLoad = (TSFlags == 1);
118 if (isLoad)
120 return isLoad;
/external/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
/external/proguard/src/proguard/classfile/instruction/
H A DVariableInstruction.java158 public boolean isLoad() method in class:VariableInstruction
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h170 bool isLoad() const { return Flags & MOLoad; } function in class:llvm::MachineMemOperand
/external/proguard/src/proguard/evaluation/
H A DBasicInvocationUnit.java49 private boolean isLoad; field in class:BasicInvocationUnit
146 isLoad = true;
151 isLoad = false;
156 isLoad = true;
161 isLoad = false;
188 if (!isLoad)
200 if (isLoad)
/external/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp272 bool isLoad, DecodeFunc DecodeRD) {
284 if (isLoad) {
304 if (!isLoad) {
270 DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder, bool isLoad, DecodeFunc DecodeRD) argument
/external/valgrind/main/memcheck/tests/
H A Dcond_ld_st.c269 static void do_test_case ( int caseNo, Bool isLoad, const TestCase* lc ) argument
273 fprintf(stderr, "%s CASE %d\n", isLoad ? "LOAD" : "STORE", caseNo);
318 if (isLoad) {
639 do_test_case_steer( do_test_case, i, True/*isLoad*/, &loadCases[i] );
644 do_test_case_steer( do_test_case, i, False/*!isLoad*/, &storeCases[i] );
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h186 const SVal &location, bool isLoad, const Stmt *S,
188 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C);
185 _checkLocation(void *checker, const SVal &location, bool isLoad, const Stmt *S, CheckerContext &C) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp275 SVal loc, bool isLoad, const Stmt *NodeEx,
278 : Checkers(checkers), Loc(loc), IsLoad(isLoad), NodeEx(NodeEx),
299 SVal location, bool isLoad,
303 CheckLocationContext C(LocationCheckers, location, isLoad, NodeEx,
274 CheckLocationContext(const CheckersTy &checkers, SVal loc, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &eng) argument
297 runCheckersForLocation(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, SVal location, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &Eng) argument
H A DExprEngine.cpp2168 bool isLoad) {
2192 getCheckerManager().runCheckersForLocation(Tmp, Src, location, isLoad,
2161 evalLocation(ExplodedNodeSet &Dst, const Stmt *NodeEx, const Stmt *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, bool isLoad) argument
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp356 /// 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, argument
370 if (isLoad && QueryInst) {
418 if (isLoad) {
533 if (isLoad)
584 bool isLoad = !(MR & AliasAnalysis::Mod); local
586 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start;
588 LocalCache = getPointerDependencyFrom(MemLoc, isLoad, ScanPos,
771 getNonLocalPointerDependency(const AliasAnalysis::Location &Loc, bool isLoad, argument
799 GetNonLocalInfoForBlock(const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries) argument
913 getNonLocalPointerDepFromBB(const PHITransAddr &Pointer, const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock*, Value*> &Visited, bool SkipFirstBlock) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp1716 bool isLoad = true; local
1727 isLoad = false;
1744 if (isLoad) {
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp1716 bool isLoad = true; local
1727 isLoad = false;
1744 if (isLoad) {
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.c899 AMD64Instr* AMD64Instr_SseLdSt ( Bool isLoad, Int sz, argument
903 i->Ain.SseLdSt.isLoad = isLoad;
982 //uu AMD64Instr* AMD64Instr_AvxLdSt ( Bool isLoad,
986 //uu i->Ain.AvxLdSt.isLoad = isLoad;
1237 if (i->Ain.SseLdSt.isLoad) {
1297 //uu if (i->Ain.AvxLdSt.isLoad) {
1534 addHRegUse(u, i->Ain.SseLdSt.isLoad ? HRmWrite : HRmRead,
1603 //uu addHRegUse(u, i->Ain.AvxLdSt.isLoad
[all...]
H A Dhost_mips_defs.h579 Bool isLoad; member in struct:__anon31937::__anon31938::__anon31962
673 extern MIPSInstr *MIPSInstr_FpLdSt(Bool isLoad, UChar sz, HReg, MIPSAMode *);
H A Dhost_x86_defs.c769 X86Instr* X86Instr_FpLdSt ( Bool isLoad, UChar sz, HReg reg, X86AMode* addr ) { argument
772 i->Xin.FpLdSt.isLoad = isLoad;
779 X86Instr* X86Instr_FpLdStI ( Bool isLoad, UChar sz, argument
783 i->Xin.FpLdStI.isLoad = isLoad;
833 X86Instr* X86Instr_SseLdSt ( Bool isLoad, HReg reg, X86AMode* addr ) { argument
836 i->Xin.SseLdSt.isLoad = isLoad;
1085 if (i->Xin.FpLdSt.isLoad) {
[all...]
H A Dhost_amd64_defs.h623 Bool isLoad; member in struct:__anon31681::__anon31682::__anon31717
671 //uu Bool isLoad;
733 extern AMD64Instr* AMD64Instr_SseLdSt ( Bool isLoad, Int sz, HReg, AMD64AMode* );
742 //uu extern AMD64Instr* AMD64Instr_AvxLdSt ( Bool isLoad, HReg, AMD64AMode* );
H A Dhost_arm64_defs.h681 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31773
687 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31774
693 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31775
699 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31776
782 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31788
789 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31789
796 Bool isLoad; member in struct:__anon31763::__anon31764::__anon31790
965 //ZZ Bool isLoad;
1038 extern ARM64Instr* ARM64Instr_LdSt64 ( Bool isLoad, HReg, ARM64AMode* );
1039 extern ARM64Instr* ARM64Instr_LdSt32 ( Bool isLoad, HRe
[all...]
H A Dhost_mips_defs.c1458 MIPSInstr *MIPSInstr_FpLdSt(Bool isLoad, UChar sz, HReg reg, MIPSAMode * addr) argument
1462 i->Min.FpLdSt.isLoad = isLoad;
1840 if (i->Min.FpLdSt.isLoad) {
1852 if (i->Min.FpLdSt.isLoad) {
2076 addHRegUse(u, (i->Min.FpLdSt.isLoad ? HRmWrite : HRmRead),
2081 addHRegUse(u, (i->Min.FpLdSt.isLoad ? HRmWrite : HRmRead),
2740 static UChar* do_load_or_store_machine_word ( UChar* p, Bool isLoad, UInt reg, argument
2743 if (isLoad) { /* load */
2783 static UChar* do_load_or_store_word32 ( UChar* p, Bool isLoad, UIn argument
[all...]

Completed in 8292 milliseconds

12