HomeSort by relevance Sort by last modified time
    Searched refs:instructions (Results 451 - 475 of 1941) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
pt64-32-1.d 4 #name: Basic SHmedia PT and PTA instructions with -expand-pt32.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
edge.s 1 # Test VIS EDGE instructions
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
insns-parallel-multi.d 2 #name: C6X parallel instructions, multiple sections
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/
block.d 2 #name: block instructions
offset.d 2 #name: instructions with offsets
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
cortex-a8-fix-blx-bcond.s 57 @ Trigger Cortex-A8 erratum workaround with b<cond> instructions.
77 @ ...and again with bl instructions.
  /external/mesa3d/src/compiler/glsl/
ast_to_hir.cpp 66 exec_list *instructions);
68 remove_per_vertex_blocks(exec_list *instructions,
124 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
126 _mesa_glsl_initialize_variables(instructions, state);
132 state->toplevel_ir = instructions;
154 ast->hir(instructions, state);
156 detect_recursion_unlinked(state, instructions);
157 detect_conflicting_assignments(state, instructions);
169 foreach_in_list_safe(ir_instruction, node, instructions) {
176 instructions->push_head(var)
    [all...]
opt_copy_propagation.cpp 30 * This should reduce the number of MOV instructions in the generated
87 void handle_if_block(exec_list *instructions);
111 * block. Any instructions at global scope will be shuffled into
222 ir_copy_propagation_visitor::handle_if_block(exec_list *instructions)
239 visit_list_elements(this, instructions);
383 do_copy_propagation(exec_list *instructions)
387 visit_list_elements(&v, instructions);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationModeTestActivity.java 114 TextView instructions = (TextView) item.findViewById(R.id.instructions); local
115 instructions.setText(stringId);
126 TextView instructions = (TextView) item.findViewById(R.id.instructions); local
127 instructions.setText(stringId);
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java 60 List<ImmutableInstruction> instructions = Lists.newArrayList( local
64 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
89 List<ImmutableInstruction> instructions = Lists.newArrayList( local
93 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
118 List<ImmutableInstruction> instructions = Lists.newArrayList( local
122 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
  /external/swiftshader/third_party/LLVM/test/MC/ARM/
thumb2-diagnostics.s 4 @ Ill-formed IT block instructions.
19 @ CHECK-ERRORS: error: instructions in IT block must be predicable
28 @ CHECK-ERRORS: error: predicated instructions must be in IT block
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DexSourceCode.java 94 return code.instructions.length;
106 for (int index = 0; index < code.instructions.length; index++) {
107 Instruction insn = code.instructions[index];
124 // Fill in the Argument instructions (incomingRegisterSize last registers) in the argument
154 currentDexInstruction = code.instructions[instructionIndex];
217 return code.instructions[instructionIndex].getOffset();
271 Instruction dex = code.instructions[index];
276 // Check that we don't ever have instructions that can throw and have targets.
289 if (isMoveResult(code.instructions[offsetToInstructionIndex.get(tryRangeStartAddress)])) {
302 if (index + 1 < code.instructions.length && isMoveResult(code.instructions[index + 1]))
    [all...]
DexBuilder.java 85 // List of generated FillArrayData dex instructions.
91 // Set of if instructions that have offsets that are so large that they cannot be encoded in
99 // Mapping from IR instructions to info for computing the dex translation. Use the
156 * Build the dex instructions added to this builder.
159 * the concrete instructions.
195 // Build instructions.
526 // Trim the range start for non-throwing instructions when starting a new range.
527 List<com.android.tools.r8.ir.code.Instruction> instructions = blocksWithHandlers.get(i).getInstructions();
528 for (com.android.tools.r8.ir.code.Instruction insn : instructions) {
554 // Trim the range end for non-throwing instructions when end has been computed
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 377 final String instructions; local
381 instructions = getString(R.string.bluetooth_enter_pin_msg, mDevice.getName());
390 instructions = getString(R.string.bluetooth_enter_passkey_msg,
402 titleText.setText(Html.fromHtml(instructions));
459 final String instructions; local
464 instructions = getString(R.string.bluetooth_display_passkey_pin_msg,
478 instructions = getString(R.string.bluetooth_confirm_passkey_msg,
484 instructions = getString(R.string.bluetooth_incoming_pairing_msg,
489 instructions = "";
492 instructionText.setText(Html.fromHtml(instructions));
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
PeepholeOptimizer.java 53 // instructions as well since there are no handlers (or the handler is the same as the
54 // normal control-flow block). Alternatively, we could move only non-throwing instructions
61 List<Instruction> instructions = pred.getInstructions(); local
62 Instruction lastInstruction = instructions.get(instructions.size() - 2);
117 LinkedList<Instruction> instructions = pred.getInstructions(); local
118 Instruction exit = instructions.removeLast();
120 instructions.removeLast();
122 instructions.add(exit);
196 * Remove redundant instructions from the code
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 91 * sizes and shrinks instructions.
103 * @param shrinkInstructions specifies whether added instructions should
193 * Remembers to place the given instructions right before the instruction
196 * @param instructions the new instructions.
198 public void insertBeforeInstruction(int instructionOffset, Instruction[] instructions)
207 new CompositeInstruction(instructions);
242 * instructions.
244 * @param instructions the new instructions
1175 private Instruction[] instructions; field in class:CodeAttributeEditor.CompositeInstruction
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorResolver.java 128 List<Instruction> instructions = ImmutableList.copyOf(matchedMethodImpl.getInstructions()); local
131 int accessType = syntheticAccessorFSM.test(instructions);
135 new AccessedMember(accessType, ((ReferenceInstruction)instructions.get(0)).getReference());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/
load_stor_insn.s 1 # Load/Store instructions.
7 # Load instructions (memory to register).
56 # Store instructions (register/immediate to memory).
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
ReadMm0.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm1.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm2.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm3.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm4.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm5.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here
ReadMm6.asm 33 ; 64-bit MASM doesn't support MMX instructions, so use opcode here

Completed in 1030 milliseconds

<<11121314151617181920>>