Home
last modified time | relevance | path

Searched refs:MR (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/external/llvm/lib/Target/ARM/
DARMJITInfo.cpp238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const { in resolveRelocDestAddr()
239 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType(); in resolveRelocDestAddr()
242 return (intptr_t)(MR->getResultPointer()); in resolveRelocDestAddr()
245 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal(); in resolveRelocDestAddr()
248 return getJumpTableBaseAddr(MR->getJumpTableIndex()); in resolveRelocDestAddr()
252 return getConstantPoolEntryAddr(MR->getConstantPoolIndex()); in resolveRelocDestAddr()
254 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal(); in resolveRelocDestAddr()
257 intptr_t Addr = (intptr_t)(MR->getResultPointer()); in resolveRelocDestAddr()
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument
269 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
[all …]
DARMJITInfo.h80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp227 const MemRegion *MR = V.getAsRegion(); in regionMatchesCXXRecordType() local
228 if (!MR) in regionMatchesCXXRecordType()
231 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR); in regionMatchesCXXRecordType()
298 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) { in getCXXRecordType() argument
299 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR)) in getCXXRecordType()
301 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in getCXXRecordType()
310 const MemRegion *MR = Base.getAsRegion(); in evalDynamicCast() local
311 if (!MR) in evalDynamicCast()
323 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) { in evalDynamicCast()
326 return loc::MemRegionVal(MR); in evalDynamicCast()
[all …]
DSymbolManager.cpp414 bool SymbolReaper::isLiveRegion(const MemRegion *MR) { in isLiveRegion() argument
415 if (RegionRoots.count(MR)) in isLiveRegion()
418 MR = MR->getBaseRegion(); in isLiveRegion()
420 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in isLiveRegion()
423 if (const VarRegion *VR = dyn_cast<VarRegion>(MR)) in isLiveRegion()
430 if (isa<AllocaRegion>(MR)) in isLiveRegion()
433 if (isa<CXXThisRegion>(MR)) in isLiveRegion()
436 if (isa<MemSpaceRegion>(MR)) in isLiveRegion()
/external/llvm/lib/Target/Mips/
DMipsJITInfo.cpp247 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument
249 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
251 void *RelocPos = (char*) Function + MR->getMachineCodeOffset(); in relocate()
252 intptr_t ResultPtr = (intptr_t) MR->getResultPointer(); in relocate()
254 switch ((Mips::RelocationType) MR->getRelocationType()) { in relocate()
267 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) { in relocate()
DMipsJITInfo.h58 virtual void relocate(void *Function, MachineRelocation *MR,
/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp413 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument
415 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
416 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; in relocate()
417 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); in relocate()
418 switch ((PPC::RelocationType)MR->getRelocationType()) { in relocate()
437 ResultPtr += MR->getConstantVal(); in relocate()
440 if (MR->getRelocationType() == PPC::reloc_absolute_high) { in relocate()
456 ResultPtr += MR->getConstantVal(); in relocate()
DPPCJITInfo.h37 virtual void relocate(void *Function, MachineRelocation *MR,
/external/llvm/lib/Analysis/
DAliasAnalysisCounter.cpp33 unsigned NoMR, JustRef, JustMod, MR; member in __anon87a5ec9d0111::AliasAnalysisCounter
40 NoMR = JustRef = JustMod = MR = 0; in AliasAnalysisCounter()
49 unsigned MRSum = NoMR+JustRef+JustMod+MR; in ~AliasAnalysisCounter()
70 printLine("mod/ref", MR, MRSum); in ~AliasAnalysisCounter()
73 << "%/" << MR*100/MRSum <<"%\n\n"; in ~AliasAnalysisCounter()
161 case ModRef: MR++; MRString = "ModRef"; break; in getModRefInfo()
DMemoryDependenceAnalysis.cpp208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA); in getCallSiteDependencyFrom() local
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) && in getCallSiteDependencyFrom()
238 if (MR != AliasAnalysis::NoModRef) in getCallSiteDependencyFrom()
515 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc); in getPointerDependencyFrom() local
517 if (MR == AliasAnalysis::ModRef) in getPointerDependencyFrom()
518 MR = AA->callCapturesBefore(Inst, MemLoc, DT); in getPointerDependencyFrom()
519 switch (MR) { in getPointerDependencyFrom()
576 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA); in getDependency() local
579 bool isLoad = !(MR & AliasAnalysis::Mod); in getDependency()
/external/llvm/lib/ExecutionEngine/JIT/
DJITEmitter.cpp403 virtual void addRelocation(const MachineRelocation &MR) { in addRelocation() argument
404 Relocations.push_back(MR); in addRelocation()
827 MachineRelocation &MR = Relocations[i]; in finishFunction() local
829 if (!MR.letTargetResolve()) { in finishFunction()
830 if (MR.isExternalSymbol()) { in finishFunction()
831 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(), in finishFunction()
833 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to [" in finishFunction()
837 if (MR.mayNeedFarStub()) { in finishFunction()
840 } else if (MR.isGlobalValue()) { in finishFunction()
841 ResultPtr = getPointerToGlobal(MR.getGlobalValue(), in finishFunction()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DCStringChecker.cpp125 const MemRegion *MR,
130 const MemRegion *MR,
148 const MemRegion *MR);
614 const MemRegion *MR, in setCStringLength() argument
618 MR = MR->StripCasts(); in setCStringLength()
620 switch (MR->getKind()) { in setCStringLength()
648 return state->remove<CStringLength>(MR); in setCStringLength()
650 return state->set<CStringLength>(MR, strLength); in setCStringLength()
656 const MemRegion *MR, in getCStringLengthForRegion() argument
660 const SVal *Recorded = state->get<CStringLength>(MR); in getCStringLengthForRegion()
[all …]
DMallocChecker.cpp311 static bool SummarizeRegion(raw_ostream &os, const MemRegion *MR);
1139 const MemRegion *MR) { in SummarizeRegion() argument
1140 switch (MR->getKind()) { in SummarizeRegion()
1142 const NamedDecl *FD = cast<FunctionTextRegion>(MR)->getDecl(); in SummarizeRegion()
1157 const MemSpaceRegion *MS = MR->getMemorySpace(); in SummarizeRegion()
1160 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1175 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1190 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1230 const MemRegion *MR = ArgVal.getAsRegion(); in ReportBadFree() local
1231 while (const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(MR)) in ReportBadFree()
[all …]
DDynamicTypePropagation.cpp201 const MemRegion *MR = C.getSVal(NewE).getAsRegion(); in checkPostStmt() local
202 if (!MR) in checkPostStmt()
205 C.addTransition(C.getState()->setDynamicTypeInfo(MR, NewE->getType(), in checkPostStmt()
/external/llvm/lib/Target/X86/
DX86JITInfo.cpp542 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument
544 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
545 void *RelocPos = (char*)Function + MR->getMachineCodeOffset(); in relocate()
546 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); in relocate()
547 switch ((X86::RelocationType)MR->getRelocationType()) { in relocate()
551 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal(); in relocate()
558 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal()); in relocate()
DX86JITInfo.h66 virtual void relocate(void *Function, MachineRelocation *MR,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSubEngine.h124 const MemRegion* MR) { in processRegionChange() argument
125 return processRegionChanges(state, 0, MR, MR, 0); in processRegionChange()
/external/smack/src/org/xbill/DNS/
DMRRecord.java29 super(name, Type.MR, dclass, ttl, newName, "new name"); in MRRecord()
DType.java40 public static final int MR = 9; field in Type
235 types.add(MR, "MR", new MRRecord()); in types.add() argument
/external/eigen/bench/
Dgeometry.cpp64 template<typename S, int R, int C, int O, int MR, int MC>
65 struct get_dim<Matrix<S,R,C,O,MR,MC> > { enum { Dim = R }; };
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-sea-machine.rl45 MR = 22; # Medial Ra
54 syllable_tail = (VPre|VAbv|VBlw|VPst|H.C|CM|MR|T|A)*;
Dhb-ot-shape-complex-myanmar-machine.rl51 MR = 22;
70 medial_group = MY? MR? ((MW MH? | MH) As?)?;
/external/llvm/include/llvm/Target/
DTargetJITInfo.h103 virtual void relocate(void *Function, MachineRelocation *MR, in relocate() argument
/external/chromium_org/third_party/icu/source/data/region/
Dfa_AF.txt70 MR{"موریتانیا"}
/external/icu4c/data/region/
Dfa_AF.txt68 MR{"موریتانیا"}

12345678910>>...14