Searched refs:inst_list (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | radeon_compiler_optimize_tests.c | 57 struct rc_instruction *inst_list[3]; in test_runner_rc_optimize() local 70 inst_list[inst_count] = inst; in test_runner_rc_optimize() 73 if (inst_list[0]->U.I.Omod != RC_OMOD_MUL_2 || in test_runner_rc_optimize() 74 inst_list[1]->U.I.Omod != RC_OMOD_MUL_2 || in test_runner_rc_optimize() 75 inst_list[2]->U.I.Opcode != RC_OPCODE_MOV) { in test_runner_rc_optimize()
|
/external/llvm-project/lldb/unittests/Disassembler/ |
D | TestArmv7Disassembly.cpp | 73 const InstructionList inst_list (disass_sp->GetInstructionList()); in TEST_F() local 74 EXPECT_EQ (num_of_instructions, inst_list.GetSize()); in TEST_F() 79 inst_sp = inst_list.GetInstructionAtIndex (0); in TEST_F() 83 inst_sp = inst_list.GetInstructionAtIndex (1); in TEST_F() 87 inst_sp = inst_list.GetInstructionAtIndex (2); in TEST_F()
|
D | TestArm64Disassembly.cpp | 65 const InstructionList inst_list (disass_sp->GetInstructionList()); in TEST_F() local 66 EXPECT_EQ (num_of_instructions, inst_list.GetSize()); in TEST_F() 71 inst_sp = inst_list.GetInstructionAtIndex (0); in TEST_F() 75 inst_sp = inst_list.GetInstructionAtIndex (1); in TEST_F()
|
/external/llvm/bindings/python/llvm/tests/ |
D | test_core.py | 117 inst_list = [('arg1', OpCode.ExtractValue), 126 self.assertEqual(inst.name, inst_list[i][0]) 127 self.assertEqual(inst.opcode, inst_list[i][1]) 138 self.assertEqual(inst.name, inst_list[i][0]) 139 self.assertEqual(inst.opcode, inst_list[i][1])
|
/external/llvm-project/llvm/bindings/python/llvm/tests/ |
D | test_core.py | 119 inst_list = [('arg1', OpCode.ExtractValue), 128 self.assertEqual(inst.name, inst_list[i][0]) 129 self.assertEqual(inst.opcode, inst_list[i][1]) 140 self.assertEqual(inst.name, inst_list[i][0]) 141 self.assertEqual(inst.opcode, inst_list[i][1])
|
/external/python/cpython3/Tools/scripts/ |
D | analyze_dxp.py | 86 inst_list = profile[-1] 88 inst_list = profile 90 for op, count in enumerate(inst_list)
|
/external/python/cpython2/Tools/scripts/ |
D | analyze_dxp.py | 87 inst_list = profile[-1] 89 inst_list = profile 91 for op, count in enumerate(inst_list)
|
/external/llvm-project/lldb/examples/python/ |
D | disasm-stress-test.py | 220 inst_list = target.GetInstructions(fake_address, inst_bytes) variable 221 if not inst_list.IsValid(): 224 inst = inst_list.GetInstructionAtIndex(0)
|
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
D | UnwindAssemblyInstEmulation.cpp | 101 const InstructionList &inst_list = disasm_sp->GetInstructionList(); in GetNonCallSiteUnwindPlanFromAssembly() local 102 const size_t num_instructions = inst_list.GetSize(); in GetNonCallSiteUnwindPlanFromAssembly() 105 Instruction *inst = inst_list.GetInstructionAtIndex(0).get(); in GetNonCallSiteUnwindPlanFromAssembly() 145 inst = inst_list.GetInstructionAtIndex(idx).get(); in GetNonCallSiteUnwindPlanFromAssembly() 245 inst->Dump(&strm, inst_list.GetMaxOpcocdeByteSize(), show_address, in GetNonCallSiteUnwindPlanFromAssembly()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_pair_schedule.c | 981 struct schedule_instruction ** inst_list) in try_convert_and_pair() argument 983 struct schedule_instruction * list_ptr = *inst_list; in try_convert_and_pair() 984 while (list_ptr && *inst_list && (*inst_list)->NextReady) { in try_convert_and_pair() 995 remove_inst_from_list(inst_list, list_ptr); in try_convert_and_pair() 1007 list_ptr = *inst_list; in try_convert_and_pair()
|
/external/llvm-project/debuginfo-tests/dexter/dex/heuristic/ |
D | Heuristic.py | 398 for category, inst_list in value.items(): 399 result += sum(x.the_penalty for x in inst_list)
|