Home
last modified time | relevance | path

Searched refs:MP (Results 1 – 25 of 209) sorted by relevance

123456789

/openbsd-src/sys/sys/
H A Dmount.h537 #define VFS_MOUNT(MP, PATH, DATA, NDP, P) \ argument
538 (*(MP)->mnt_op->vfs_mount)(MP, PATH, DATA, NDP, P) argument
539 #define VFS_START(MP, FLAGS, P) (*(MP)->mnt_op->vfs_start)(MP, FLAGS, P) argument
540 #define VFS_UNMOUNT(MP, FORCE, P) (*(MP)->mnt_op->vfs_unmount)(MP, FORCE, P) argument
541 #define VFS_ROOT(MP, VP argument
535 VFS_MOUNT(MP,PATH,DATA,NDP,P) global() argument
542 VFS_SYNC(MP,W,S,C,P) global() argument
543 VFS_VGET(MP,INO,VPP) global() argument
544 VFS_FHTOVP(MP,FIDP,VPP) global() argument
547 VFS_CHECKEXP(MP,NAM,EXFLG,CRED) global() argument
[all...]
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h36 inline raw_ostream &operator<<(raw_ostream &OS, MemProt MP) {
37 return OS << (((MP & MemProt::Read) != MemProt::None) ? 'R' : '-')
38 << (((MP & MemProt::Write) != MemProt::None) ? 'W' : '-')
39 << (((MP & MemProt::Exec) != MemProt::None) ? 'X' : '-');
44 inline sys::Memory::ProtectionFlags toSysMemoryProtectionFlags(MemProt MP) { in toSysMemoryProtectionFlags() argument
46 if ((MP & MemProt::Read) != MemProt::None) in toSysMemoryProtectionFlags()
48 if ((MP & MemProt::Write) != MemProt::None) in toSysMemoryProtectionFlags()
50 if ((MP & MemProt::Exec) != MemProt::None) in toSysMemoryProtectionFlags()
58 MemProt MP = MemProt::None; in fromSysMemoryProtectionFlags() local
60 MP |= MemProt::Read; in fromSysMemoryProtectionFlags()
[all …]
H A DTargetProcessControlTypes.h152 MemProt MP = MemProt::None; in deserialize() local
154 MP |= MemProt::Read; in deserialize()
156 MP |= MemProt::Write; in deserialize()
158 MP |= MemProt::Exec; in deserialize()
161 AG = AllocGroup(MP, MDP); in deserialize()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp741 &MR.getTargetJITDylib() == &MP.PlatformJD && MP.Bootstrap; in modifyPassConfig()
758 if (InitSymbol == MP.MachOHeaderStartSymbol && !InBootstrapPhase) { in modifyPassConfig()
814 std::lock_guard<std::mutex> Lock(MP.Bootstrap.load()->Mutex); in bootstrapPipelineStart()
815 ++MP.Bootstrap.load()->ActiveGraphs; in bootstrapPipelineStart()
823 {*MP.MachOHeaderStartSymbol, &MP.Bootstrap.load()->MachOHeaderAddr}, in bootstrapPipelineRecordRuntimeFunctions()
824 {*MP.PlatformBootstrap.Name, &MP.PlatformBootstrap.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
825 {*MP.PlatformShutdown.Name, &MP.PlatformShutdown.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
826 {*MP.RegisterJITDylib.Name, &MP.RegisterJITDylib.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
827 {*MP.DeregisterJITDylib.Name, &MP.DeregisterJITDylib.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
828 {*MP.RegisterObjectPlatformSections.Name, in bootstrapPipelineRecordRuntimeFunctions()
[all …]
H A DELFNixPlatform.cpp643 if (MR.getInitializerSymbol() == MP.DSOHandleSymbol) { in modifyPassConfig()
694 return Sym->getName() == *MP.DSOHandleSymbol; in addDSOHandleSupportPasses()
698 std::lock_guard<std::mutex> Lock(MP.PlatformMutex); in addDSOHandleSupportPasses()
700 MP.HandleAddrToJITDylib[HandleAddr] = &JD; in addDSOHandleSupportPasses()
701 assert(!MP.InitSeqs.count(&JD) && "InitSeq entry for JD already exists"); in addDSOHandleSupportPasses()
702 MP.InitSeqs.insert(std::make_pair( in addDSOHandleSupportPasses()
763 if (!MP.RuntimeBootstrapped) { in addEHAndTLVSupportPasses()
764 std::lock_guard<std::mutex> Lock(MP.PlatformMutex); in addEHAndTLVSupportPasses()
765 MP.BootstrapPOSRs.push_back(POSR); in addEHAndTLVSupportPasses()
770 if (auto Err = MP.registerPerObjectSections(POSR)) in addEHAndTLVSupportPasses()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DLegacyPassManager.cpp421 std::tuple<Pass *, bool> getOnTheFlyPass(Pass *MP, AnalysisID PI,
433 ModulePass *MP = getContainedPass(Index); in dumpPassStructure() local
434 MP->dumpPassStructure(Offset + 1); in dumpPassStructure()
436 OnTheFlyManagers.find(MP); in dumpPassStructure()
439 dumpLastUses(MP, Offset+1); in dumpPassStructure()
509 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]); in getContainedManager() local
510 return MP; in getContainedManager()
1529 ModulePass *MP = getContainedPass(Index); in runOnModule() local
1532 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier()); in runOnModule()
1533 dumpRequiredSet(MP); in runOnModule()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp278 for (auto &MP : InsertedPHIs) in insertUse() local
279 if (MemoryPhi *Phi = cast_or_null<MemoryPhi>(MP)) in insertUse()
285 static void setMemoryPhiValueForBlock(MemoryPhi *MP, const BasicBlock *BB, in setMemoryPhiValueForBlock() argument
289 int i = MP->getBasicBlockIndex(BB); in setMemoryPhiValueForBlock()
293 for (const BasicBlock *BlockBB : llvm::drop_begin(MP->blocks(), i)) { in setMemoryPhiValueForBlock()
296 MP->setIncomingValue(i, NewDef); in setMemoryPhiValueForBlock()
447 for (auto &MP : InsertedPHIs) { in insertDef() local
448 MemoryPhi *Phi = dyn_cast_or_null<MemoryPhi>(MP); in insertDef()
454 for (const auto &MP : ExistingPhis) { in insertDef() local
455 MemoryPhi *Phi = dyn_cast_or_null<MemoryPhi>(MP); in insertDef()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp29 static DWORD getWindowsProtectionFlags(MemProt MP) { in getWindowsProtectionFlags() argument
30 if (MP == MemProt::Read) in getWindowsProtectionFlags()
32 if (MP == MemProt::Write || in getWindowsProtectionFlags()
33 MP == (MemProt::Write | MemProt::Read)) { in getWindowsProtectionFlags()
37 if (MP == (MemProt::Read | MemProt::Exec)) in getWindowsProtectionFlags()
39 if (MP == (MemProt::Read | MemProt::Write | MemProt::Exec)) in getWindowsProtectionFlags()
41 if (MP == MemProt::Exec) in getWindowsProtectionFlags()
/openbsd-src/share/mk/
H A Dbsd.dep.mk19 CFLAGS += -MD -MP
20 CXXFLAGS += -MD -MP
23 DFLAGS += -MD -MP -MT $*.o -MT $*.po -MT $*.so -MT $*.do
/openbsd-src/sys/arch/i386/conf/
H A DGENERIC.MP1 # $OpenBSD: GENERIC.MP,v 1.11 2018/06/03 05:18:33 deraadt Exp $
3 # GENERIC.MP - sample multiprocessor kernel
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Dtic4xcoff.sc2 # otherwise in microprocessor (MP) mode the vectors are mapped to address 0
11 # 5. MP mode, external ROM.
12 # 6. MP mode, external ROM, external RAM.
13 # 7. MP mode, external RAM (dual-port with hosting CPU or external debugger).
26 # In MP mode with external ROM, DATA needs to be copied into RAM at boot time.
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Dtic4xcoff.sc2 # otherwise in microprocessor (MP) mode the vectors are mapped to address 0
11 # 5. MP mode, external ROM.
12 # 6. MP mode, external ROM, external RAM.
13 # 7. MP mode, external RAM (dual-port with hosting CPU or external debugger).
26 # In MP mode with external ROM, DATA needs to be copied into RAM at boot time.
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOPlatform.h124 MachOPlatformPlugin(MachOPlatform &MP) : MP(MP) {} in MachOPlatformPlugin() argument
179 MachOPlatform &MP; variable
/openbsd-src/sys/arch/luna88k/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/alpha/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/riscv64/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/arm64/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/landisk/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/hppa/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/macppc/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/armv7/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/octeon/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/amd64/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/loongson/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP
/openbsd-src/sys/arch/powerpc64/
H A DMakefile7 .if exists(conf/GENERIC.MP)
8 KFILE= GENERIC.MP

123456789