Home
last modified time | relevance | path

Searched refs:inst0 (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog_emit.c229 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) { in alu_nop()
230 code->inst[ip].inst0 |= R500_INST_NOP; in alu_nop()
261 code->inst[ip].inst0 = R500_INST_TYPE_OUT; in emit_paired()
267 code->inst[ip].inst0 = R500_INST_TYPE_ALU; in emit_paired()
269 code->inst[ip].inst0 |= (inst->SemWait << R500_INST_TEX_SEM_WAIT_SHIFT); in emit_paired()
271 code->inst[ip].inst0 |= (inst->RGB.WriteMask << 11); in emit_paired()
272 code->inst[ip].inst0 |= inst->Alpha.WriteMask ? 1 << 14 : 0; in emit_paired()
273 code->inst[ip].inst0 |= (inst->RGB.OutputWriteMask << 15) | (inst->Alpha.OutputWriteMask << 18); in emit_paired()
275 code->inst[ip].inst0 |= R500_INST_NOP; in emit_paired()
288 code->inst[ip].inst0 |= R500_INST_RGB_CLAMP; in emit_paired()
[all …]
Dr500_fragprog.c374 uint32_t inst0; in r500FragmentProgramDump() local
379 inst0 = inst = code->inst[n].inst0; in r500FragmentProgramDump()
395 switch(inst0 & 0x3) { in r500FragmentProgramDump()
Dradeon_code.h226 uint32_t inst0; member
/third_party/re2/re2/
Dcompile.cc46 static void Patch(Prog::Inst *inst0, PatchList l, uint32_t v);
49 static PatchList Deref(Prog::Inst *inst0, PatchList l);
52 static PatchList Append(Prog::Inst *inst0, PatchList l1, PatchList l2);
65 PatchList PatchList::Deref(Prog::Inst* inst0, PatchList l) { in Deref() argument
66 Prog::Inst* ip = &inst0[l.p>>1]; in Deref()
75 void PatchList::Patch(Prog::Inst *inst0, PatchList l, uint32_t val) { in Patch() argument
77 Prog::Inst* ip = &inst0[l.p>>1]; in Patch()
89 PatchList PatchList::Append(Prog::Inst* inst0, PatchList l1, PatchList l2) { in Append() argument
97 PatchList next = PatchList::Deref(inst0, l); in Append()
103 Prog::Inst* ip = &inst0[l.p>>1]; in Append()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dir_context_test.cpp1062 auto* inst0 = ctx->get_def_use_mgr()->GetDef(20); in TEST_F() local
1065 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 14); in TEST_F()
1073 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 12); in TEST_F()
/third_party/spirv-tools/test/opt/
Dir_context_test.cpp1062 auto* inst0 = ctx->get_def_use_mgr()->GetDef(20); in TEST_F() local
1065 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 14); in TEST_F()
1073 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 12); in TEST_F()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dir_context_test.cpp1062 auto* inst0 = ctx->get_def_use_mgr()->GetDef(20); in TEST_F() local
1065 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 14); in TEST_F()
1073 EXPECT_EQ(inst0->GetDebugScope().GetLexicalScope(), 12); in TEST_F()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DInstancingTest.cpp78 const std::string inst0 = inst + pos + main; in testSetUp() local
79 mProgram[0] = CompileProgram(inst0.c_str(), essl1_shaders::fs::Red()); in testSetUp()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DInstancingTest.cpp79 const std::string inst0 = inst + pos + main; in testSetUp() local
80 mProgram[0] = CompileProgram(inst0.c_str(), essl1_shaders::fs::Red()); in testSetUp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.h97 MCInst *deriveDuplex(MCContext &Context, unsigned iClass, MCInst const &inst0,
DHexagonMCInstrInfo.cpp177 MCInst const &inst0, in deriveDuplex() argument
183 MCInst *SubInst0 = new (Context) MCInst(deriveSubInst(inst0)); in deriveDuplex()
/third_party/mesa3d/src/intel/compiler/
Dbrw_schedule_instructions.cpp1728 fs_instruction_scheduler::issue_time(backend_instruction *inst0) in issue_time() argument
1730 const fs_inst *inst = static_cast<fs_inst *>(inst0); in issue_time()
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_fs.c275 OUT_CB(code->inst[i].inst0); in r300_emit_fs_code_to_buffer()