Home
last modified time | relevance | path

Searched refs:Nop (Results 1 - 25 of 55) sorted by relevance

123

/third_party/skia/src/sksl/ir/
H A DSkSLNop.h19 class Nop final : public Statement {
23 Nop() in Nop() function in SkSL::final
27 return std::make_unique<Nop>(); in Make()
39 return std::make_unique<Nop>();
H A DSkSLIfStatement.cpp59 return (stmt && (!isEmpty || stmt->is<Nop>())) ? std::move(stmt) in replace_empty_with_nop()
60 : Nop::Make(); in replace_empty_with_nop()
97 // Replace an empty if-true branches with Nop; eliminate empty if-false branches entirely. in Make()
H A DSkSLExpressionStatement.cpp22 // Expression-statements without any side effect can be replaced with a Nop. in Make()
24 return Nop::Make(); in Make()
H A DSkSLBlock.cpp16 // If the Block is completely empty, synthesize a Nop. in MakeUnscoped()
18 return Nop::Make(); in MakeUnscoped()
H A DSkSLForStatement.cpp175 // A zero-iteration unrollable loop can be replaced with Nop. in Make()
176 // An unrollable loop with an empty body can be replaced with Nop. in Make()
178 return Nop::Make(); in Make()
H A DSkSLSwitchStatement.cpp273 return Nop::Make(); in Make()
/third_party/vixl/test/aarch32/
H A Dtest-assembler-aarch32.cc1496 __ Nop(); in EmitLdrdLiteralTest()
1617 __ Nop(); in EmitLdrdLiteralStressTest()
1706 __ Nop(); in TEST_T32()
1923 __ Nop(); in GenerateLdrLiteralTriggerPoolEmission()
2000 __ Nop(); in GenerateLdrLiteralRangeTest()
2508 __ Nop(); in TEST_T32()
2538 __ Nop(); in TEST_T32()
2619 while (masm.GetCursorOffset() < end) __ Nop(); in TEST_T32()
2658 __ Nop(); in TEST_T32()
3427 __ Nop(); in TEST()
[all...]
/third_party/skia/src/sksl/transform/
H A DSkSLEliminateUnreachableCode.cpp37 if (!stmt->is<Nop>()) { in EliminateUnreachableCode()
38 // Eliminate the dead statement by substituting a Nop. in EliminateUnreachableCode()
42 stmt = Nop::Make(); in EliminateUnreachableCode()
H A DSkSLEliminateDeadLocalVariables.cpp44 // replaces pure expressions with Nop. in EliminateDeadLocalVariables()
51 stmt = Nop::Make(); in EliminateDeadLocalVariables()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.h91 unsigned int Nop:1; member
H A Dr300_fragprog_emit.c281 if (inst->Nop) in emit_alu()
H A Dradeon_pair_schedule.c733 emitted->Prev->U.P.Nop = 1; in presub_nop()
749 emitted->Prev->U.P.Nop = 1; in presub_nop()
/third_party/node/deps/v8/src/wasm/
H A Djump-table-assembler.cc36 Nop(2); // 2 bytes in EmitFarJumpSlot()
59 Nop(bytes); in NopBytes()
85 Nop(bytes);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp732 MCInst *Nop = new (Context) MCInst; variable
733 Nop->setOpcode(Hexagon::A2_nop);
734 Inst.addOperand(MCOperand::createInst(Nop));
H A DHexagonMCInstrInfo.cpp806 MCInst Nop; in padEndloop() local
807 Nop.setOpcode(Hexagon::A2_nop); in padEndloop()
813 MCB.addOperand(MCOperand::createInst(new (Context) MCInst(Nop))); in padEndloop()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
H A DOther.cpp16 TEST_F(AssemblerX8632LowLevelTest, Nop) { in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
H A DOther.cpp16 TEST_F(AssemblerX8664LowLevelTest, Nop) { in TEST_F()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactor.hpp82 void Nop();
/third_party/skia/src/sksl/dsl/
H A DDSLStatement.cpp56 fStatement = SkSL::Nop::Make(); in DSLStatement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp96 OS << char(WebAssembly::Nop); in writeNopData()
H A DWebAssemblyMCTargetDesc.h144 static const unsigned Nop = 0x01; member
/third_party/skia/src/sksl/dsl/priv/
H A DDSLWriter.cpp84 return SkSL::Nop::Make(); in Declaration()
110 // If the variable declaration generated an error, we can end up with a Nop statement here. in AddVarDeclaration()
/third_party/rust/crates/rustix/src/
H A Dio_uring.rs189 Nop = sys::IORING_OP_NOP as _,
312 Self::Nop in default()
/third_party/vixl/benchmarks/aarch64/
H A Dbench-utils.cc205 __ Nop(); in GenerateTrivialSequence()
/third_party/skia/src/sksl/
H A DSkSLInliner.cpp537 return Nop::Make(); in inlineStatement()
546 return Nop::Make(); in inlineStatement()

Completed in 19 milliseconds

123