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

1 2 3

  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 93 bool &isLoad, bool &isStore) {
96 isLoad = MCID.mayLoad();
146 bool isFirst, isSingle, isCracked, isLoad, isStore;
149 isLoad, isStore);
187 if (isLoad && NumStores && !MI->memoperands_empty()) {
204 bool isFirst, isSingle, isCracked, isLoad, isStore;
207 isLoad, isStore);
PPCHazardRecognizers.h 82 bool &isLoad, bool &isStore);
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 30 void checkLocation(SVal l, bool isLoad, const Stmt* S,
35 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,
216 ImplicitNullDerefEvent event = { l, isLoad, N, &C.getBugReporter() };
254 ImplicitNullDerefEvent event = { V, /*isLoad=*/true, N,
NSErrorChecker.cpp 161 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
201 void NSOrCFErrorDerefChecker::checkLocation(SVal loc, bool isLoad,
204 if (!isLoad)
239 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 69 void checkLocation(SVal location, bool isLoad, const Stmt *S,
304 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;
187 if (!isLoad)
199 if (isLoad)
  /external/valgrind/main/VEX/priv/
host_arm_defs.h 664 Bool isLoad;
670 Bool isLoad;
677 Bool isLoad;
762 Bool isLoad;
768 Bool isLoad;
891 Bool isLoad;
896 Bool isLoad;
959 extern ARMInstr* ARMInstr_LdSt32 ( Bool isLoad, HReg, ARMAMode1* );
960 extern ARMInstr* ARMInstr_LdSt16 ( Bool isLoad, Bool signedLoad,
962 extern ARMInstr* ARMInstr_LdSt8U ( Bool isLoad, HReg, ARMAMode1* )
    [all...]
host_x86_defs.h 542 Bool isLoad;
551 Bool isLoad;
593 Bool isLoad;
683 extern X86Instr* X86Instr_FpLdSt ( Bool isLoad, UChar sz, HReg reg, X86AMode* );
684 extern X86Instr* X86Instr_FpLdStI ( Bool isLoad, UChar sz, HReg reg, X86AMode* );
692 extern X86Instr* X86Instr_SseLdSt ( Bool isLoad, HReg, X86AMode* );
host_arm_defs.c     [all...]
host_ppc_defs.h 706 Bool isLoad;
759 Bool isLoad;
994 extern PPCInstr* PPCInstr_FpLdSt ( Bool isLoad, UChar sz, HReg, PPCAMode* );
1005 extern PPCInstr* PPCInstr_AvLdSt ( Bool isLoad, UChar sz, HReg, PPCAMode* );
    [all...]
host_x86_defs.c 765 X86Instr* X86Instr_FpLdSt ( Bool isLoad, UChar sz, HReg reg, X86AMode* addr ) {
768 i->Xin.FpLdSt.isLoad = isLoad;
775 X86Instr* X86Instr_FpLdStI ( Bool isLoad, UChar sz,
779 i->Xin.FpLdStI.isLoad = isLoad;
829 X86Instr* X86Instr_SseLdSt ( Bool isLoad, HReg reg, X86AMode* addr ) {
832 i->Xin.SseLdSt.isLoad = isLoad;
    [all...]
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 254 int isLoad;
285 isLoad = EncodingMap[thisLIR->opcode].flags & IS_LOAD;
291 !(isLoad && storeVisited) &&
299 loadVisited |= isLoad;
346 int isLoad = flags & IS_LOAD;
349 if (isLoad && nextLIR->opcode == targetLIR->opcode &&
361 if (isLoad || isStore) {
363 newLIR->operands[0] = isLoad ? 0 : 1;
CodegenCommon.cpp 35 static void setMemRefType(MipsLIR *lir, bool isLoad, int memType)
42 if (isLoad) {
52 assert(isLoad);
77 static void annotateDalvikRegAccess(MipsLIR *lir, int regId, bool isLoad)
80 setMemRefType(lir, isLoad, kDalvikReg);
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 294 /// pointer+isload bit, the value is a list of <bb->result> mappings.
371 bool isLoad, BasicBlock *BB,
392 /// location depends. If isLoad is true, this routine ignores may-aliases
393 /// with read-only operations. If isLoad is false, this routine ignores
401 bool isLoad,
426 bool isLoad, BasicBlock *BB,
431 bool isLoad, BasicBlock *BB,
  /external/llvm/lib/Target/NVPTX/
NVPTXInstrInfo.cpp 111 bool isLoad = false;
114 isLoad = (TSFlags == 1);
115 if (isLoad)
117 return isLoad;
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 352 /// location depends. If isLoad is true, this routine ignores may-aliases with
353 /// read-only operations. If isLoad is false, this routine ignores may-aliases
358 getPointerDependencyFrom(const AliasAnalysis::Location &MemLoc, bool isLoad,
366 if (isLoad && QueryInst) {
413 if (isLoad) {
528 if (isLoad)
579 bool isLoad = !(MR & AliasAnalysis::Mod);
581 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start;
583 LocalCache = getPointerDependencyFrom(MemLoc, isLoad, ScanPos,
766 getNonLocalPointerDependency(const AliasAnalysis::Location &Loc, bool isLoad,
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 154 bool isLoad() const { return Flags & MOLoad; }
  /dalvik/vm/compiler/codegen/arm/
CodegenCommon.cpp 35 static void setMemRefType(ArmLIR *lir, bool isLoad, int memType)
40 if (isLoad) {
50 assert(isLoad);
75 static void annotateDalvikRegAccess(ArmLIR *lir, int regId, bool isLoad)
77 setMemRefType(lir, isLoad, kDalvikReg);
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 191 variableInstruction.isLoad())
  /sdk/emulator/qtools/
opcode.h 140 inline bool isLoad(Opcode op) { return (opcode_flags[op] & kCatLoad) != 0; }
  /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);
499 bool IsLoad;

Completed in 480 milliseconds

1 2 3