Home
last modified time | relevance | path

Searched refs:VM (Results 1 – 25 of 92) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DValueMapper.h152 ValueMapper(ValueToValueMapTy &VM, RemapFlags Flags = RF_None,
166 registerAlternateMappingContext(ValueToValueMapTy &VM,
217 inline Value *MapValue(const Value *V, ValueToValueMapTy &VM,
221 return ValueMapper(VM, Flags, TypeMapper, Materializer).mapValue(*V);
239 inline Metadata *MapMetadata(const Metadata *MD, ValueToValueMapTy &VM,
247 inline MDNode *MapMetadata(const MDNode *MD, ValueToValueMapTy &VM,
262 inline void RemapInstruction(Instruction *I, ValueToValueMapTy &VM,
270 inline void RemapDPValue(Module *M, DPValue *V, ValueToValueMapTy &VM,
291 inline void RemapFunction(Function &F, ValueToValueMapTy &VM,
295 ValueMapper(VM, Flags, TypeMapper, Materializer).remapFunction(F);
[all …]
H A DLoopConstrainer.h142 ValueToValueMapTy &VM, bool IsSubloop);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrVec.td5 // Pseudo instructions for VM/VM512 spill/restore
17 (outs VM:$vmx), (ins MEMrii:$addr),
25 (outs), (ins MEMrii:$addr, VM:$vmx),
403 // Section 8.9.22 - LVM (Load VM)
427 defm LVM : LVMm<"lvm", 0xb7, VM>;
429 // Section 8.9.23 - SVM (Save VM)
438 defm SVM : SVMm<"svm", 0xa7, VM>;
1488 // Section 8.17.4 - ANDM (And VM)
1489 defm ANDM : RVM2m<"andm", 0x84, VM>;
1491 // Section 8.17.5 - ORM (Or VM)
[all …]
H A DVERegisterInfo.td154 def VM#I : VEMaskReg<I, "vm"#I, [], ["vm"#I]>, DwarfRegNum<[!add(128,I)]>;
156 // Aliases of VMs to use as a pair of two VM for packed instructions
163 [!cast<VEMaskReg>("VM"#!shl(I,1)),
164 !cast<VEMaskReg>("VM"#!add(!shl(I,1),1))],
198 def VM : RegisterClass<"VE", [v256i1], 64, (sequence "VM%u", 0, 15)>;
/freebsd-14.2/tools/test/stress2/misc/
H A Dradix.sh77 Suppose that I write a program for i386 that creates giant VM objects,
80 4104, 4105, ... in each of the VM objects. (The sequence would be
82 limitation by mmap(2)ing and munmap(2)ing windows onto a VM object.
83 Each of the VM objects would have only one less interior node in the
84 radix tree than pages. If I create enough of these VM objects, then I
/freebsd-14.2/sys/contrib/device-tree/Bindings/hwmon/
H A Dmoortec,mr75203.yaml20 *) Voltage Monitor (VM) - used to monitor voltage levels (e.g. mr74138).
26 be presented for VM for measurement within its range (e.g. mr76006 -
29 TS, VM & PD also include a digital interface, which consists of configuration
58 PVT controller has 5 VM (voltage monitor) sensors.
59 vm-map defines CPU core to VM instance mapping. A
60 value of 0xff means that VM sensor is unused.
75 Defines the number of channels per VM that are actually used and are
79 Minimum value of each item - 0 (which means entire VM sensor is not used).
86 The pre-scaler is used for input sources that exceed the VM input range.
/freebsd-14.2/tools/regression/nfsmmap/
H A DREADME3 VM system's use of the underlying VM pages.
12 valid, the VM system must re-read the invalid parts of the
16 This is the same as test1 without the fsync. The VM system
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Testing/ADT/
H A DStringMapEntry.h103 : KM(std::move(KMArg)), VM(std::move(VMArg)) {}
108 new StringMapEntryMatcherImpl<const StringMapEntryT &>(KM, VM));
113 const ValueMatcherT VM;
122 IsStringMapEntry(KeyMatcherT KM, ValueMatcherT VM) {
124 std::move(KM), std::move(VM));
/freebsd-14.2/sys/contrib/device-tree/Bindings/reserved-memory/
H A Dxen,shared-memory.txt4 virtual machine. Typically, a region is configured at VM creation time
20 memory region used for the mapping in the borrower VM.
24 the VM config file
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dbeetle3 # beetle: file(1) magic for Beetle VM object files
7 0 string BEETLE\000 Beetle VM object file
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp88 if (const auto *VM = Obj->getObject("VersionMap")) { in parseDarwinSDKSettingsJSON() local
91 for (const auto &KV : *VM) { in parseDarwinSDKSettingsJSON()
108 if (const auto *Mapping = VM->getObject("macOS_iOSMac")) { in parseDarwinSDKSettingsJSON()
116 if (const auto *Mapping = VM->getObject("iOSMac_macOS")) { in parseDarwinSDKSettingsJSON()
/freebsd-14.2/crypto/openssh/.github/workflows/
H A Dupstream.yml22 - name: shutdown VM if running
26 - name: startup VM
50 - name: shutdown VM
H A Dselfhosted.yml20 # worker. The default is an ephemeral VM running under libvirt.
89 - name: shutdown VM if running
95 - name: startup VM
123 - name: shutdown VM
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp100 ValueToValueMapTy *VM; member
104 explicit MappingContext(ValueToValueMapTy &VM, in MappingContext()
106 : VM(&VM), Materializer(Materializer) {} in MappingContext()
125 Mapper(ValueToValueMapTy &VM, RemapFlags Flags, in Mapper() argument
128 MCs(1, MappingContext(VM, Materializer)) {} in Mapper()
136 registerAlternateMappingContext(ValueToValueMapTy &VM, in registerAlternateMappingContext() argument
138 MCs.push_back(MappingContext(VM, Materializer)); in registerAlternateMappingContext()
178 ValueToValueMapTy &getVM() { return *MCs[CurrentMCID].VM; } in getVM()
1188 ValueMapper::ValueMapper(ValueToValueMapTy &VM, RemapFlags Flags, in ValueMapper() argument
1191 : pImpl(new Mapper(VM, Flags, TypeMapper, Materializer)) {} in ValueMapper()
[all …]
H A DLoopConstrainer.cpp699 ValueToValueMapTy &VM, in createClonedLoopStructure() argument
711 New.addBasicBlockToLoop(cast<BasicBlock>(VM[BB]), LI); in createClonedLoopStructure()
715 createClonedLoopStructure(SubLoop, &New, VM, /* IsSubloop */ true); in createClonedLoopStructure()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h105 const ValueToValueMapTy &VM,
110 const ValueToValueMapTy &VM);
/freebsd-14.2/sys/amd64/conf/
H A DFIRECRACKER2 # FIRECRACKER -- kernel configuration file for Firecracker VM
6 # Firecracker VM environment. It adds support for the Virtio MMIO bus,
15 # For more information about the Firecracker VM, see:
163 # Inside a VM, "power off" doesn't really yank the AC power, so there's
/freebsd-14.2/contrib/tcpdump/doc/
H A DREADME.solaris.md33 For reference, the tests were done on a VM booted from `sol-11_4-vbox.ova`
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMRegisterBankInfo.cpp93 checkValueMapping(const RegisterBankInfo::ValueMapping &VM, in checkValueMapping() argument
95 return VM.NumBreakDowns == 1 && VM.BreakDown == BreakDown; in checkValueMapping()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp105 ValueToValueMapTy VM; in runOnModule() local
107 VM[I->first] = I->second; in runOnModule()
/freebsd-14.2/tools/test/stress2/
H A DREADME9 VM pressure, varying numbers of threads, varying delays, etc.
/freebsd-14.2/share/dict/
H A Dfreebsd207 VM
/freebsd-14.2/share/dtrace/
H A Dnfsattrstats33 * outside of the context of a system call, most likely due to the VM
/freebsd-14.2/sys/i386/conf/
H A DNOTES312 # VM OPTIONS
318 # boot time due the kernel running out of VM space.
331 # structures allocated before the VM system is initialized such as the
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp1183 ValueInfoMap VM; in coalesceRegisters() local
1186 ValueInfoMap::iterator F = VM.find(OldVN); in coalesceRegisters()
1187 if (F == VM.end()) { in coalesceRegisters()
1189 VM.insert(std::make_pair(OldVN, NewVN)); in coalesceRegisters()

1234