Home
last modified time | relevance | path

Searched refs:Copy (Results 1 – 25 of 573) sorted by relevance

12345678910>>...23

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DMachineCopyPropagation.cpp198 auto &Copy = I.first->second; in trackCopy() local
199 if (!is_contained(Copy.DefRegs, Def)) in trackCopy()
200 Copy.DefRegs.push_back(Def); in trackCopy()
328 bool eraseIfRedundant(MachineInstr &Copy, MCRegister Src, MCRegister Def);
331 bool isForwardableRegClassCopy(const MachineInstr &Copy,
333 bool isBackwardPropagatableRegClassCopy(const MachineInstr &Copy,
366 if (MachineInstr *Copy = Tracker.findCopyForUnit(*RUI, *TRI)) { in ReadRegister() local
368 LLVM_DEBUG(dbgs() << "MCP: Copy is used - not dead: "; Copy->dump()); in ReadRegister()
369 MaybeDeadCopies.remove(Copy); in ReadRegister()
371 CopyDbgUsers[Copy].insert(&Reader); in ReadRegister()
[all …]
/openbsd/src/gnu/llvm/llvm/docs/AMDGPU/
Dgfx1030_tgt.rst18 pos{0..4} Copy vertex position 0..4.
19 param{0..31} Copy vertex parameter 0..31.
20 mrt{0..7} Copy pixel color to the MRTs 0..7.
21 mrtz Copy pixel depth (Z) data.
22 prim Copy primitive (connectivity) data.
23 null Copy nothing.
Dgfx10_tgt.rst18 pos{0..4} Copy vertex position 0..4.
19 param{0..31} Copy vertex parameter 0..31.
20 mrt{0..7} Copy pixel color to the MRTs 0..7.
21 mrtz Copy pixel depth (Z) data.
22 prim Copy primitive (connectivity) data.
23 null Copy nothing.
Dgfx11_tgt.rst18 pos{0..4} Copy vertex position 0..4.
19 mrt{0..7} Copy pixel color to the MRTs 0..7.
20 mrtz Copy pixel depth (Z) data.
21 prim Copy primitive (connectivity) data.
22 dual_src_blend0 Copy dual source blend left.
23 dual_src_blend1 Copy dual source blend right.
Dgfx7_tgt.rst18 pos{0..3} Copy vertex position 0..3.
19 param{0..31} Copy vertex parameter 0..31.
20 mrt{0..7} Copy pixel color to the MRTs 0..7.
21 mrtz Copy pixel depth (Z) data.
22 null Copy nothing.
Dgfx8_tgt.rst18 pos{0..3} Copy vertex position 0..3.
19 param{0..31} Copy vertex parameter 0..31.
20 mrt{0..7} Copy pixel color to the MRTs 0..7.
21 mrtz Copy pixel depth (Z) data.
22 null Copy nothing.
Dgfx9_tgt.rst18 pos{0..3} Copy vertex position 0..3.
19 param{0..31} Copy vertex parameter 0..31.
20 mrt{0..7} Copy pixel color to the MRTs 0..7.
21 mrtz Copy pixel depth (Z) data.
22 null Copy nothing.
/openbsd/src/gnu/usr.bin/perl/win32/
Dperllib.c71 Copy(&perlMem, &perlMemInfo->perlMemList, perlMemInfo->nCount, void*); in perl_get_host_info()
75 Copy(&perlMem, &perlMemSharedInfo->perlMemList, perlMemSharedInfo->nCount, void*); in perl_get_host_info()
79 Copy(&perlMem, &perlMemParseInfo->perlMemList, perlMemParseInfo->nCount, void*); in perl_get_host_info()
83 Copy(&perlEnv, &perlEnvInfo->perlEnvList, perlEnvInfo->nCount, void*); in perl_get_host_info()
87 Copy(&perlStdIO, &perlStdIOInfo->perlStdIOList, perlStdIOInfo->nCount, void*); in perl_get_host_info()
91 Copy(&perlLIO, &perlLIOInfo->perlLIOList, perlLIOInfo->nCount, void*); in perl_get_host_info()
95 Copy(&perlDir, &perlDirInfo->perlDirList, perlDirInfo->nCount, void*); in perl_get_host_info()
99 Copy(&perlSock, &perlSockInfo->perlSockList, perlSockInfo->nCount, void*); in perl_get_host_info()
103 Copy(&perlProc, &perlProcInfo->perlProcList, perlProcInfo->nCount, void*); in perl_get_host_info()
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DValueMap.h261 ValueMapCallbackVH Copy(*this);
262 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
266 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
267 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
274 ValueMapCallbackVH Copy(*this);
275 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
282 Config::onRAUW(Copy.Map->Data, Copy.Unwrap(), typed_new_key);
284 typename ValueMapT::MapT::iterator I = Copy.Map->Map.find(Copy);
287 if (I != Copy.Map->Map.end()) {
289 Copy.Map->Map.erase(I); // Definitely destroys *this.
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DMemoryLocation.h296 MemoryLocation Copy(*this); in getWithNewPtr()
297 Copy.Ptr = NewPtr; in getWithNewPtr()
298 return Copy; in getWithNewPtr()
302 MemoryLocation Copy(*this); in getWithNewSize()
303 Copy.Size = NewSize; in getWithNewSize()
304 return Copy; in getWithNewSize()
308 MemoryLocation Copy(*this); in getWithoutAATags()
309 Copy.AATags = AAMDNodes(); in getWithoutAATags()
310 return Copy; in getWithoutAATags()
DInstructionSimplify.h121 SimplifyQuery Copy(*this); in getWithInstruction()
122 Copy.CxtI = I; in getWithInstruction()
123 return Copy; in getWithInstruction()
126 SimplifyQuery Copy(*this); in getWithoutUndef()
127 Copy.CanUseUndef = false; in getWithoutUndef()
128 return Copy; in getWithoutUndef()
/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DBitVector.h202 BitWord Copy = Bits[i]; variable
204 Copy = ~Copy;
208 Copy &= maskTrailingZeros<BitWord>(FirstBit);
213 Copy &= maskTrailingOnes<BitWord>(LastBit + 1);
215 if (Copy != 0)
216 return i * BITWORD_SIZE + countTrailingZeros(Copy);
234 BitWord Copy = Bits[CurrentWord]; in find_last_in() local
237 Copy &= maskTrailingOnes<BitWord>(LastBit + 1); in find_last_in()
242 Copy &= maskTrailingZeros<BitWord>(FirstBit); in find_last_in()
245 if (Copy != 0) in find_last_in()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_dense_map_test.cpp329 static int Copy; member
332 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove()
334 Copy++; in operator =()
343 int CountCopyAndMove::Copy = 0; member in __anonf04c44340111::__anonf04c44340311::CountCopyAndMove
379 CountCopyAndMove::Copy = 0; in TEST()
391 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
403 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
416 CountCopyAndMove::Copy = 0; in TEST()
428 EXPECT_EQ(0, CountCopyAndMove::Copy); in TEST()
440 CountCopyAndMove::Copy = 0; in TEST()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/
DSystemZLDCleanup.cpp119 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), in ReplaceTLSCall() local
126 return Copy; in ReplaceTLSCall()
139 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), in SetRegister() local
143 return Copy; in SetRegister()
/openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/
DAArch64CleanupLocalDynamicTLSPass.cpp104 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), in replaceTLSBaseAddrCall() local
115 return Copy; in replaceTLSBaseAddrCall()
129 MachineInstr *Copy = in setRegister() local
134 return Copy; in setRegister()
/openbsd/src/gnu/usr.bin/perl/cpan/Socket/
DSocket.xs736 Copy(SvPV_nolen(addr), sa, addr_len, char); in xs_getnameinfo()
893 Copy("\\socket", sun_ad.sun_path, off, char); in pack_sockaddr_un()
894 Copy(pathname_pv, sun_ad.sun_path + off, len, char); in pack_sockaddr_un()
903 Copy(pathname_pv, sun_ad.sun_path, len, char); in pack_sockaddr_un()
942 Copy(sun_ad, &addr, sockaddrlen, char); in unpack_sockaddr_un()
945 Copy(sun_ad, &addr, sizeof(addr), char); in unpack_sockaddr_un()
957 Copy(sun_ad, &addr, sizeof(addr), char); in unpack_sockaddr_un()
1046 Copy(sin, &addr, sizeof(addr), char); in unpack_sockaddr_in()
1094 Copy(addrbytes, &sin6.sin6_addr, sizeof(sin6.sin6_addr), char);
1130 Copy(addrbytes, &sin6, sizeof(sin6), char); in unpack_sockaddr_in6()
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DTypeSize.h121 LeafTy Copy = LHS; variable
122 return Copy += RHS;
126 LeafTy Copy = LHS; variable
127 return Copy -= RHS;
131 LeafTy Copy = LHS; variable
132 return Copy *= RHS;
138 LeafTy Copy = LHS; variable
139 return Copy *= -1;
DInstructionCost.h174 InstructionCost Copy = *this; variable
176 return Copy;
185 InstructionCost Copy = *this; variable
187 return Copy;
/openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
DCommand.pm213 require File::Copy;
216 $nok ||= !File::Copy::move($src,$dst);
243 require File::Copy;
246 $nok ||= !File::Copy::copy($src,$dst);
/openbsd/src/usr.sbin/pkg_add/OpenBSD/
DBaseState.pm245 require File::Copy;
247 my $r = File::Copy::copy(@p);
268 require File::Copy;
270 my $r = File::Copy::copy(@p);
/openbsd/src/gnu/usr.bin/perl/t/lib/
Ddeprecate.t8 use File::Copy ();
42 File::Copy::copy($module, $pm);
71 File::Copy::copy($opt_mod, $pm);
/openbsd/src/gnu/usr.bin/perl/dist/Module-CoreList/
DMakefile.PL43 require File::Copy;
44 File::Copy::copy( 'corelist', "corelist$version" );
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
DDebugChecksumsSubsection.cpp72 uint8_t *Copy = Storage.Allocate<uint8_t>(Bytes.size()); in addChecksum() local
73 ::memcpy(Copy, Bytes.data(), Bytes.size()); in addChecksum()
74 Entry.Checksum = ArrayRef(Copy, Bytes.size()); in addChecksum()
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DSIFixSGPRCopies.cpp89 MachineInstr *Copy; member in __anon977eb7110111::V2SCopyInfo
109 V2SCopyInfo() : Copy(nullptr), ID(0){}; in V2SCopyInfo()
111 : Copy(C), NumSVCopies(0), NumReadfirstlanes(Width / 32), ID(Id){}; in V2SCopyInfo()
114 dbgs() << ID << " : " << *Copy << "\n\tS:" << SChain.size() in dump()
182 getCopyRegClasses(const MachineInstr &Copy, in getCopyRegClasses() argument
185 Register DstReg = Copy.getOperand(0).getReg(); in getCopyRegClasses()
186 Register SrcReg = Copy.getOperand(1).getReg(); in getCopyRegClasses()
336 static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy, in isSafeToFoldImmIntoCopy() argument
341 if (Copy->getOpcode() != AMDGPU::COPY) in isSafeToFoldImmIntoCopy()
353 if (Copy->getOperand(0).getSubReg()) in isSafeToFoldImmIntoCopy()
[all …]
/openbsd/src/gnu/usr.bin/perl/
Dinstall_lib.pl11 require File::Copy;
95 unless ($opts{notify} or File::Copy::copy($from, $to) and ++$success) {
99 and File::Copy::copy($from, $to) and ++$success;

12345678910>>...23