HomeSort by: relevance | last modified time | path
    Searched defs:Save (Results 1 - 9 of 9) sorted by relevancy

  /src/usr.bin/mail/
cmd2.c 198 * Save/copy the indicated messages at the end of the passed file name.
260 * Save a message in a file. Mark the message as saved
264 save(void *v) function
269 return save1(str, 1, "save", saveignore);
273 * Save a message in a file. Mark the message as saved
274 * so we can discard when the user quits. Save all fields
278 Save(void *v)
283 return save1(str, 1, "Save", NULL);
548 * Add the given header fields to the save retained list.
549 * If no arguments, print the current list of save retained fields
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ShrinkWrap.cpp 11 // The safe point for the prologue (resp. epilogue) is called Save
15 // between 2) two executions of the Save (resp. Restore) point there is an
16 // execution of the Restore (resp. Save) point.
20 // Save
24 // Indeed, the execution looks like Save -> Restore -> Save -> Restore ...
27 // Save
34 // Indeed, the execution looks like Save -> Save -> ... -> Restore -> Restore.
119 MachineBasicBlock *Save;
    [all...]
PrologEpilogInserter.cpp 107 // Save and Restore blocks of the current function. Typically there is a
108 // single save block, unless Windows EH funclets are involved.
358 // So set the save points for those.
363 assert(MFI.getRestorePoint() && "Both restore and save must be set");
373 // Save refs to entry and return blocks.
466 // - Anything that is not Save or Restore -> LiveThrough.
467 // - Save -> LiveIn.
474 MachineBasicBlock *Save = MFI.getSavePoint();
476 if (!Save)
477 Save = Entry
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 335 MachineBasicBlock *Save = nullptr;
770 MachineBasicBlock *getSavePoint() const { return Save; }
771 void setSavePoint(MachineBasicBlock *NewSave) { Save = NewSave; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 664 NMOrErr->MemberName = Saver.save(sys::path::convert_to_slash(*FileNameOrErr));
670 NMOrErr->MemberName = Saver.save(
705 NMOrErr->MemberName = Saver.save(sys::path::convert_to_slash(FileName));
709 NMOrErr->MemberName = Saver.save(
1032 enum class MRICommand { AddLib, AddMod, Create, CreateThin, Delete, Save, End, Invalid };
1060 .Case("save", MRICommand::Save)
1095 case MRICommand::Save:
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 411 // Determine whether we have already seen this type. If so, we save
503 // Save the current top-level hash value.
2273 bool ASTUnit::Save(StringRef File) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIWholeQuadMode.cpp 35 /// wavefront mode (StrictWWM) and insert instructions to save and restore it:
42 /// we use a similar save and restore mechanism and force whole quad mode for
720 MachineInstr *Save =
727 LIS->InsertMachineInstrInMaps(*Save);
1324 // Whether we need to save SCC depends on start and end states.
1330 // Exact/Strict -> Strict: save SCC
1331 // Exact/Strict -> WQM: save SCC if WQM mask is generated from exec
1332 // Exact/Strict -> Exact: no save
1336 // WQM -> Exact/Strict: save SCC
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp 362 auto *Save = S->getCoroSave();
363 Builder.SetInsertPoint(Save);
377 Save->replaceAllUsesWith(ConstantTokenNone::get(C));
378 Save->eraseFromParent();
1349 static bool hasCallsBetween(Instruction *Save, Instruction *ResumeOrDestroy) {
1350 auto *SaveBB = Save->getParent();
1354 return hasCallsInBlockBetween(Save->getNextNode(), ResumeOrDestroy);
1356 // Any calls from Save to the end of the block?
1357 if (hasCallsInBlockBetween(Save->getNextNode(), nullptr))
1400 // calls in between Save and CallInstr. They can potenitally resume th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 7775 unsigned Save;
7805 reportParseError(ExprLoc, "expected save register or stack offset");
7809 Save = OffsetVal;
7817 Save = SaveOpnd.getGPR32Reg();
7835 CpSaveLocation = Save;
7838 getTargetStreamer().emitDirectiveCpsetup(FuncReg, Save, Ref->getSymbol(),

Completed in 40 milliseconds