Searched refs:MR (Results 1 - 25 of 65) sorted by relevance

123

/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/swiftshader/third_party/LLVM/lib/CodeGen/
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...]
H A DELFCodeEmitter.h44 void addRelocation(const MachineRelocation &MR) { argument
45 Relocations.push_back(MR);
/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...]
H A DMPIChecker.h85 /// \param MR top most region to iterate
89 const clang::ento::MemRegion *const MR, const clang::ento::CallEvent &CE,
/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...]
H A DARMJITInfo.h80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
/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) {
H A DMipsJITInfo.h59 virtual void relocate(void *Function, MachineRelocation *MR,
/external/clang/lib/StaticAnalyzer/Core/
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...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DAliasAnalysisCounter.cpp33 unsigned NoMR, JustRef, JustMod, MR; member in class:__anon19741::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;
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCJITInfo.h37 virtual void relocate(void *Function, MachineRelocation *MR,
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/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/Target/X86/
H A DX86JITInfo.h66 virtual void relocate(void *Function, MachineRelocation *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/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp417 virtual void addRelocation(const MachineRelocation &MR) { argument
418 Relocations.push_back(MR);
842 MachineRelocation &MR = Relocations[i]; local
844 if (!MR.letTargetResolve()) {
845 if (MR.isExternalSymbol()) {
846 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
848 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
852 if (MR.mayNeedFarStub()) {
855 } else if (MR.isGlobalValue()) {
856 ResultPtr = getPointerToGlobal(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/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp131 const MemRegion *MR,
136 const MemRegion *MR,
156 const MemRegion *MR);
633 const MemRegion *MR,
637 MR = MR->StripCasts();
639 switch (MR->getKind()) {
667 return state->remove<CStringLength>(MR);
669 return state->set<CStringLength>(MR, strLength);
675 const MemRegion *MR,
632 setCStringLength(ProgramStateRef state, const MemRegion *MR, SVal strLength) argument
672 getCStringLengthForRegion(CheckerContext &C, ProgramStateRef &state, const Expr *Ex, const MemRegion *MR, bool hypothetical) argument
713 const MemRegion *MR = Buf.getAsRegion(); local
950 SummarizeRegion(raw_ostream &os, ASTContext &Ctx, const MemRegion *MR) argument
2100 const MemRegion *MR = VarLoc.getAsRegion(); local
2136 const MemRegion *MR = *I; local
2151 const MemRegion *MR = I.getKey(); local
[all...]
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()));
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-myanmar-machine.rl51 MR = 22;
71 medial_group = MY? MR? MW? MH? As?;
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetJITInfo.h107 virtual void relocate(void *Function, MachineRelocation *MR, argument
/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/eigen/bench/
H A 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 }; };

Completed in 632 milliseconds

123