/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
million.S | 2 # count for 1 million instructions
|
/external/valgrind/main/exp-bbv/tests/arm-linux/ |
million.S | 2 # count for 1 million instructions
|
/external/valgrind/main/exp-bbv/tests/ppc32-linux/ |
million.S | 2 # count for 1 million instructions
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ast_function.cpp | 38 process_parameters(exec_list *instructions, exec_list *actual_parameters, 46 ir_rvalue *result = ast->hir(instructions, state); 185 generate_call(exec_list *instructions, ir_function_signature *sig, 244 instructions->push_tail(tmp); 276 * instructions; just generate an ir_constant. 296 instructions->push_tail(var); 301 instructions->push_tail(call); 304 instructions->append_list(&post_call_conversions); 555 process_array_constructor(exec_list *instructions, 583 process_parameters(instructions, &actual_parameters, parameters, state) [all...] |
ast_to_hir.cpp | 62 exec_list *instructions); 65 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) 67 _mesa_glsl_initialize_variables(instructions, state); 73 state->toplevel_ir = instructions; 91 ast->hir(instructions, state); 93 detect_recursion_unlinked(state, instructions); 94 detect_conflicting_assignments(state, instructions); 672 do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state, 762 instructions->push_tail(var); 763 instructions->push_tail(new(ctx) ir_assignment(deref_var, rhs)) [all...] |
ir_basic_block.cpp | 52 void call_for_basic_blocks(exec_list *instructions, 61 foreach_iter(exec_list_iterator, iter, *instructions) { 89 * maximal BBs between the instructions that precede main() 90 * and the body of main(). Perhaps those instructions ought
|
lower_texture_projection.cpp | 92 do_lower_texture_projection(exec_list *instructions) 96 visit_list_elements(&v, instructions);
|
opt_array_splitting.cpp | 101 bool get_split_list(exec_list *instructions, bool linked); 195 * so just look at the body instructions and not the parameter 203 ir_array_reference_visitor::get_split_list(exec_list *instructions, 206 visit_list_elements(this, instructions); 212 foreach_list(node, instructions) { 356 optimize_split_arrays(exec_list *instructions, bool linked) 359 if (!refs.get_split_list(instructions, linked)) 396 visit_list_elements(&split, instructions); 399 _mesa_print_ir(instructions, NULL);
|
opt_if_simplification.cpp | 50 /* We only care about the top level "if" instructions, so don't 61 do_if_simplification(exec_list *instructions) 65 v.run(instructions);
|
opt_redundant_jumps.cpp | 49 /* We only care about the top level instructions, so don't descend 118 optimize_redundant_jumps(exec_list *instructions) 122 v.run(instructions);
|
opt_swizzle_swizzle.cpp | 90 do_swizzle_swizzle(exec_list *instructions) 94 v.run(instructions);
|
/external/mesa3d/src/glsl/ |
ast_function.cpp | 38 process_parameters(exec_list *instructions, exec_list *actual_parameters, 46 ir_rvalue *result = ast->hir(instructions, state); 185 generate_call(exec_list *instructions, ir_function_signature *sig, 244 instructions->push_tail(tmp); 276 * instructions; just generate an ir_constant. 296 instructions->push_tail(var); 301 instructions->push_tail(call); 304 instructions->append_list(&post_call_conversions); 555 process_array_constructor(exec_list *instructions, 583 process_parameters(instructions, &actual_parameters, parameters, state) [all...] |
ast_to_hir.cpp | 62 exec_list *instructions); 65 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) 67 _mesa_glsl_initialize_variables(instructions, state); 73 state->toplevel_ir = instructions; 91 ast->hir(instructions, state); 93 detect_recursion_unlinked(state, instructions); 94 detect_conflicting_assignments(state, instructions); 672 do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state, 762 instructions->push_tail(var); 763 instructions->push_tail(new(ctx) ir_assignment(deref_var, rhs)) [all...] |
ir_basic_block.cpp | 52 void call_for_basic_blocks(exec_list *instructions, 61 foreach_iter(exec_list_iterator, iter, *instructions) { 89 * maximal BBs between the instructions that precede main() 90 * and the body of main(). Perhaps those instructions ought
|
lower_texture_projection.cpp | 92 do_lower_texture_projection(exec_list *instructions) 96 visit_list_elements(&v, instructions);
|
opt_array_splitting.cpp | 101 bool get_split_list(exec_list *instructions, bool linked); 195 * so just look at the body instructions and not the parameter 203 ir_array_reference_visitor::get_split_list(exec_list *instructions, 206 visit_list_elements(this, instructions); 212 foreach_list(node, instructions) { 356 optimize_split_arrays(exec_list *instructions, bool linked) 359 if (!refs.get_split_list(instructions, linked)) 396 visit_list_elements(&split, instructions); 399 _mesa_print_ir(instructions, NULL);
|
opt_if_simplification.cpp | 50 /* We only care about the top level "if" instructions, so don't 61 do_if_simplification(exec_list *instructions) 65 v.run(instructions);
|
opt_redundant_jumps.cpp | 49 /* We only care about the top level instructions, so don't descend 118 optimize_redundant_jumps(exec_list *instructions) 122 v.run(instructions);
|
opt_swizzle_swizzle.cpp | 90 do_swizzle_swizzle(exec_list *instructions) 94 v.run(instructions);
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
MethodDefinition.java | 71 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local 75 instructionMap = new SparseIntArray(instructions.length); 78 for (int i=0; i<instructions.length; i++) { 79 Instruction instruction = instructions[i]; 243 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local 246 if (instructions[index].opcode == Opcode.NOP) { 258 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local 261 if (instructions[index].opcode == Opcode.NOP) { 270 * @param instructions The instructions array for this metho 335 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local 407 List<AnalyzedInstruction> instructions = methodAnalyzer.getInstructions(); local 462 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local [all...] |
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
codegen.cc | 42 for (Instructions::iterator iter = instructions_.begin(); 138 // We can handle non-jumping instructions and "always" jumps. Both of 147 SANDBOX_DIE("Cannot append instructions after a return statement"); 155 // Non-jumping instructions do not use any of the branch targets. 191 // Merge two instructions, or set the branch target for an "always" jump. 197 SANDBOX_DIE("Cannot append instructions in the middle of a sequence"); 206 SANDBOX_DIE("Cannot append instructions after a jump"); 210 SANDBOX_DIE("Cannot append instructions after a return statement"); 212 SANDBOX_DIE("Cannot append instructions in the middle of a sequence"); 230 void CodeGen::FindBranchTargets(const Instruction& instructions, [all...] |
/build/core/combo/arch/mips/ |
mips32r2-fp-xburst.mk | 3 # support for the Madd family of instructions.
|
/libcore/luni/src/test/java/libcore/xml/ |
SimpleParserTest.java | 41 private StringBuffer instructions; field in class:SimpleParserTest 63 instructions = new StringBuffer(); 75 instructions = null; 99 if (instructions.length() != 0) { 100 instructions.append(","); 102 instructions.append(s); 158 assertEquals("The:quick,brown:fox", instructions.toString()); 186 assertEquals("The:quick,brown:fox", instructions.toString());
|
/external/oprofile/events/mips/25K/ |
events | 7 event:0x1 counters:0,1 um:zero minimum:500 name:INSN_ISSUED : Dispatched/issued instructions 8 event:0x2 counters:0,1 um:zero minimum:500 name:FP_INSNS_ISSUED : FPU instructions issued 9 event:0x3 counters:0,1 um:zero minimum:500 name:INT_INSNS_ISSUED : Integer instructions issued 10 event:0x4 counters:0,1 um:zero minimum:500 name:LOAD_INSNS_ISSUED : Load instructions issued 11 event:0x5 counters:0,1 um:zero minimum:500 name:STORE_INSNS_ISSUED : Store instructions issued 12 event:0x6 counters:0,1 um:zero minimum:500 name:BRANCHES_JUMPS_ISSUED : Branch/Jump instructions issued 20 event:0xa counters:0,1 um:zero minimum:500 name:INSN_FP_DATAPATH_COMPLETED : Instructions completed in FPU datapath (computational instructions only) 29 event:0xf counters:0,1 um:zero minimum:500 name:JR_RPD_MISSPREDICTED : JR instructions that mispredicted using the Return Prediction Stack 50 event:0x18 counters:0,1 um:zero minimum:500 name:INSNS_FETCHED_FROM_ICACHE : Total number of instructions fetched from the I-Cach [all...] |
/external/chromium/chrome/browser/resources/ |
keyboard_overlay.js | 279 var instructions = document.getElementById('instructions'); 281 instructions.style.visibility = 'visible'; 283 instructions.style.visibility = 'hidden'; 398 var instructions = document.createElement('div'); 399 instructions.id = 'instructions'; 400 instructions.className = 'keyboard-overlay-instructions'; 401 instructions.style.left = ((BASE_INSTRUCTIONS.left - BASE_KEYBOARD.left) [all...] |