Home
last modified time | relevance | path

Searched refs:Save (Results 1 - 25 of 65) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DShrinkWrap.cpp11 // 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; member in __anon24125::ShrinkWrap
[all...]
H A DPrologEpilogInserter.cpp107 // Save and Restore blocks of the current function. Typically there is a
371 // Save refs to entry and return blocks. in calculateSaveRestoreBlocks()
465 // - Anything that is not Save or Restore -> LiveThrough. in updateLiveness()
466 // - Save -> LiveIn. in updateLiveness()
473 MachineBasicBlock *Save = MFI.getSavePoint(); in updateLiveness() local
475 if (!Save) in updateLiveness()
476 Save = Entry; in updateLiveness()
478 if (Entry != Save) { in updateLiveness()
482 Visited.insert(Save); in updateLiveness()
488 // through Save in updateLiveness()
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DZipRegistry.h40 void Save() const;
151 void Save() const;
181 void Save() const;
205 void Save() const;
/third_party/skia/tests/
H A DRecordPatternTest.cpp16 typedef Pattern<Is<Save>,
38 REPORTER_ASSERT(r, pattern.first<Save>() != nullptr); in DEF_TEST()
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern; in DEF_TEST()
101 Pattern<Is<Save>, in DEF_TEST()
102 Greedy<Not<Or<Is<Save>, in DEF_TEST()
H A DRecordDrawTest.cpp48 assert_type<SkRecords::Save> (r, record, 1); in DEF_TEST()
86 int save_count = count_instances_of_type<SkRecords::Save>(rerecord); in DEF_TEST()
87 int restore_count = count_instances_of_type<SkRecords::Save>(rerecord); in DEF_TEST()
109 assert_type<SkRecords::Save> (r, translateRecord, 1); in DEF_TEST()
H A DRecordTest.cpp83 APPEND(record, SkRecords::Save); in DEF_TEST()
94 assert_type<SkRecords::Save >(r, record, 0); in DEF_TEST()
/third_party/skia/src/core/
H A DSkRecordOpts.cpp76 // Turns the logical NoOp Save and Restore in Save-Draw*-Restore patterns into actual NoOps.
78 typedef Pattern<Is<Save>,
84 record->replace<NoOp>(begin); // Save in onMatch()
144 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
146 // Greedy matches greedily, so we also have to exclude Save and Restore.
148 typedef Pattern<Is<Save>,
149 Greedy<Not<Or<Is<Save>,
157 // The entire span between Save and Restore (inclusively) does nothing. in onMatch()
229 Save
[all...]
/third_party/musl/porting/liteos_a/user/src/string/arm/
H A Dmemcmp.S77 vorr d4, d0, d1 @ d4: Save the result of calculating whether the first 16 bytes are equal.
78 vorr d5, d2, d3 @ d5: Save the result of calculating whether the last 16 bytes are equal.
79 vorr d6, d4, d5 @ d6: Save the result of 32 bytes calculation whether they are equal.
/third_party/musl/src/string/arm/liteos_a/
H A Dmemcmp.S77 vorr d4, d0, d1 @ d4: Save the result of calculating whether the first 16 bytes are equal.
78 vorr d5, d2, d3 @ d5: Save the result of calculating whether the last 16 bytes are equal.
79 vorr d6, d4, d5 @ d6: Save the result of 32 bytes calculation whether they are equal.
/third_party/python/Lib/idlelib/
H A Dconfig.py126 def Save(self): member in IdleUserConfParser
763 self.userCfg[key].Save()
792 save_option: Save option and value to config parser.
793 save_all: Save all the changes to the config parser and file.
827 """Save configuration changes to the user config file.
832 idleConf.userCfg['main'].Save()
846 idleConf.userCfg[config_type].Save()
849 # Save these even if unchanged!
850 idleConf.userCfg[config_type].Save()
865 configpage.Save()
[all...]
/third_party/libsnd/Octave/
H A Dsndfile_save.m19 ## Save the given @var{data} as audio data to the given at @var{fs}. Set
24 ## Description: Save data as a sound file
/third_party/rust/crates/clap/tests/derive/
H A Dnested_subcommands.rs167 Save,
190 Some(SubSubCmdWithOption::Stash { cmd: Stash::Save }), in sub_sub_cmd_with_option()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp107 // Save the range of call-saved registers, for use by the in assignCalleeSavedSpillSlots()
146 // Save the range of call-saved registers, for use by the in assignCalleeSavedSpillSlots()
251 // Save GPRs in spillCalleeSavedRegisters()
281 // Save FPRs/VRs in the normal TargetInstrInfo way. in spillCalleeSavedRegisters()
464 for (auto &Save : CSI) { in emitPrologue()
465 unsigned Reg = Save.getReg(); in emitPrologue()
467 int FI = Save.getFrameIdx(); in emitPrologue()
543 for (auto &Save : CSI) { in emitPrologue()
544 unsigned Reg = Save.getReg(); in emitPrologue()
565 getFrameIndexReference(MF, Save in emitPrologue()
[all...]
/third_party/rust/crates/regex/src/
H A Dpikevm.rs265 EmptyLook(_) | Save(_) | Split(_) => false, in step()
316 Save(ref inst) => { in add_step()
/third_party/musl/src/thread/mips/
H A Dclone.s6 # Save function pointer and argument pointer on new thread stack
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp300 auto *Save = S->getCoroSave(); in createResumeEntryBlock() local
301 Builder.SetInsertPoint(Save); in createResumeEntryBlock()
315 Save->replaceAllUsesWith(ConstantTokenNone::get(C)); in createResumeEntryBlock()
316 Save->eraseFromParent(); in createResumeEntryBlock()
1061 static bool hasCallsBetween(Instruction *Save, Instruction *ResumeOrDestroy) { in hasCallsBetween() argument
1062 auto *SaveBB = Save->getParent(); in hasCallsBetween()
1066 return hasCallsInBlockBetween(Save->getNextNode(), ResumeOrDestroy); in hasCallsBetween()
1068 // Any calls from Save to the end of the block? in hasCallsBetween()
1069 if (hasCallsInBlockBetween(Save->getNextNode(), nullptr)) in hasCallsBetween()
1114 // calls in between Save an in simplifySuspendPoint()
[all...]
/third_party/node/src/
H A Dnode_http_parser.cc128 void Save() { in Save() function
582 void Save() { in Save() function in node::__anon15424::Parser
583 url_.Save(); in Save()
584 status_message_.Save(); in Save()
587 fields_[i].Save(); in Save()
591 values_[i].Save(); in Save()
829 Save(); in Execute()
/third_party/musl/src/thread/mipsn32/
H A Dclone.s6 # Save function pointer and argument pointer on new thread stack
/third_party/musl/src/thread/mips64/
H A Dclone.s6 # Save function pointer and argument pointer on new thread stack
/third_party/musl/src/thread/riscv64/
H A Dclone.s10 # Save func and arg to stack
/third_party/musl/src/thread/riscv32/
H A Dclone.s10 # Save func and arg to stack
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h334 MachineBasicBlock *Save = nullptr; member in llvm::MachineFrameInfo
789 MachineBasicBlock *getSavePoint() const { return Save; } in getSavePoint()
790 void setSavePoint(MachineBasicBlock *NewSave) { Save = NewSave; } in setSavePoint()
/third_party/musl/src/thread/loongarch64/
H A Dclone.s11 # Save function pointer and argument pointer on new thread stack
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_noop.c148 struct _glapi_table *tab = ctx->Save; in vbo_install_save_vtxfmt_noop()
/third_party/node/deps/v8/src/heap/base/asm/ia32/
H A Dpush_registers_masm.S33 ;; Save 3rd parameter (IterateStackCallback).

Completed in 15 milliseconds

123