Searched defs:MR (Results 1 - 25 of 35) sorted by relevance

12

/external/libcxx/test/std/re/re.results/
H A Dtypes.pass.cpp36 typedef std::match_results<CharT*> MR; typedef
37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), "");
38 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), "");
39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), "");
40 static_assert((!std::is_same<typename MR::const_iterator, void>::value), "");
41 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), "");
42 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), "");
43 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
44 static_assert((std::is_same<typename MR::char_type, CharT>::value), "");
45 static_assert((std::is_same<typename MR
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSubEngine.h142 const MemRegion* MR) {
143 return processRegionChanges(state, nullptr, MR, MR, nullptr);
141 processRegionChange(ProgramStateRef state, const MemRegion* MR) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.cpp38 MachineRegisterInfo &MR = MF.getRegInfo(); local
54 if (!MR.use_empty(NVPTX::VRFrame)) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFCodeEmitter.h44 void addRelocation(const MachineRelocation &MR) { argument
45 Relocations.push_back(MR);
H A DELFCodeEmitter.cpp92 MachineRelocation &MR = *MRI; local
93 uintptr_t MBBOffset = getMachineBasicBlockAddress(MR.getBasicBlock());
94 MR.setResultPointer((void*)MBBOffset);
95 MR.setConstantVal(ES->SectionIdx);
96 JTSection.addRelocation(MR);
104 MachineRelocation &MR = Relocations[i]; local
106 if (MR.isGlobalValue()) {
107 EW.AddPendingGlobalSymbol(MR.getGlobalValue());
108 } else if (MR.isExternalSymbol()) {
109 EW.AddPendingExternalSymbol(MR
192 MachineRelocation MR = local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIChecker.cpp30 const MemRegion *const MR = local
32 if (!MR)
34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion())))
41 const Request *const Req = State->get<RequestMap>(MR);
46 BReporter.reportDoubleNonblocking(PreCallEvent, *Req, MR, ErrorNode, Ctx.getBugReporter());
51 State = State->set<RequestMap>(MR, Request::State::Nonblocking);
60 const MemRegion *const MR = topRegionUsedByWait(PreCallEvent); local
61 if (!MR)
63 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
146 allRegionsUsedByWait( llvm::SmallVector<const MemRegion *, 2> &ReqRegions, const MemRegion *const MR, const CallEvent &CE, CheckerContext &Ctx) const argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DExprInspectionChecker.cpp160 auto MR = dyn_cast_or_null<SubRegion>(C.getSVal(CE->getArg(0)).getAsRegion()); local
161 if (!MR)
166 MR->getExtent(C.getSValBuilder()));
H A DDereferenceChecker.cpp248 const MemRegion *MR = L.getAsRegion(); local
249 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
H A DVforkChecker.cpp200 const MemRegion *MR = L.getAsRegion(); local
203 if (!MR || MR == VforkLhs)
H A DDynamicTypePropagation.cpp300 const MemRegion *MR = C.getSVal(NewE).getAsRegion(); local
301 if (!MR)
304 C.addTransition(setDynamicTypeInfo(C.getState(), MR, NewE->getType(),
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetJITInfo.h107 virtual void relocate(void *Function, MachineRelocation *MR, argument
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DAliasAnalysisCounter.cpp33 unsigned NoMR, JustRef, JustMod, MR; member in class:__anon22548::AliasAnalysisCounter
40 NoMR = JustRef = JustMod = MR = 0;
49 unsigned MRSum = NoMR+JustRef+JustMod+MR;
70 printLine("mod/ref", MR, MRSum);
73 << "%/" << MR*100/MRSum <<"%\n\n";
163 case ModRef: MR++; MRString = "ModRef"; break;
H A DMemoryDependenceAnalysis.cpp208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA); local
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
538 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA); local
541 bool isLoad = !(MR & AliasAnalysis::Mod);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMJITInfo.cpp238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
239 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
242 return (intptr_t)(MR->getResultPointer());
245 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal();
248 return getJumpTableBaseAddr(MR->getJumpTableIndex());
252 return getConstantPoolEntryAddr(MR->getConstantPoolIndex());
254 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal();
257 intptr_t Addr = (intptr_t)(MR->getResultPointer());
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsJITInfo.cpp195 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
199 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
200 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
202 switch ((Mips::RelocationType) MR->getRelocationType()) {
215 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp75 const MemRegion *MR = LV->getAsRegion(); local
76 if (const TypedRegion *TR = dyn_cast_or_null<TypedRegion>(MR))
H A DStore.cpp216 const MemRegion *MR = V.getAsRegion(); local
217 if (!MR)
220 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR);
287 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) { argument
288 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR))
290 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
299 const MemRegion *MR = Base.getAsRegion(); local
300 if (!MR)
312 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) {
315 return loc::MemRegionVal(MR);
[all...]
H A DSymbolManager.cpp421 bool SymbolReaper::isLiveRegion(const MemRegion *MR) { argument
422 if (RegionRoots.count(MR))
425 MR = MR->getBaseRegion();
427 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
430 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
437 if (isa<AllocaRegion>(MR))
440 if (isa<CXXThisRegion>(MR))
443 if (isa<MemSpaceRegion>(MR))
446 if (isa<CodeTextRegion>(MR))
[all...]
H A DExprEngineCallAndReturn.cpp206 const MemRegion *MR = V.getAsRegion(); local
207 if (!MR)
210 return isa<CXXTempObjectRegion>(MR);
H A DProgramState.cpp118 const MemRegion *MR = LV.getAsRegion(); local
119 if (MR && Mgr.getOwningEngine() && notifyChanges)
120 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCJITInfo.cpp410 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, argument
412 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
413 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
414 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
415 switch ((PPC::RelocationType)MR->getRelocationType()) {
434 ResultPtr += MR->getConstantVal();
437 if (MR->getRelocationType() == PPC::reloc_absolute_high) {
453 ResultPtr += MR->getConstantVal();
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86CodeEmitter.cpp270 MachineRelocation MR = Indirect local
276 MCE.addRelocation(MR);
H A DX86JITInfo.cpp527 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, argument
529 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
530 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
531 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
532 switch ((X86::RelocationType)MR->getRelocationType()) {
536 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
543 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
/external/llvm/lib/Target/Hexagon/
H A DHexagonStoreWidening.cpp439 MachineOperand &MR = FirstSt->getOperand(0); local
442 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
461 MachineOperand &MR = FirstSt->getOperand(0); local
464 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp181 ModRefInfo MR = GetLocation(Inst, Loc, TLI); local
198 if (isReadOnlyCall && !(MR & MRI_Mod) &&
212 if (MR != MRI_NoModRef)
649 ModRefInfo MR = AA.getModRefInfo(Inst, MemLoc); local
651 if (MR == MRI_ModRef)
652 MR = AA.callCapturesBefore(Inst, MemLoc, &DT, &OBB);
653 switch (MR) {
708 ModRefInfo MR = GetLocation(QueryInst, MemLoc, TLI); local
711 bool isLoad = !(MR & MRI_Mod);

Completed in 558 milliseconds

12