Home
last modified time | relevance | path

Searched refs:NumInstructions (Results 1 – 25 of 39) sorted by relevance

12

/external/llvm-project/llvm/test/Transforms/Inline/X86/
Dext.ll15 ; CHECK: NumInstructions: 4
31 ; CHECK: NumInstructions: 3
46 ; CHECK: NumInstructions: 3
61 ; CHECK: NumInstructions: 3
76 ; CHECK: NumInstructions: 3
91 ; CHECK: NumInstructions: 3
106 ; CHECK: NumInstructions: 3
121 ; CHECK: NumInstructions: 3
136 ; CHECK: NumInstructions: 3
151 ; CHECK: NumInstructions: 3
[all …]
/external/llvm-project/llvm/test/Transforms/Inline/AArch64/
Dext.ll15 ; CHECK: NumInstructions: 4
31 ; CHECK: NumInstructions: 4
47 ; CHECK: NumInstructions: 4
63 ; CHECK: NumInstructions: 3
78 ; CHECK: NumInstructions: 3
93 ; CHECK: NumInstructions: 3
108 ; CHECK: NumInstructions: 3
123 ; CHECK: NumInstructions: 3
138 ; CHECK: NumInstructions: 3
153 ; CHECK: NumInstructions: 3
[all …]
Dlogical-and-or.ll17 ; CHECK: NumInstructions: 4
32 ; CHECK: NumInstructions: 4
48 ; CHECK: NumInstructions: 2
62 ; CHECK: NumInstructions: 2
75 ; CHECK: NumInstructions: 5
Dgep-cost.ll26 ; CHECK: NumInstructions: 2
36 ; CHECK: NumInstructions: 2
47 ; CHECK: NumInstructions: 2
/external/llvm-project/llvm/test/Transforms/Inline/PowerPC/
Dext.ll15 ; CHECK: NumInstructions: 3
30 ; CHECK: NumInstructions: 3
45 ; CHECK: NumInstructions: 3
60 ; CHECK: NumInstructions: 3
75 ; CHECK: NumInstructions: 3
90 ; CHECK: NumInstructions: 3
105 ; CHECK: NumInstructions: 3
120 ; CHECK: NumInstructions: 3
135 ; CHECK: NumInstructions: 3
/external/mesa3d/src/mesa/program/
Dprogramopt.c52 const GLuint origLen = vprog->arb.NumInstructions; in insert_mvp_dp4_code()
109 vprog->arb.NumInstructions = newLen; in insert_mvp_dp4_code()
119 const GLuint origLen = vprog->arb.NumInstructions; in insert_mvp_mad_code()
210 vprog->arb.NumInstructions = newLen; in insert_mvp_mad_code()
255 const GLuint origLen = fprog->arb.NumInstructions; in _mesa_append_fog_code()
297 for (i = 0; i < fprog->arb.NumInstructions; i++) { in _mesa_append_fog_code()
410 fprog->arb.NumInstructions = inst - newInst; in _mesa_append_fog_code()
448 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_count_texture_indirections()
490 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_count_texture_instructions()
521 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_output_reads()
[all …]
Dprog_optimize.c169 for (i = prog->arb.NumInstructions - 1; i >= 0; i--) { in remove_instructions()
213 for (i = 0; i < prog->arb.NumInstructions; i++) { in replace_regs()
254 calloc(prog->arb.NumInstructions, sizeof(GLboolean)); in _mesa_remove_dead_code_global()
257 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_dead_code_global()
300 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_dead_code_global()
368 for (i = start; i < prog->arb.NumInstructions; i++) { in find_next_use()
485 for (i = 0; i + 1 < prog->arb.NumInstructions; i++) { in _mesa_remove_extra_move_use()
501 for (j = i + 1; j < prog->arb.NumInstructions; j++) { in _mesa_remove_extra_move_use()
578 calloc(prog->arb.NumInstructions, sizeof(GLboolean)); in _mesa_remove_dead_code_local()
580 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_dead_code_local()
[all …]
Dprogram.c350 const GLuint origLen = prog->arb.NumInstructions; in _mesa_insert_instructions()
356 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_insert_instructions()
387 prog->arb.NumInstructions = newLen; in _mesa_insert_instructions()
400 const GLuint origLen = prog->arb.NumInstructions; in _mesa_delete_instructions()
406 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_delete_instructions()
434 prog->arb.NumInstructions = newLen; in _mesa_delete_instructions()
456 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_find_used_registers()
Darbprogparse.c95 program->arb.NumInstructions = prog.arb.NumInstructions; in _mesa_parse_arb_fragment_program()
190 program->arb.NumInstructions = prog.arb.NumInstructions; in _mesa_parse_arb_vertex_program()
Dprogram_parse.y354 state->prog->arb.NumInstructions++;
2593 state->prog->arb.NumInstructions + 1);
2600 for (i = 0; i < state->prog->arb.NumInstructions; i++) {
2609 const GLuint numInst = state->prog->arb.NumInstructions;
2613 state->prog->arb.NumInstructions++;
2623 state->prog->arb.NumNativeInstructions = state->prog->arb.NumInstructions;
Dprog_print.c822 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_fprint_program_opt()
881 fprintf(f, "NumInstructions=%d\n", prog->arb.NumInstructions); in _mesa_fprint_program_parameters()
Dprog_opt_constant_fold.c131 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_constant_fold()
/external/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
DLSUnit.h40 unsigned NumInstructions; variable
57 NumExecutedPredecessors(0), NumInstructions(0), NumExecuting(0), in MemoryGroup()
71 unsigned getNumInstructions() const { return NumInstructions; } in getNumInstructions()
111 return NumExecuting && (NumExecuting == (NumInstructions - NumExecuted)); in isExecuting()
113 bool isExecuted() const { return NumInstructions == NumExecuted; } in isExecuted()
178 ++NumInstructions; in addInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DLSUnit.h42 unsigned NumInstructions; variable
56 NumExecutedPredecessors(0), NumInstructions(0), NumExecuting(0), in MemoryGroup()
69 unsigned getNumInstructions() const { return NumInstructions; } in getNumInstructions()
99 return NumExecuting && (NumExecuting == (NumInstructions - NumExecuted)); in isExecuting()
101 bool isExecuted() const { return NumInstructions == NumExecuted; } in isExecuted()
157 ++NumInstructions; in addInstruction()
/external/llvm-project/llvm/tools/llvm-mca/Views/
DTimelineView.cpp26 unsigned NumInstructions = getSource().size(); in TimelineView() local
28 NumInstructions *= Iterations; in TimelineView()
29 Timeline.resize(NumInstructions); in TimelineView()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DGVNSink.cpp196 unsigned NumInstructions; member
205 Cost = (NumInstructions * (NumBlocks - 1)) - in calculateCost()
219 << " #Insts=" << C.NumInstructions << " #PHIs=" << C.NumPHIs << ">"; in operator <<()
755 Cand.NumInstructions = ++InstNum; in analyzeInstructionForSinking()
830 for (unsigned I = 0; I < C.NumInstructions; ++I) in sinkBB()
833 return C.NumInstructions; in sinkBB()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DGVNSink.cpp197 unsigned NumInstructions; member
206 Cost = (NumInstructions * (NumBlocks - 1)) - in calculateCost()
220 << " #Insts=" << C.NumInstructions << " #PHIs=" << C.NumPHIs << ">"; in operator <<()
752 Cand.NumInstructions = ++InstNum; in analyzeInstructionForSinking()
827 for (unsigned I = 0; I < C.NumInstructions; ++I) in sinkBB()
830 return C.NumInstructions; in sinkBB()
/external/llvm-project/llvm/test/Transforms/Inline/
Dinline-cost-annotation-pass.ll16 ; CHECK: NumInstructions: {{.*}}
/external/llvm/lib/Analysis/
DInlineCost.cpp106 unsigned NumInstructions, NumVectorInstructions; member in __anoned94fc440111::CallAnalyzer
214 AllocatedSize(0), NumInstructions(0), NumVectorInstructions(0), in CallAnalyzer()
1092 ++NumInstructions; in analyzeBlock()
1206 assert(NumInstructions == 0); in analyzeCall()
1403 if (NumVectorInstructions <= NumInstructions / 10) in analyzeCall()
1405 else if (NumVectorInstructions <= NumInstructions / 2) in analyzeCall()
1421 DEBUG_PRINT_STAT(NumInstructions); in dump()
/external/llvm/utils/TableGen/
DX86DisassemblerTables.cpp624 unsigned NumInstructions = InstructionSpecifiers.size(); in emitInstructionInfo() local
634 for (unsigned Index = 0; Index < NumInstructions; ++Index) { in emitInstructionInfo()
665 for (unsigned index = 0; index < NumInstructions; ++index) { in emitInstructionInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInlineCost.cpp222 unsigned NumInstructions = 0; member in __anon18c107e60111::CallAnalyzer
564 if (NumVectorInstructions <= NumInstructions / 10) in finalizeAnalysis()
566 else if (NumVectorInstructions <= NumInstructions / 2) in finalizeAnalysis()
592 assert(NumInstructions == 0); in onAnalysisStart()
1755 ++NumInstructions; in analyzeBlock()
2052 DEBUG_PRINT_STAT(NumInstructions); in dump()
/external/llvm-project/llvm/lib/Analysis/
DInlineCost.cpp282 unsigned NumInstructions = 0; member in __anonae1cb0f20111::CallAnalyzer
654 if (NumVectorInstructions <= NumInstructions / 10) in finalizeAnalysis()
656 else if (NumVectorInstructions <= NumInstructions / 2) in finalizeAnalysis()
684 assert(NumInstructions == 0); in onAnalysisStart()
1922 ++NumInstructions; in analyzeBlock()
2226 DEBUG_PRINT_STAT(NumInstructions); in print()
/external/mesa3d/src/mesa/main/
Dffvertex_prog.c574 assert(p->program->arb.NumInstructions <= p->max_inst); in emit_op3fn()
576 if (p->program->arb.NumInstructions == p->max_inst) { in emit_op3fn()
591 p->program->arb.NumInstructions); in emit_op3fn()
598 nr = p->program->arb.NumInstructions++; in emit_op3fn()
1631 p.program->arb.NumInstructions = in create_new_program()
/external/mesa3d/src/mesa/swrast/
Ds_fragprog.c46 && fp->arb.NumInstructions == 0); in _swrast_use_fragment_program()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_exec.h433 uint NumInstructions; member

12