Home
last modified time | relevance | path

Searched refs:Destination (Results 1 – 25 of 47) sorted by relevance

12

/llvm-project-15.0.7/clang/test/CodeGen/
H A Dms-intrinsics.c225 void *test_InterlockedCompareExchangePointer(void * volatile *Destination, in test_InterlockedCompareExchangePointer() argument
400 return _InterlockedCompareExchange8(Destination, Exchange, Comperand); in test_InterlockedCompareExchange8()
418 return _InterlockedCompareExchange(Destination, Exchange, Comperand); in test_InterlockedCompareExchange()
437 __int64 volatile *Destination, __int64 ExchangeHigh, in test_InterlockedCompareExchange128() argument
439 return _InterlockedCompareExchange128(++Destination, ++ExchangeHigh, in test_InterlockedCompareExchange128()
465 __int64 volatile *Destination, __int64 ExchangeHigh, in test_InterlockedCompareExchange128_acq() argument
467 return _InterlockedCompareExchange128_acq(Destination, ExchangeHigh, in test_InterlockedCompareExchange128_acq()
471 __int64 volatile *Destination, __int64 ExchangeHigh, in test_InterlockedCompareExchange128_nf() argument
473 return _InterlockedCompareExchange128_nf(Destination, ExchangeHigh, in test_InterlockedCompareExchange128_nf()
477 __int64 volatile *Destination, __int64 ExchangeHigh, in test_InterlockedCompareExchange128_rel() argument
[all …]
H A Dms-intrinsics-other.c134 LONG test_InterlockedCompareExchange(LONG volatile *Destination, LONG Exchange, LONG Comperand) { in test_InterlockedCompareExchange() argument
135 return _InterlockedCompareExchange(Destination, Exchange, Comperand); in test_InterlockedCompareExchange()
265 LONG test_InterlockedCompareExchange_acq(LONG volatile *Destination, LONG Exchange, LONG Comperand)… in test_InterlockedCompareExchange_acq() argument
266 return _InterlockedCompareExchange_acq(Destination, Exchange, Comperand); in test_InterlockedCompareExchange_acq()
274 LONG test_InterlockedCompareExchange_rel(LONG volatile *Destination, LONG Exchange, LONG Comperand)… in test_InterlockedCompareExchange_rel() argument
275 return _InterlockedCompareExchange_rel(Destination, Exchange, Comperand); in test_InterlockedCompareExchange_rel()
283 LONG test_InterlockedCompareExchange_nf(LONG volatile *Destination, LONG Exchange, LONG Comperand) { in test_InterlockedCompareExchange_nf() argument
284 return _InterlockedCompareExchange_nf(Destination, Exchange, Comperand); in test_InterlockedCompareExchange_nf()
/llvm-project-15.0.7/clang/include/clang/Tooling/
H A DFixIt.h62 FixItHint createReplacement(const D &Destination, const S &Source, in createReplacement() argument
64 return FixItHint::CreateReplacement(internal::getSourceRange(Destination), in createReplacement()
70 FixItHint createReplacement(const D &Destination, StringRef Source) { in createReplacement() argument
71 return FixItHint::CreateReplacement(internal::getSourceRange(Destination), in createReplacement()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp145 CopyOperands->Destination->getReg().asMCReg()); in invalidateRegister()
242 Register AvailDef = CopyOperands->Destination->getReg(); in findAvailBackwardCopy()
272 Register AvailDef = CopyOperands->Destination->getReg(); in findAvailCopy()
416 if (PrevCopyOperands->Destination->isDead()) in eraseIfRedundant()
428 Register CopyDef = CopyOperands->Destination->getReg(); in eraseIfRedundant()
444 Register Def = CopyOperands->Destination->getReg(); in isBackwardPropagatableRegClassCopy()
513 Register CopyDstReg = CopyOperands->Destination->getReg(); in isForwardableRegClassCopy()
661 Register RegDef = CopyOperands->Destination->getReg(); in ForwardCopyPropagateBlock()
851 Register Def = CopyOperands->Destination->getReg(); in isBackwardPropagatableCopy()
892 Register Def = CopyOperands->Destination->getReg(); in propagateDefs()
[all …]
/llvm-project-15.0.7/libcxxabi/test/
H A Ddynamic_cast_stress.pass.cpp56 typedef B<Width/2, Depth> Destination; in test() typedef
58 Destination *b = nullptr; in test()
61 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a); in test()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DErrorOrTest.cpp80 struct Destination { in TEST() struct
81 Destination(const Source&) {} in TEST() argument
82 Destination(Source&&) = delete; in TEST()
85 ErrorOr<Destination> x = s; in TEST()
H A DPath.cpp2460 SmallString<128> Destination(RootTestDirectory.path()); in TEST_F() local
2461 path::append(Destination, "destination"); in TEST_F()
2462 ASSERT_FALSE(fs::exists(Destination)); in TEST_F()
2463 fs::copy_file(Sources[0], Destination); in TEST_F()
2464 verifyFileContents(Destination, Data[0]); in TEST_F()
2467 fs::copy_file(Sources[1], Destination); in TEST_F()
2468 verifyFileContents(Destination, Data[1]); in TEST_F()
2489 fs::copy_file(Symlink, Destination); in TEST_F()
2490 verifyFileContents(Destination, Data[2]); in TEST_F()
2495 ASSERT_NO_ERROR(fs::is_symlink_file(Destination, IsDestinationSymlink)); in TEST_F()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_msvc.h31 extern "C" char _InterlockedCompareExchange8(char volatile *Destination,
34 extern "C" short _InterlockedCompareExchange16(short volatile *Destination,
38 long long volatile *Destination, long long Exchange, long long Comparand);
41 void *volatile *Destination,
44 extern "C" long __cdecl _InterlockedCompareExchange(long volatile *Destination,
/llvm-project-15.0.7/llvm/test/Transforms/GCOVProfiling/
H A Dexit-block.ll69 ; EXIT-LAST: Destination Edges
70 ; EXIT-SECOND-NOT: Destination Edges
73 ; EXIT-LAST-NOT: Destination Edges
74 ; EXIT-SECOND: Destination Edges
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h142 unsigned Destination; member
146 Dependence(unsigned Source, unsigned Destination, DepType Type) in Dependence()
147 : Source(Source), Destination(Destination), Type(Type) {} in Dependence()
833 return LAI.getDepChecker().getMemoryInstructions()[Destination]; in getDestination()
H A DDependenceAnalysis.h77 Dependence(Instruction *Source, Instruction *Destination) in Dependence() argument
78 : Src(Source), Dst(Destination) {} in Dependence()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp189 Instruction *Destination = Dep.getDestination(LAI); in findStoreToLoadDependences() local
194 if (isa<LoadInst>(Destination)) in findStoreToLoadDependences()
195 LoadsWithUnknownDepedence.insert(Destination); in findStoreToLoadDependences()
203 std::swap(Source, Destination); in findStoreToLoadDependences()
210 auto *Load = dyn_cast<LoadInst>(Destination); in findStoreToLoadDependences()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCleanup.cpp288 BranchFixups.back().Destination == nullptr) in popNullFixups()
343 if (Fixup.Destination == nullptr) continue; in ResolveAllBranchFixups()
361 if (!CasesAdded.insert(Fixup.Destination).second) in ResolveAllBranchFixups()
365 Fixup.Destination); in ResolveAllBranchFixups()
406 if (Fixup.Destination != Block) continue; in ResolveBranchFixups()
408 Fixup.Destination = nullptr; in ResolveBranchFixups()
951 if (!Fixup.Destination) continue; in PopCleanupBlock()
1114 Fixup.Destination = Dest.getBlock(); in EmitBranchThroughCleanup()
H A DEHScopeStack.h46 llvm::BasicBlock *Destination; member
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-promote-const.ll16 ; Destination registers are defined by the ABI
25 ; Destination registers are defined by the ABI
45 ; Destination register is defined by ABI
56 ; Destination register is defined by ABI
/llvm-project-15.0.7/compiler-rt/lib/builtins/
H A Dfp_trunc.h69 #error Destination should be single precision or double precision!
H A Dfp_extend.h76 #error Destination should be single, double, or quad precision!
/llvm-project-15.0.7/llvm/test/MachineVerifier/
H A Dtest_g_is_fpclass.mir23 ; CHECK: *** Bad machine code: Destination must be a scalar or vector of scalars ***
/llvm-project-15.0.7/llvm/test/Linker/
H A Donly-needed-dtors2.ll6 ; Destination module:
H A Donly-needed-ctors2.ll6 ; Destination module:
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A DLLGSOptions.td38 defm log_file: SJ<"log-file", "Destination file to log to. If empty, log to stderr.">,
/llvm-project-15.0.7/lldb/docs/man/
H A Dlldb-server.rst90 Destination file to log to. If empty, log to stderr.
143 Destination file to log to. If empty, log to stderr.
/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DHTMLGenerator.cpp228 static SmallString<128> computeRelativePath(StringRef Destination, in computeRelativePath() argument
233 return Destination; in computeRelativePath()
236 if (Destination == Origin) in computeRelativePath()
240 llvm::sys::path::const_iterator FileI = llvm::sys::path::begin(Destination); in computeRelativePath()
241 llvm::sys::path::const_iterator FileE = llvm::sys::path::end(Destination); in computeRelativePath()
/llvm-project-15.0.7/llvm/docs/
H A DAMDGPUInstructionSyntax.rst34 * :ref:`Destination operand type suffix<amdgpu_syn_instruction_type>`.
/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kInstrArithmetic.td96 /*Destination can only be a data register*/
188 // Destination encoding
333 // Destination register
435 // Destination (i.e. memory operand) encoding
453 // Destination (i.e. memory operand) encoding

12