Home
last modified time | relevance | path

Searched refs:Push (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/flang/unittests/Evaluate/
H A Dintrinsics.cpp75 Push(std::move(x)); in Push()
76 return Push(std::move(xs)...); in Push()
163 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
169 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
176 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
177 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
180 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
185 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
188 .Push(Const(Scalar<Int1>{})) in TestIntrinsics()
191 .Push(Const(Scalar<Int4>{})) in TestIntrinsics()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp69 Instruction *Push = nullptr; in OptimizeBB() local
73 Push = &Inst; in OptimizeBB()
78 if (Push && cast<CallInst>(&Inst)->getArgOperand(0) == Push) { in OptimizeBB()
84 << " Push: " << *Push in OptimizeBB()
87 Push->eraseFromParent(); in OptimizeBB()
89 Push = nullptr; in OptimizeBB()
93 Push = nullptr; in OptimizeBB()
/llvm-project-15.0.7/llvm/test/tools/llvm-rc/Inputs/
H A Dtag-dialog.rc14 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-15.0.7/llvm/test/CodeGen/Mips/msa/
H A Dframeindex.ll21 %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
128 %2 = alloca [1004 x i8] ; Push the frame--acounting for the emergency spill
144 %2 = alloca [1009 x i8] ; Push the frame--acounting for the emergency spill
162 %2 = alloca [32752 x i8] ; Push the frame--acounting for the emergency spill
182 %2 = alloca [32753 x i8] ; Push the frame--acounting for the emergency spill
235 %2 = alloca [2028 x i8] ; Push the frame--acounting for the emergency spill
251 %2 = alloca [2033 x i8] ; Push the frame--acounting for the emergency spill
[all …]
/llvm-project-15.0.7/llvm/test/MC/RISCV/
H A Doption-pushpop.s32 .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-15.0.7/llvm/lib/Target/X86/
H A DX86CallFrameOptimization.cpp510 MachineBasicBlock::iterator Push = nullptr; in adjustCallSequence() local
533 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)).add(PushOp); in adjustCallSequence()
534 Push->cloneMemRefs(MF, *Store); in adjustCallSequence()
561 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)); in adjustCallSequence()
565 Push->addOperand(DefMov->getOperand(i)); in adjustCallSequence()
566 Push->cloneMergedMemRefs(MF, {DefMov, &*Store}); in adjustCallSequence()
570 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence()
573 Push->cloneMemRefs(MF, *Store); in adjustCallSequence()
584 MBB, std::next(Push), DL, in adjustCallSequence()
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dstatic-data.h63 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-15.0.7/flang/lib/Evaluate/
H A Dstatic-data.cpp28 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 Dfold-implementation.h287 array->Push(Expr<T>{std::move(*element)}); in ApplyComponent()
293 array->Push(Expr<T>{*value}); in ApplyComponent()
1279 result.Push(Expr<T>{Constant<T>{c->At(at)}}); in AsFlatArrayConstructor()
1344 result.Push(Fold(context, f(Expr<OPERAND>{std::move(scalar)}))); in MapOperation()
1352 result.Push(Fold(context, f(std::move(scalar)))); in MapOperation()
1389 result.Push(Fold(context, in MapOperation()
1402 result.Push( in MapOperation()
1421 result.Push( in MapOperation()
1442 result.Push(Fold(context, in MapOperation()
1452 result.Push( in MapOperation()
/llvm-project-15.0.7/clang/test/Preprocessor/
H A D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop argument
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_ilist.h68 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-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h68 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-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp285 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-15.0.7/lldb/bindings/lua/
H A Dlua-wrapper.swig16 // Push the Lua wrappers
50 // Push the Lua wrappers
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h35 void Push(T *p) { in Push() function
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dmul-shift-reassoc.ll6 ; Push the shl through the mul to allow an LEA to be formed, instead
H A Davx-intel-ocl.ll20 ; Push is not deemed profitable if we're realigning the stack.
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DProgressEvent.h139 void Push(uint64_t progress_id, const char *message, uint64_t completed,
H A DProgressEvent.cpp212 void ProgressEventReporter::Push(uint64_t progress_id, const char *message, in Push() function in ProgressEventReporter
H A DVSCode.cpp326 progress_event_reporter.Push(progress_id, message, completed, total); in SendProgressEvent()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/
H A DGLR.cpp502 const PushSpec &Push = Sequences.top().second; in pushNext() local
503 FamilySequences.emplace_back(Sequences.top().first.Rule, *Push.Seq); in pushNext()
504 for (const GSS::Node *Base : Push.LastPop->parents()) { in pushNext()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h274 void Push(const ObjectSP &item) { m_items.push_back(item); } in Push() function
384 array_sp->Push(key_object_sp); in GetKeys()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_allocator.h103 void Push(AsanChunk *n);
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dexpression.cpp933 .Push(cp->GetScalarValue().value(), in Analyze()
1283 to.Push(std::move(DEREF(typed))); in MakeSpecific()
1286 to.Push(ImpliedDo<T>{impliedDo.name(), in MakeSpecific()
1336 void Push(MaybeExpr &&);
1366 void ArrayConstructorContext::Push(MaybeExpr &&x) { in Push() function in Fortran::evaluate::ArrayConstructorContext
1441 values_.Push(std::move(*x)); in Push()
1444 values_.Push(std::move(*x)); in Push()
1478 values_.Push(std::move(*cast)); in Push()
1519 Push(Expr<SomeType>{ in Add()
1522 values_.Push(ImpliedDo<SomeType>{anonymous, std::move(*lower), in Add()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h479 void Push(const lldb::IOHandlerSP &sp) { in Push() function

12