Home
last modified time | relevance | path

Searched refs:Save (Results 1 – 25 of 185) sorted by relevance

12345678

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DShrinkWrap.cpp192 Save = nullptr; in init()
322 if (!Save) in updateSaveRestorePoints()
323 Save = &MBB; in updateSaveRestorePoints()
325 Save = MDT->findNearestCommonDominator(Save, &MBB); in updateSaveRestorePoints()
327 if (!Save) { in updateSaveRestorePoints()
399 Save = MDT->findNearestCommonDominator(Save, Restore); in updateSaveRestorePoints()
412 Save = FindIDom<>(*Save, Save->predecessors(), *MDT); in updateSaveRestorePoints()
413 if (!Save) in updateSaveRestorePoints()
553 Save = FindIDom<>(*Save, Save->predecessors(), *MDT); in runOnMachineFunction()
554 if (!Save) in runOnMachineFunction()
[all …]
H A DPrologEpilogInserter.cpp425 MachineBasicBlock *Save = MFI.getSavePoint(); in updateLiveness() local
427 if (!Save) in updateLiveness()
428 Save = Entry; in updateLiveness()
430 if (Entry != Save) { in updateLiveness()
434 Visited.insert(Save); in updateLiveness()
447 if (CurBB == Save && Save != Restore) in updateLiveness()
/freebsd-12.1/libexec/rtld-elf/amd64/
H A Drtld_start.S86 pushfq # Save rflags
88 pushq %rax # Save %rax
91 pushq %rdx # Save %rdx
94 pushq %rcx # Save %rcx
97 pushq %rsi # Save %rsi
100 pushq %rdi # Save %rdi
103 pushq %r8 # Save %r8
106 pushq %r9 # Save %r9
109 pushq %r10 # Save %r10
112 pushq %r11 # Save %r11
/freebsd-12.1/libexec/rtld-elf/i386/
H A Drtld_start.S34 movl %esp,%eax # Save initial stack pointer
35 movl %esp,%esi # Save initial stack pointer
74 pushf # Save eflags
75 pushl %eax # Save %eax
76 pushl %edx # Save %edx
77 pushl %ecx # Save %ecx
/freebsd-12.1/usr.sbin/ppp/
H A Dlqr.c242 memcpy(&p->hdlc.lqm.lqr.prevSave, &p->hdlc.lqm.lqr.Save, in lqr_Input()
244 p->hdlc.lqm.lqr.Save.InLQRs = ++p->hdlc.lqm.lqr.InLQRs; in lqr_Input()
245 p->hdlc.lqm.lqr.Save.InPackets = p->hdlc.lqm.ifInUniPackets; in lqr_Input()
246 p->hdlc.lqm.lqr.Save.InDiscards = p->hdlc.lqm.ifInDiscards; in lqr_Input()
247 p->hdlc.lqm.lqr.Save.InErrors = p->hdlc.lqm.ifInErrors; in lqr_Input()
248 p->hdlc.lqm.lqr.Save.InOctets = p->hdlc.lqm.lqr.InGoodOctets; in lqr_Input()
498 lqr.PeerInLQRs = p->hdlc.lqm.lqr.Save.InLQRs; in lqr_LayerPush()
499 lqr.PeerInPackets = p->hdlc.lqm.lqr.Save.InPackets; in lqr_LayerPush()
500 lqr.PeerInDiscards = p->hdlc.lqm.lqr.Save.InDiscards; in lqr_LayerPush()
501 lqr.PeerInErrors = p->hdlc.lqm.lqr.Save.InErrors; in lqr_LayerPush()
[all …]
H A Dhdlc.h90 struct lqrsavedata Save; /* Our last LQR */ member
/freebsd-12.1/stand/i386/boot0/
H A Dboot0.S247 save_curdrive: movb %dl, (%bp) # Save drive number
323 print_drive: addb $'0'|0x80,%al # Save next
437 movb %al,_OPT(%bp) # Save option
450 pushf # Save results for later
466 1: pushw %bx # Save
492 pushw %si # Save ptr to selected part.
538 pushw %bx # Save
546 pushw %dx # Save
565 pushw %si # Save
566 movw %sp,%di # Save
/freebsd-12.1/stand/i386/btx/btx/
H A Dbtx.S288 setpic: in $0x21,%al # Save master
290 in $0xa1,%al # Save slave
352 pushl %ds # Save
477 pusha # Save gp regs
478 pushl %gs # Save
559 pushl %esi # Save
610 pushal # Save gp regs
611 pushl %gs # Save
615 pushfl # Save %eflags
654 pushl %esi # Save
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DTerminal.cpp115 bool TerminalState::Save(int fd, bool save_process_group) { in Save() function in TerminalState
257 bool TerminalStateSwitcher::Save(uint32_t idx, int fd, in Save() function in TerminalStateSwitcher
261 return m_ttystates[idx].Save(fd, save_process_group); in Save()
/freebsd-12.1/contrib/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp109 auto *Save = S->getCoroSave(); in createResumeEntryBlock() local
110 Builder.SetInsertPoint(Save); in createResumeEntryBlock()
123 Save->replaceAllUsesWith(ConstantTokenNone::get(C)); in createResumeEntryBlock()
124 Save->eraseFromParent(); in createResumeEntryBlock()
585 static bool hasCallsBetween(Instruction *Save, Instruction *ResumeOrDestroy) { in hasCallsBetween() argument
586 auto *SaveBB = Save->getParent(); in hasCallsBetween()
590 return hasCallsInBlockBetween(Save->getNextNode(), ResumeOrDestroy); in hasCallsBetween()
593 if (hasCallsInBlockBetween(Save->getNextNode(), nullptr)) in hasCallsBetween()
640 auto *Save = Suspend->getCoroSave(); in simplifySuspendPoint() local
641 if (hasCallsBetween(Save, CallInstr)) in simplifySuspendPoint()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTerminal.h82 bool Save(int fd, bool save_process_group);
203 bool Save(uint32_t idx, int fd, bool save_process_group);
/freebsd-12.1/stand/i386/btx/lib/
H A Dbtxv86.s51 __v86int: popl __v86ret # Save return address
67 pushl %eax # Save
75 movl %eax,0x8(%esp,1) # Save EBP
/freebsd-12.1/contrib/gcclibs/libcpp/
H A DChangeLog.gcc4318 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
19 (cpp_write_pch_state): Save __COUNTER__ state.
60 * macro.c (lex_expansion_token): Save and restore cpp_reader's
/freebsd-12.1/stand/i386/zfsboot/
H A Dzfsldr.S112 main.5: mov %dx,MEM_ARG # Save args
116 main.6: pushal # Save params
237 push %dx # Save
252 hex8: push %ax # Save
261 stosb # Save char
/freebsd-12.1/stand/i386/boot2/
H A Dboot1.S188 main.5: mov %dx,MEM_ARG # Save args
279 push %dx # Save
292 read.1: push %dx # Save
302 push %dx # Save
333 push %ax # Save
/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_trampoline_arm.S21 @ Save floating-point parameters of the instrumented function
51 @ Save the floating-point return value of the instrumented function
82 @ Save floating-point parameters of the instrumented function
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp370 for (auto &Save : CSI) { in emitPrologue() local
371 unsigned Reg = Save.getReg(); in emitPrologue()
438 for (auto &Save : CSI) { in emitPrologue() local
439 unsigned Reg = Save.getReg(); in emitPrologue()
460 getFrameIndexReference(MF, Save.getFrameIdx(), IgnoredFrameReg); in emitPrologue()
/freebsd-12.1/stand/i386/kgzldr/
H A Dcrt.s46 pusha # Save
57 xchgl %eax,%ecx # Save char
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h335 MachineBasicBlock *Save = nullptr; variable
763 MachineBasicBlock *getSavePoint() const { return Save; } in getSavePoint()
764 void setSavePoint(MachineBasicBlock *NewSave) { Save = NewSave; } in setSavePoint()
/freebsd-12.1/usr.sbin/cron/cron/
H A Dcrontab10 # Save some entropy so that /dev/random can re-seed on boot.
/freebsd-12.1/usr.sbin/bsdconfig/networking/share/
H A Drouting.subr100 # Save only if the user changed the default router/gateway.
105 # Save the default router/gateway
/freebsd-12.1/stand/i386/libi386/
H A Drelocater_tramp.S165 in $0x21,%al # Save master
167 in $0xa1,%al # Save slave
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DMachException.h43 Status Save(task_t task);
/freebsd-12.1/stand/i386/cdboot/
H A Dcdboot.S508 hex8: pushl %eax # Save
517 stosb # Save char
/freebsd-12.1/usr.sbin/bsdconfig/usermgmt/include/
H A Dmessages.subr106 msg_save="Save"
107 msg_save_exit_or_cancel="Choose Save/Exit when finished or Cancel."

12345678