HomeSort by relevance Sort by last modified time
    Searched refs:instructions (Results 1 - 25 of 572) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/
ir_optimization.h 44 bool do_algebraic(exec_list *instructions);
45 bool do_constant_folding(exec_list *instructions);
46 bool do_constant_variable(exec_list *instructions);
47 bool do_constant_variable_unlinked(exec_list *instructions);
48 bool do_copy_propagation(exec_list *instructions);
49 bool do_copy_propagation_elements(exec_list *instructions);
50 bool do_constant_propagation(exec_list *instructions);
51 bool do_dead_code(exec_list *instructions, bool uniform_locations_assigned);
52 bool do_dead_code_local(exec_list *instructions);
53 bool do_dead_code_unlinked(exec_list *instructions);
    [all...]
ir_expression_flattening.h 37 void do_expression_flattening(exec_list *instructions,
ir_basic_block.h 24 void call_for_basic_blocks(exec_list *instructions,
ir_reader.h 31 void _mesa_glsl_read_ir(_mesa_glsl_parse_state *state, exec_list *instructions,
builtin_variables.cpp 387 add_variable(exec_list *instructions, glsl_symbol_table *symtab,
416 instructions->push_tail(var);
423 add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
427 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
471 add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
482 add_uniform(instructions, symtab, proto->name, type);
484 add_variable(instructions, symtab, proto->name, type, proto->mode,
490 add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
493 ir_variable *const var = add_variable(instructions, symtab,
506 generate_100ES_uniforms(exec_list *instructions,
    [all...]
lower_noise.cpp 64 lower_noise(exec_list *instructions)
68 visit_list_elements(&v, instructions);
  /external/vixl/benchmarks/
bench-branch-link.cc 28 #include "vixl/a64/instructions-a64.h"
38 int instructions = 0; local
41 case 1: instructions = kDefaultInstructionCount; break;
42 case 2: instructions = atoi(argv[1]); break;
44 printf("Usage: %s [#instructions]\n", argv[0]);
48 MacroAssembler masm(instructions * kInstructionSize);
49 InstructionAccurateScope scope(&masm, instructions);
54 for (int i = 0; i < instructions; i++) {
bench-branch.cc 28 #include "vixl/a64/instructions-a64.h"
35 // This program focuses on emitting branch instructions.
38 // instructions in a fixed size buffer, looping over the buffer if necessary.
41 int instructions = 0; local
44 case 1: instructions = kDefaultInstructionCount; break;
45 case 2: instructions = atoi(argv[1]); break;
47 printf("Usage: %s [#instructions]\n", argv[0]);
58 int rounds = instructions / buffer_instruction_count;
71 int remaining = instructions % buffer_instruction_count;
bench-dataop.cc 28 #include "vixl/a64/instructions-a64.h"
35 // This program focuses on emitting simple instructions.
41 unsigned instructions = 0; local
44 case 1: instructions = kDefaultInstructionCount; break;
45 case 2: instructions = atoi(argv[1]); break;
47 printf("Usage: %s [#instructions]\n", argv[0]);
57 unsigned rounds = instructions / buffer_instruction_count;
68 unsigned remaining = instructions % buffer_instruction_count;
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeCursor.java 17 package com.android.dx.io.instructions;
35 * addresses to switch data payload instructions, whose relative
CodeInput.java 17 package com.android.dx.io.instructions;
PackedSwitchPayloadDecodedInstruction.java 17 package com.android.dx.io.instructions;
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeCursor.java 17 package com.android.dx.io.instructions;
35 * addresses to switch data payload instructions, whose relative
CodeInput.java 17 package com.android.dx.io.instructions;
PackedSwitchPayloadDecodedInstruction.java 17 package com.android.dx.io.instructions;
  /external/lldb/examples/python/
gdb_disassemble.py 5 instructions = lldb.frame.function.instructions
9 instructions = lldb.frame.symbol.instructions
13 for inst in instructions:
  /external/libopus/celt/arm/
armopts.s.in 27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
FixGotoTest.java 33 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
34 Assert.assertEquals(502, instructions.size());
36 Assert.assertEquals(Opcode.GOTO_16, instructions.get(0).getOpcode());
37 Assert.assertEquals(502, ((OffsetInstruction)instructions.get(0)).getCodeOffset());
56 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
57 Assert.assertEquals(70002, instructions.size());
59 Assert.assertEquals(Opcode.GOTO_32, instructions.get(0).getOpcode());
60 Assert.assertEquals(70003, ((OffsetInstruction)instructions.get(0)).getCodeOffset());
79 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
80 Assert.assertEquals(70002, instructions.size())
115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
    [all...]
PayloadAlignmentTest.java 56 List<? extends Instruction> instructions = local
59 Assert.assertEquals(instructions.size(), 1);
61 Instruction instruction = instructions.get(0);
73 List<? extends Instruction> instructions = local
76 Assert.assertEquals(instructions.size(), 3);
78 Instruction instruction = instructions.get(0);
81 instruction = instructions.get(1);
84 instruction = instructions.get(2);
101 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
103 checkInstructions(instructions,
127 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
176 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
227 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Code.java 24 private final short[] instructions; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
34 this.instructions = instructions;
56 return instructions;
  /libcore/dex/src/main/java/com/android/dex/
Code.java 24 private final short[] instructions; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
34 this.instructions = instructions;
56 return instructions;
  /external/valgrind/exp-bbv/tests/amd64-linux/
rep_prefix.S 2 # rep, repe (repz) and repne (repnz) prefixed string instructions
4 # This test makes sure the bbv plugin counts these instructions properly
14 # Some SSE2 instructions start with 0xf2 or 0xf3
48 # Load and Store Instructions
123 # Move instructions
156 # Compare equal instructions
207 # Compare not equal instructions
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethodImplementation.java 50 @Nonnull protected final ImmutableList<? extends ImmutableInstruction> instructions; field in class:ImmutableMethodImplementation
55 @Nullable Iterable<? extends Instruction> instructions,
59 this.instructions = ImmutableInstruction.immutableListOf(instructions);
65 @Nullable ImmutableList<? extends ImmutableInstruction> instructions,
69 this.instructions = ImmutableUtils.nullToEmptyList(instructions);
90 @Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return instructions; }
  /external/valgrind/none/tests/ppc32/
test_isa_2_06_part2.stdout.exp 1 Test VSX vector single arg instructions
21 Test VSX floating point compare and basic arithmetic instructions
    [all...]
  /external/valgrind/none/tests/ppc64/
test_isa_2_06_part2.stdout.exp 1 Test VSX vector single arg instructions
21 Test VSX floating point compare and basic arithmetic instructions
    [all...]

Completed in 934 milliseconds

1 2 3 4 5 6 7 8 91011>>