Home
last modified time | relevance | path

Searched refs:store_node (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dscalar_analysis.cpp527 SENode* store_node; in TEST_F() local
543 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
545 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
562 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
564 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
582 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
584 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
601 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
603 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
620 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/
Dscalar_analysis.cpp527 SENode* store_node; in TEST_F() local
543 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
545 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
562 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
564 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
582 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
584 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
601 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
603 subtract_node = analysis.CreateSubtraction(store_node, load_node); in TEST_F()
620 store_node = analysis.AnalyzeInstruction(store_child); in TEST_F()
[all …]
/external/mesa3d/src/gallium/drivers/lima/ir/pp/
Dregalloc.c409 ppir_node *store_node = ppir_node_create(block, ppir_op_store_temp, -1, 0); in ppir_update_spilled_dest() local
410 if (!store_node) in ppir_update_spilled_dest()
412 list_addtail(&store_node->list, &node->list); in ppir_update_spilled_dest()
415 ppir_store_node *store = ppir_node_to_store(store_node); in ppir_update_spilled_dest()
426 ppir_node_add_dep(succ, store_node, ppir_dep_src); in ppir_update_spilled_dest()
428 ppir_node_add_dep(store_node, node, ppir_dep_src); in ppir_update_spilled_dest()
435 return ppir_instr_insert_node(node->instr, store_node); in ppir_update_spilled_dest()
438 return create_new_instr_after(block, node->instr, store_node); in ppir_update_spilled_dest()