| /llvm-project/flang/unittests/Evaluate/ |
| H A D | intrinsics.cpp | 63 template <typename A> TestCall &Push(A &&x) { in Push() function 68 template <typename A> TestCall &Push(NamedArg<A> &&x) { in Push() function 74 template <typename A, typename... As> TestCall &Push(A &&x, As &&...xs) { in Push() function 75 Push(std::move(x)); in Push() 76 return Push(std::move(xs)...); in Push() 166 .Push(Const(Scalar<Int4>{})) in TestIntrinsics() 169 .Push(Named("a", Const(Scalar<Int4>{}))) in TestIntrinsics() 172 .Push(Const(Scalar<Int4>{})) in TestIntrinsics() 175 .Push(Named("bad", Const(Scalar<Int4>{}))) in TestIntrinsics() 179 .Push(Const(Scalar<Int4>{})) in TestIntrinsics() [all …]
|
| /llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCAPElim.cpp | 67 Instruction *Push = nullptr; in OptimizeBB() local 71 Push = &Inst; in OptimizeBB() 76 if (Push && cast<CallInst>(&Inst)->getArgOperand(0) == Push) { in OptimizeBB() 82 << " Push: " << *Push in OptimizeBB() 85 Push->eraseFromParent(); in OptimizeBB() 87 Push = nullptr; in OptimizeBB() 91 Push = nullptr; in OptimizeBB()
|
| /llvm-project/llvm/test/tools/llvm-rc/Inputs/ |
| H A D | tag-dialog.rc | 14 PUSHBUTTON "Push 1", 32, 200, 0, 54, 11 15 PUSHBUTTON "Push 2", 33, 201, 15, 54, 11, 12345 16 PUSHBUTTON "Push 3", 34, 202, 30, 54, 11, 0xA, 0xC0000042 17 PUSHBUTTON "Push 4", 35, 200, 45, 54, 11, 0, 1, 2
|
| /llvm-project/llvm/test/CodeGen/Mips/msa/ |
| H A D | frameindex.ll | 21 %2 = alloca [492 x i8] ; Push the frame--acounting for the emergency spill 37 %2 = alloca [497 x i8] ; Push the frame--acounting for the emergency spill 55 %2 = alloca [32752 x i8] ; Push the frame--acounting for the emergency spill 75 %2 = alloca [32753 x i8] ; Push the frame--acounting for the emergency spill 125 %2 = alloca [1004 x i8] ; Push the frame--acounting for the emergency spill 141 %2 = alloca [1009 x i8] ; Push the frame--acounting for the emergency spill 159 %2 = alloca [32752 x i8] ; Push the frame--acounting for the emergency spill 179 %2 = alloca [32753 x i8] ; Push the frame--acounting for the emergency spill 229 %2 = alloca [2028 x i8] ; Push the frame--acounting for the emergency spill 245 %2 = alloca [2033 x i8] ; Push th [all...] |
| /llvm-project/llvm/test/MC/RISCV/ |
| H A D | option-pushpop.s | 32 .option push # Push relax=false, rvc=false 42 .option push # Push relax=true, rvc=false 76 .option push # Push pic=false 88 .option push # Push pic=true 100 .option pop # Push pic=true 109 .option pop # Push pic=false
|
| /llvm-project/llvm/lib/Target/X86/ |
| H A D | X86CallFrameOptimization.cpp | 510 MachineBasicBlock::iterator Push = nullptr; in adjustCallSequence() local 524 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)).add(PushOp); in adjustCallSequence() 525 Push->cloneMemRefs(MF, *Store); in adjustCallSequence() 552 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)); in adjustCallSequence() 556 Push->addOperand(DefMov->getOperand(i)); in adjustCallSequence() 557 Push->cloneMergedMemRefs(MF, {DefMov, &*Store}); in adjustCallSequence() 561 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence() 564 Push->cloneMemRefs(MF, *Store); in adjustCallSequence() 575 MBB, std::next(Push), DL, in adjustCallSequence()
|
| /llvm-project/flang/include/flang/Evaluate/ |
| H A D | static-data.h | 63 StaticDataObject &Push(const std::string &, bool /*ignored*/ = false); 64 StaticDataObject &Push(const std::u16string &, bool bigEndian = false); 65 StaticDataObject &Push(const std::u32string &, bool bigEndian = false);
|
| /llvm-project/flang/lib/Evaluate/ |
| H A D | static-data.cpp | 28 StaticDataObject &StaticDataObject::Push(const std::string &string, bool) { in Push() function in Fortran::evaluate::StaticDataObject 35 StaticDataObject &StaticDataObject::Push( in Push() function in Fortran::evaluate::StaticDataObject 45 StaticDataObject &StaticDataObject::Push( in Push() function in Fortran::evaluate::StaticDataObject
|
| H A D | fold-implementation.h | 300 array->Push(Expr<T>{std::move(*element)}); in ApplyComponent() 306 array->Push(Expr<T>{*value}); in ApplyComponent() 1394 result.Push(Expr<T>{Constant<T>{c->At(at)}}); in MapOperation() 1474 result.Push(Fold(context, f(Expr<OPERAND>{std::move(scalar)}))); 1482 result.Push(Fold(context, f(std::move(scalar)))); 1550 result.Push(Fold(context, 1570 result.Push( 1589 result.Push( 1610 result.Push(Fold(context, 1620 result.Push( [all...] |
| /llvm-project/clang/test/Preprocessor/ |
| H A D | _Pragma-in-macro-arg.c | 23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop argument
|
| /llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_ilist.h | 68 void Push(Elem* e, INode* after); 83 Push(e, &node_); in PushFront() 88 Push(e, node_.prev_); in PushBack() 92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) { in Push() function
|
| /llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerFork.cpp | 285 void Push(FuzzJob *Job) { in Push() function 307 MergeQ->Push(Job); in WorkerThread() 370 FuzzQ.Push(nullptr); in FuzzWithFork() 371 MergeQ.Push(nullptr); in FuzzWithFork() 381 FuzzQ.Push(Env.CreateNewJob(JobId++)); in FuzzWithFork() 478 FuzzQ.Push(Env.CreateNewJob(JobId++)); in FuzzWithFork()
|
| /llvm-project/lldb/bindings/lua/ |
| H A D | lua-wrapper.swig | 17 // Push the Lua wrappers 52 // Push the Lua wrappers
|
| /llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_lfstack.h | 35 void Push(T *p) { in Push() function
|
| /llvm-project/llvm/test/CodeGen/X86/ |
| H A D | mul-shift-reassoc.ll | 6 ; Push the shl through the mul to allow an LEA to be formed, instead
|
| /llvm-project/lldb/tools/lldb-dap/ |
| H A D | ProgressEvent.h | 138 void Push(uint64_t progress_id, const char *message, uint64_t completed, 153 /// Mutex that prevents running \a Push and \a ReportStartEvents
|
| H A D | ProgressEvent.cpp | 211 // already, the Push method will be able to continue its in ReportStartEvents() 219 void ProgressEventReporter::Push(uint64_t progress_id, const char *message, in Push() 217 void ProgressEventReporter::Push(uint64_t progress_id, const char *message, Push() function in ProgressEventReporter
|
| /llvm-project/llvm/docs/ |
| H A D | GitHub.rst | 309 # Push your changes to your fork branch, be mindful of 329 # Push the rebased changes to your fork. 376 # Push your changes to your fork branch, be mindful of 404 # Push your changes to your fork branch, be mindful of 424 # Push the rebased changes to your fork.
|
| /llvm-project/llvm/test/CodeGen/RISCV/ |
| H A D | push-pop-opt-crash.ll | 8 ; This source code exposed a crash in the RISC-V Zcmp Push/Pop optimization
|
| /llvm-project/clang-tools-extra/pseudo/lib/ |
| H A D | GLR.cpp | |
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 265 void Push(const ObjectSP &item) { m_items.push_back(item); } in Push() function 414 array_sp->Push(key_object_sp); in GetKeys()
|
| /llvm-project/mlir/include/mlir/IR/ |
| H A D | PDLPatternMatch.h.inc | 142 /// Push a new Attribute value onto the result list. 145 /// Push a new Operation onto the result list. 148 /// Push a new Type onto the result list. 151 /// Push a new TypeRange onto the result list. 170 /// Push a new Value onto the result list. 173 /// Push a new ValueRange onto the result list.
|
| /llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_allocator.h | 103 void Push(AsanChunk *n);
|
| /llvm-project/flang/lib/Semantics/ |
| H A D | expression.cpp | 1191 .Push(cp->GetScalarValue().value(), in AsSubscript() 1557 to.Push(std::move(DEREF(typed))); in Test() 1560 to.Push(ImpliedDo<T>{impliedDo.name(), in Test() 1635 void Push(MaybeExpr &&); in Push() 1672 void ArrayConstructorContext::Push(MaybeExpr &&x) { in Push() 1749 values_.Push(std::move(*x)); in Push() 1752 values_.Push(std::move(*x)); in Push() 1787 values_.Push(std::move(*cast)); in Add() 1845 Push(std::move(converted)); in Add() 1847 values_.Push(ImpliedD in Add() 1634 void ArrayConstructorContext::Push(MaybeExpr &&x) { Push() function in Fortran::evaluate::ArrayConstructorContext [all...] |
| /llvm-project/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 470 void Push(const lldb::IOHandlerSP &sp) { 471 void Push(const lldb::IOHandlerSP &sp) { Push() function
|