/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFCodeEmitter.cpp | 92 MachineRelocation &MR = *MRI; in finishFunction() local 93 uintptr_t MBBOffset = getMachineBasicBlockAddress(MR.getBasicBlock()); in finishFunction() 94 MR.setResultPointer((void*)MBBOffset); in finishFunction() 95 MR.setConstantVal(ES->SectionIdx); in finishFunction() 96 JTSection.addRelocation(MR); in finishFunction() 104 MachineRelocation &MR = Relocations[i]; in finishFunction() local 106 if (MR.isGlobalValue()) { in finishFunction() 107 EW.AddPendingGlobalSymbol(MR.getGlobalValue()); in finishFunction() 108 } else if (MR.isExternalSymbol()) { in finishFunction() 109 EW.AddPendingExternalSymbol(MR.getExternalSymbol()); in finishFunction() [all …]
|
D | ELFCodeEmitter.h | 44 void addRelocation(const MachineRelocation &MR) { in addRelocation() argument 45 Relocations.push_back(MR); in addRelocation()
|
D | ELFWriter.cpp | 597 MachineRelocation MR = in EmitGlobalDataRelocation() local 607 GblS.addRelocation(MR); in EmitGlobalDataRelocation() 774 MachineRelocation &MR = *MRI; in EmitRelocations() local 777 unsigned RelOffset = MR.getMachineCodeOffset(); in EmitRelocations() 783 unsigned RelType = TEW->getRelocationType(MR.getRelocationType()); in EmitRelocations() 789 if (MR.isGlobalValue()) { in EmitRelocations() 790 const GlobalValue *G = MR.getGlobalValue(); in EmitRelocations() 791 int64_t GlobalOffset = MR.getConstantVal(); in EmitRelocations() 802 } else if (MR.isExternalSymbol()) { in EmitRelocations() 803 const char *ExtSym = MR.getExternalSymbol(); in EmitRelocations() [all …]
|
/external/libcxx/test/std/re/re.results/ |
D | types.pass.cpp | 36 typedef std::match_results<CharT*> MR; in test() typedef 37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), ""); in test() 38 …static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value),… in test() 39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), ""); in test() 40 static_assert((!std::is_same<typename MR::const_iterator, void>::value), ""); in test() 41 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), ""); in test() 42 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), ""); in test() 43 …static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >… in test() 44 static_assert((std::is_same<typename MR::char_type, CharT>::value), ""); in test() 45 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), ""); in test()
|
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
D | MPIChecker.cpp | 30 const MemRegion *const MR = in checkDoubleNonblocking() local 32 if (!MR) in checkDoubleNonblocking() 34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkDoubleNonblocking() 37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion()))) in checkDoubleNonblocking() 41 const Request *const Req = State->get<RequestMap>(MR); in checkDoubleNonblocking() 46 BReporter.reportDoubleNonblocking(PreCallEvent, *Req, MR, ErrorNode, Ctx.getBugReporter()); in checkDoubleNonblocking() 51 State = State->set<RequestMap>(MR, Request::State::Nonblocking); in checkDoubleNonblocking() 60 const MemRegion *const MR = topRegionUsedByWait(PreCallEvent); in checkUnmatchedWaits() local 61 if (!MR) in checkUnmatchedWaits() 63 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkUnmatchedWaits() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMJITInfo.cpp | 238 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 …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | Store.cpp | 216 const MemRegion *MR = V.getAsRegion(); in regionMatchesCXXRecordType() local 217 if (!MR) in regionMatchesCXXRecordType() 220 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR); in regionMatchesCXXRecordType() 287 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) { in getCXXRecordType() argument 288 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR)) in getCXXRecordType() 290 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in getCXXRecordType() 299 const MemRegion *MR = Base.getAsRegion(); in evalDynamicCast() local 300 if (!MR) in evalDynamicCast() 312 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) { in evalDynamicCast() 315 return loc::MemRegionVal(MR); in evalDynamicCast() [all …]
|
D | SymbolManager.cpp | 421 bool SymbolReaper::isLiveRegion(const MemRegion *MR) { in isLiveRegion() argument 422 if (RegionRoots.count(MR)) in isLiveRegion() 425 MR = MR->getBaseRegion(); in isLiveRegion() 427 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in isLiveRegion() 430 if (const VarRegion *VR = dyn_cast<VarRegion>(MR)) in isLiveRegion() 437 if (isa<AllocaRegion>(MR)) in isLiveRegion() 440 if (isa<CXXThisRegion>(MR)) in isLiveRegion() 443 if (isa<MemSpaceRegion>(MR)) in isLiveRegion() 446 if (isa<CodeTextRegion>(MR)) in isLiveRegion()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.cpp | 19 VSOSearchOrderResolver(MaterializationResponsibility &MR) : MR(MR) {} in VSOSearchOrderResolver() argument 22 auto &ES = MR.getTargetVSO().getExecutionSession(); in lookup() 29 MR.addDependenciesForAll(Deps); in lookup() 33 MR.getTargetVSO().withSearchOrderDo([&](const VSOList &VSOs) { in lookup() 48 auto &ES = MR.getTargetVSO().getExecutionSession(); in lookupFlags() 56 MR.getTargetVSO().withSearchOrderDo([&](const VSOList &VSOs) { in lookupFlags() 73 MaterializationResponsibility &MR; member in __anonb0e0a2a90111::VSOSearchOrderResolver
|
D | Legacy.cpp | 18 ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR) in JITSymbolResolverAdapter() argument 19 : ES(ES), R(R), MR(MR) {} in JITSymbolResolverAdapter() 33 if (MR) in lookup() 34 MR->addDependenciesForAll(Deps); in lookup()
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsJITInfo.cpp | 195 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument 197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate() 199 void *RelocPos = (char*) Function + MR->getMachineCodeOffset(); in relocate() 200 intptr_t ResultPtr = (intptr_t) MR->getResultPointer(); in relocate() 202 switch ((Mips::RelocationType) MR->getRelocationType()) { in relocate() 215 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) { in relocate()
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCJITInfo.cpp | 410 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument 412 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate() 413 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; in relocate() 414 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); in relocate() 415 switch ((PPC::RelocationType)MR->getRelocationType()) { in relocate() 434 ResultPtr += MR->getConstantVal(); in relocate() 437 if (MR->getRelocationType() == PPC::reloc_absolute_high) { in relocate() 453 ResultPtr += MR->getConstantVal(); in relocate()
|
/external/u-boot/doc/ |
D | README.marubun-pcmcia | 2 U-Boot MARUBUN MR-SHPC-01 PCMCIA controller driver 8 This driver supports MARUBUN MR-SHPC-01. 37 This is MR-SHPC-01 PCMCIA controller base address. 43 This is MR-SHPC-01 memory window base address. 49 This is MR-SHPC-01 attribute window base address. 55 This is MR-SHPC-01 I/O window base address.
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | AliasAnalysisCounter.cpp | 33 unsigned NoMR, JustRef, JustMod, MR; member in __anon2396c23f0111::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() 163 case ModRef: MR++; MRString = "ModRef"; break; in getModRefInfo()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 417 virtual void addRelocation(const MachineRelocation &MR) { in addRelocation() argument 418 Relocations.push_back(MR); in addRelocation() 842 MachineRelocation &MR = Relocations[i]; in finishFunction() local 844 if (!MR.letTargetResolve()) { in finishFunction() 845 if (MR.isExternalSymbol()) { in finishFunction() 846 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(), in finishFunction() 848 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to [" in finishFunction() 852 if (MR.mayNeedFarStub()) { in finishFunction() 855 } else if (MR.isGlobalValue()) { in finishFunction() 856 ResultPtr = getPointerToGlobal(MR.getGlobalValue(), in finishFunction() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CStringChecker.cpp | 131 const MemRegion *MR, 136 const MemRegion *MR, 156 const MemRegion *MR); 633 const MemRegion *MR, in setCStringLength() argument 637 MR = MR->StripCasts(); in setCStringLength() 639 switch (MR->getKind()) { in setCStringLength() 667 return state->remove<CStringLength>(MR); in setCStringLength() 669 return state->set<CStringLength>(MR, strLength); in setCStringLength() 675 const MemRegion *MR, in getCStringLengthForRegion() argument 679 const SVal *Recorded = state->get<CStringLength>(MR); in getCStringLengthForRegion() [all …]
|
D | VforkChecker.cpp | 200 const MemRegion *MR = L.getAsRegion(); in checkBind() local 203 if (!MR || MR == VforkLhs) in checkBind()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86JITInfo.cpp | 527 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, in relocate() argument 529 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate() 530 void *RelocPos = (char*)Function + MR->getMachineCodeOffset(); in relocate() 531 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); in relocate() 532 switch ((X86::RelocationType)MR->getRelocationType()) { in relocate() 536 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal(); in relocate() 543 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal()); in relocate()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonStoreWidening.cpp | 434 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local 438 .addReg(MR.getReg(), getKillRegState(MR.isKill()), MR.getSubReg()) in createWideStores() 457 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local 461 .addReg(MR.getReg(), getKillRegState(MR.isKill()), MR.getSubReg()) in createWideStores()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SubEngine.h | 142 const MemRegion* MR) { in processRegionChange() argument 143 return processRegionChanges(state, nullptr, MR, MR, nullptr); in processRegionChange()
|
/external/u-boot/arch/arm/mach-imx/mx6/ |
D | ddr.c | 931 #define MR(val, ba, cmd, cs1) \ macro 1181 mmdc0->mdscr = MR(63, 0, 3, cs); in mx6_lpddr2_cfg() 1186 mmdc0->mdscr = MR(val, 0, 3, cs); in mx6_lpddr2_cfg() 1189 mmdc0->mdscr = MR(val, 0, 3, cs); in mx6_lpddr2_cfg() 1192 mmdc0->mdscr = MR(val, 0, 3, cs); in mx6_lpddr2_cfg() 1195 mmdc0->mdscr = MR(val, 0, 3, cs); in mx6_lpddr2_cfg() 1477 debug("MR2 CS%d: 0x%08x\n", cs, (u32)MR(val, 2, 3, cs)); in mx6_ddr3_cfg() 1478 mmdc0->mdscr = MR(val, 2, 3, cs); in mx6_ddr3_cfg() 1480 debug("MR3 CS%d: 0x%08x\n", cs, (u32)MR(0, 3, 3, cs)); in mx6_ddr3_cfg() 1481 mmdc0->mdscr = MR(0, 3, 3, cs); in mx6_ddr3_cfg() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonStoreWidening.cpp | 439 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local 442 .addReg(MR.getReg(), getKillRegState(MR.isKill())) in createWideStores() 461 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local 464 .addReg(MR.getReg(), getKillRegState(MR.isKill())) in createWideStores()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXFrameLowering.cpp | 38 MachineRegisterInfo &MR = MF.getRegInfo(); in emitPrologue() local 54 if (!MR.use_empty(NVPTX::VRFrame)) { in emitPrologue()
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 19f9e07c0b915bcfa515d76e82bb604c.00000793.honggfuzz.cov | 13 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0… 17 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0… 21 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0…
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 19f9e07c0b915bcfa515d76e82bb604c.00000793.honggfuzz.cov | 13 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0… 17 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0… 21 ��a\W�Ѷ?�U�I�O�?f�7<���n�߲ G�ң��&��0���3��K�r?MR�]/lǚ �Kˎ��Wn��)r�����a5 �V��gW��xB��0…
|