HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 51 - 75 of 2596) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction22x.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction22x;
40 public SmalideaInstruction22x(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction23x.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction23x;
40 public SmalideaInstruction23x(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction30t.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction30t;
40 public SmalideaInstruction30t(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31c.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31c;
40 public SmalideaInstruction31c(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31i.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31i;
40 public SmalideaInstruction31i(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31t.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31t;
40 public SmalideaInstruction31t(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction32x.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction32x;
40 public SmalideaInstruction32x(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction51l.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction51l;
40 public SmalideaInstruction51l(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
last.l 2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
  /art/compiler/optimizing/
instruction_simplifier_arm64.cc 103 // Merge a bitfield move instruction into its uses if it can be merged in all of them.
113 // Check whether we can merge the instruction in all its users' shifter operand.
124 // Merge the instruction into its uses.
136 void InstructionSimplifierArm64Visitor::VisitAnd(HAnd* instruction) {
137 if (TryMergeNegatedInput(instruction)) {
142 void InstructionSimplifierArm64Visitor::VisitArrayGet(HArrayGet* instruction) {
143 size_t data_offset = CodeGenerator::GetArrayDataOffset(instruction);
144 if (TryExtractArrayAccessAddress(instruction,
145 instruction->GetArray(),
146 instruction->GetIndex()
    [all...]
scheduler.cc 36 // A `nullptr` node indicates an instruction out of scheduling range (eg. in
96 static bool IsArrayAccess(const HInstruction* instruction) {
97 return instruction->IsArrayGet() || instruction->IsArraySet();
100 static bool IsInstanceFieldAccess(const HInstruction* instruction) {
101 return instruction->IsInstanceFieldGet() ||
102 instruction->IsInstanceFieldSet() ||
103 instruction->IsUnresolvedInstanceFieldGet() ||
104 instruction->IsUnresolvedInstanceFieldSet();
107 static bool IsStaticFieldAccess(const HInstruction* instruction) {
418 const HInstruction* instruction = node->GetInstruction(); local
467 const HInstruction* instruction = node->GetInstruction(); local
492 const HInstruction* instruction = prev_select_->GetInstruction(); local
578 HInstruction* instruction = it.Current(); local
    [all...]
code_generator_vector_arm_vixl.cc 35 void LocationsBuilderARMVIXL::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
36 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
37 switch (instruction->GetPackedType()) {
52 void InstructionCodeGeneratorARMVIXL::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
53 LocationSummary* locations = instruction->GetLocations();
55 switch (instruction->GetPackedType()) {
58 DCHECK_EQ(8u, instruction->GetVectorLength());
59 __ Vdup(Untyped8, dst, InputRegisterAt(instruction, 0));
63 DCHECK_EQ(4u, instruction->GetVectorLength());
64 __ Vdup(Untyped16, dst, InputRegisterAt(instruction, 0))
    [all...]
instruction_simplifier_arm64.h 38 bool TryMergeIntoUsersShifterOperand(HInstruction* instruction);
59 HInstruction* instruction = it.Current(); variable
60 if (instruction->IsInBlock()) {
61 instruction->Accept(this);
67 void VisitAnd(HAnd* instruction) OVERRIDE;
68 void VisitArrayGet(HArrayGet* instruction) OVERRIDE;
69 void VisitArraySet(HArraySet* instruction) OVERRIDE;
70 void VisitMul(HMul* instruction) OVERRIDE;
71 void VisitOr(HOr* instruction) OVERRIDE;
72 void VisitShl(HShl* instruction) OVERRIDE
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
macro-warn-1-n32.l 2 .*:6: Warning: macro instruction expanded into multiple instructions
3 .*:10: Warning: macro instruction expanded into multiple instructions
4 .*:12: Warning: macro instruction expanded into multiple instructions
5 .*:16: Warning: macro instruction expanded into multiple instructions.*slot
6 .*:20: Warning: macro instruction expanded into multiple instructions.*slot
macro-warn-1.l 2 .*:5: Warning: macro instruction expanded into multiple instructions
3 .*:10: Warning: macro instruction expanded into multiple instructions
4 .*:11: Warning: macro instruction expanded into multiple instructions
5 .*:12: Warning: macro instruction expanded into multiple instructions
6 .*:16: Warning: macro instruction expanded into multiple instructions.*slot
7 .*:18: Warning: macro instruction expanded into multiple instructions.*slot
8 .*:20: Warning: macro instruction expanded into multiple instructions.*slot
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 23 * Unit tests for {@link Instruction}.
27 private Instruction instruction; field in class:InstructionTest
31 instruction = new Instruction(new InsnNode(Opcodes.NOP), 123);
37 instruction = new Instruction(node, 123);
38 assertSame(node, instruction.getNode());
39 assertEquals(123, instruction.getLine());
40 assertEquals(0, instruction.getBranches())
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
resource_conflict.l 2 .*:3: Error: resource conflict in multi-issue instruction.
3 .*:4: Error: resource conflict in multi-issue instruction.
4 .*:5: Error: resource conflict in multi-issue instruction.
5 .*:6: Error: resource conflict in multi-issue instruction.
6 .*:7: Error: resource conflict in multi-issue instruction.
7 .*:8: Error: resource conflict in multi-issue instruction.
8 .*:10: Error: resource conflict in multi-issue instruction.
9 .*:11: Error: resource conflict in multi-issue instruction.
10 .*:12: Error: resource conflict in multi-issue instruction.
11 .*:13: Error: resource conflict in multi-issue instruction
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItemFactory.java 33 import org.jf.dexlib2.iface.instruction.Instruction;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
35 import org.jf.dexlib2.iface.instruction.formats.ArrayPayload;
36 import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload;
37 import org.jf.dexlib2.iface.instruction.formats.SparseSwitchPayload;
44 MethodDefinition methodDef, int codeAddress, Instruction instruction) {
46 if (instruction instanceof OffsetInstruction) {
48 (OffsetInstruction)instruction);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 41 import org.jf.dexlib2.builder.instruction.*;
46 import org.jf.dexlib2.iface.instruction.Instruction;
47 import org.jf.dexlib2.iface.instruction.SwitchElement;
48 import org.jf.dexlib2.iface.instruction.formats.*;
68 for (Instruction instruction: methodImplementation.getInstructions()) {
69 codeAddress += instruction.getCodeUnits();
84 for (final Instruction instruction: methodImplementation.getInstructions())
    [all...]
  /external/valgrind/none/tests/mips64/
macro_int.h 1 #define TEST1(instruction, RSval, RTval, RD, RS, RT) \
8 instruction "\n\t" \
15 instruction, out, (long long) RSval, \
19 #define TEST2(instruction, RSval, imm, RT, RS) \
25 instruction "\n\t" \
32 instruction, out, (long long) RSval, imm); \
35 #define TEST3(instruction, RSval, RD, RS) \
41 instruction "\n\t" \
48 instruction, out, (long long) RSval); \
51 #define TEST4(instruction, RSval, RTval, RS, RT)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionWriter.java 39 import org.jf.dexlib2.iface.instruction.DualReferenceInstruction;
40 import org.jf.dexlib2.iface.instruction.ReferenceInstruction;
41 import org.jf.dexlib2.iface.instruction.SwitchElement;
42 import org.jf.dexlib2.iface.instruction.formats.*;
101 throw new ExceptionWithContext("Instruction %s is invalid for api %d", opcode.name, opcodes.api);
106 public void write(@Nonnull Instruction10t instruction) {
108 writer.write(getOpcodeValue(instruction.getOpcode()));
109 writer.write(instruction.getCodeOffset());
115 public void write(@Nonnull Instruction10x instruction) {
117 writer.write(getOpcodeValue(instruction.getOpcode()))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction10x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10x;
47 public static ImmutableInstruction10x of(Instruction10x instruction) {
48 if (instruction instanceof ImmutableInstruction10x) {
49 return (ImmutableInstruction10x)instruction;
51 return new ImmutableInstruction10x(instruction.getOpcode());
ImmutableUnknownInstruction.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.UnknownInstruction;
48 public static ImmutableUnknownInstruction of(UnknownInstruction instruction) {
49 if (instruction instanceof ImmutableUnknownInstruction) {
50 return (ImmutableUnknownInstruction)instruction;
52 return new ImmutableUnknownInstruction(instruction.getOriginalOpcode());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
sploop-bad-3.l 2 [^:]*:5: Error: 'spkernel' instruction not in a software pipelined loop
3 [^:]*:6: Error: 'spkernel' instruction not in a software pipelined loop
4 [^:]*:7: Error: 'spkernelr' instruction not in a software pipelined loop
  /external/llvm/test/MC/ARM/
fullfp16-neg.s 5 @ CHECK: error: instruction requires:
8 @ CHECK: error: instruction requires:
11 @ CHECK: error: instruction requires:
14 @ CHECK: error: instruction requires:
17 @ CHECK: error: instruction requires:
20 @ CHECK: error: instruction requires:
23 @ CHECK: error: instruction requires:
26 @ CHECK: error: instruction requires:
29 @ CHECK: error: instruction requires:
32 @ CHECK: error: instruction requires
    [all...]

Completed in 924 milliseconds

1 23 4 5 6 7 8 91011>>