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

1 2 3 4 56 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
Instruction45cc.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.DualReferenceInstruction;
35 import org.jf.dexlib2.iface.instruction.FiveRegisterInstruction;
Instruction4rcc.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.DualReferenceInstruction;
35 import org.jf.dexlib2.iface.instruction.RegisterRangeInstruction;
Instruction51l.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OneRegisterInstruction;
35 import org.jf.dexlib2.iface.instruction.WideLiteralInstruction;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
neon-ldst-es-bad.l 2 [^:]*:2: Error: bad type in Neon instruction -- `vld1\.64 {d0\[1\]},\[r0\]'
3 [^:]*:3: Error: bad type in Neon instruction -- `vld1\.64 {d0\[\]},\[r0\]'
4 [^:]*:4: Error: bad type in Neon instruction -- `vld2\.64 {d0\[1\]},\[r0\]'
5 [^:]*:5: Error: bad type in Neon instruction -- `vld2\.64 {d0\[\]},\[r0\]'
6 [^:]*:6: Error: bad element type for instruction -- `vld2\.64 {d0-d1},\[r0\]'
7 [^:]*:7: Error: bad type in Neon instruction -- `vld3\.64 {d0\[1\]},\[r0\]'
8 [^:]*:8: Error: bad type in Neon instruction -- `vld3\.64 {d0\[\]},\[r0\]'
9 [^:]*:9: Error: bad element type for instruction -- `vld3\.64 {d0-d2},\[r0\]'
10 [^:]*:10: Error: bad type in Neon instruction -- `vld4\.64 {d0\[1\]},\[r0\]'
11 [^:]*:11: Error: bad type in Neon instruction -- `vld4\.64 {d0\[\]},\[r0\]
    [all...]
neon-cond-bad.l 2 [^:]*:10: Error: instruction cannot be conditional -- `vmoveq q0,q1'
3 [^:]*:11: Error: instruction cannot be conditional -- `vmoveq d0,d1'
4 [^:]*:12: Error: instruction cannot be conditional -- `vmoveq\.i32 q0,#0'
5 [^:]*:13: Error: instruction cannot be conditional -- `vmoveq\.i32 d0,#0'
6 [^:]*:27: Error: instruction cannot be conditional -- `vmuleq\.f32 d0,d1,d2'
7 [^:]*:27: Error: instruction cannot be conditional -- `vmuleq\.f32 q0,q1,q2'
8 [^:]*:28: Error: instruction cannot be conditional -- `vmlaeq\.f32 d0,d1,d2'
9 [^:]*:28: Error: instruction cannot be conditional -- `vmlaeq\.f32 q0,q1,q2'
10 [^:]*:29: Error: instruction cannot be conditional -- `vmlseq\.f32 d0,d1,d2'
11 [^:]*:29: Error: instruction cannot be conditional -- `vmlseq\.f32 q0,q1,q2
    [all...]
  /external/llvm/test/MC/ARM/
invalid-neon-v8.s 4 @ CHECK: error: invalid operand for instruction
6 @ CHECK: error: invalid operand for instruction
8 @ CHECK: error: instruction 'vmaxnm' is not predicable, but condition code specified
11 @ CHECK: error: instruction requires: FPARMv8
13 @ CHECK: error: invalid operand for instruction
15 @ CHECK: error: invalid operand for instruction
17 @ CHECK: error: instruction 'vcvtp' is not predicable, but condition code specified
20 @ CHECK: error: invalid operand for instruction
22 @ CHECK: error: invalid operand for instruction
24 @ CHECK: error: invalid operand for instruction
    [all...]
fullfp16-neon-neg.s 8 @ CHECK: error: instruction requires:
9 @ CHECK: error: instruction requires:
13 @ CHECK: error: instruction requires:
14 @ CHECK: error: instruction requires:
18 @ CHECK: error: instruction requires:
19 @ CHECK: error: instruction requires:
23 @ CHECK: error: instruction requires:
24 @ CHECK: error: instruction requires:
28 @ CHECK: error: instruction requires:
29 @ CHECK: error: instruction requires
    [all...]
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips5-wrong-error.s 8 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
9 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$12 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 bc1any2f $fcc2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 bc1any2t $fcc2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 bc1any4f $fcc2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 bc1any4t $fcc2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
    [all...]
  /art/compiler/optimizing/
code_sinking.cc 39 static bool IsInterestingInstruction(HInstruction* instruction) {
41 if (instruction->GetBlock() == instruction->GetBlock()->GetGraph()->GetEntryBlock()) {
48 if (instruction->IsInstanceFieldSet()) {
49 if (instruction->AsInstanceFieldSet()->IsVolatile()) {
55 if (instruction->IsNewInstance() || instruction->IsNewArray()) {
61 if (instruction->IsConstructorFence()) {
62 HConstructorFence* ctor_fence = instruction->AsConstructorFence();
71 if (instruction->CanThrow())
296 HInstruction* instruction = worklist.back(); local
    [all...]
code_generator_vector_x86.cc 26 void LocationsBuilderX86::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
27 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
28 switch (instruction->GetPackedType()) {
52 void InstructionCodeGeneratorX86::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
53 LocationSummary* locations = instruction->GetLocations();
55 switch (instruction->GetPackedType()) {
58 DCHECK_EQ(16u, instruction->GetVectorLength());
66 DCHECK_EQ(8u, instruction->GetVectorLength());
72 DCHECK_EQ(4u, instruction->GetVectorLength());
78 DCHECK_EQ(2u, instruction->GetVectorLength())
    [all...]
code_generator_vector_x86_64.cc 26 void LocationsBuilderX86_64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
27 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
28 switch (instruction->GetPackedType()) {
49 void InstructionCodeGeneratorX86_64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
50 LocationSummary* locations = instruction->GetLocations();
52 switch (instruction->GetPackedType()) {
55 DCHECK_EQ(16u, instruction->GetVectorLength());
63 DCHECK_EQ(8u, instruction->GetVectorLength());
69 DCHECK_EQ(4u, instruction->GetVectorLength());
74 DCHECK_EQ(2u, instruction->GetVectorLength())
    [all...]
code_generator_vector_arm64.cc 37 void LocationsBuilderARM64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
38 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
39 HInstruction* input = instruction->InputAt(0);
40 switch (instruction->GetPackedType()) {
47 locations->SetInAt(0, ARM64EncodableConstantOrRegister(input, instruction));
53 Arm64CanEncodeConstantAsImmediate(input->AsConstant(), instruction)) {
67 void InstructionCodeGeneratorARM64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
68 LocationSummary* locations = instruction->GetLocations();
71 switch (instruction->GetPackedType()) {
74 DCHECK_EQ(16u, instruction->GetVectorLength())
    [all...]
code_generator_vector_mips.cc 26 void LocationsBuilderMIPS::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
27 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
28 switch (instruction->GetPackedType()) {
49 void InstructionCodeGeneratorMIPS::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
50 LocationSummary* locations = instruction->GetLocations();
52 switch (instruction->GetPackedType()) {
55 DCHECK_EQ(16u, instruction->GetVectorLength());
60 DCHECK_EQ(8u, instruction->GetVectorLength());
64 DCHECK_EQ(4u, instruction->GetVectorLength());
68 DCHECK_EQ(2u, instruction->GetVectorLength())
    [all...]
code_generator_vector_mips64.cc 31 void LocationsBuilderMIPS64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
32 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
33 switch (instruction->GetPackedType()) {
54 void InstructionCodeGeneratorMIPS64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
55 LocationSummary* locations = instruction->GetLocations();
57 switch (instruction->GetPackedType()) {
60 DCHECK_EQ(16u, instruction->GetVectorLength());
65 DCHECK_EQ(8u, instruction->GetVectorLength());
69 DCHECK_EQ(4u, instruction->GetVectorLength());
73 DCHECK_EQ(2u, instruction->GetVectorLength())
    [all...]
locations.cc 29 LocationSummary::LocationSummary(HInstruction* instruction,
32 : inputs_(instruction->InputCount(),
33 instruction->GetBlock()->GetGraph()->GetArena()->Adapter(kArenaAllocLocationSummary)),
34 temps_(instruction->GetBlock()->GetGraph()->GetArena()->Adapter(kArenaAllocLocationSummary)),
43 instruction->SetLocations(this);
46 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetArena();
52 Location Location::RegisterOrConstant(HInstruction* instruction) {
53 return instruction->IsConstant()
54 ? Location::ConstantLocation(instruction->AsConstant())
58 Location Location::RegisterOrInt32Constant(HInstruction* instruction) {
    [all...]
  /external/valgrind/none/tests/mips64/
change_fp_mode.c 16 #define TEST_LD(instruction, source) \
26 instruction"\n\t" \
33 printf(instruction" :: lo32(f1): %x, lo32(f0): %x\n", \
37 #define _TEST_ST(instruction) \
46 instruction"\n\t" \
52 #define TEST_ST64(instruction) \
55 _TEST_ST(instruction); \
56 printf(instruction" :: mem: %lx\n", result); \
59 #define TEST_ST32(instruction) \
62 _TEST_ST(instruction); \
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction10t.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10t;
52 public static ImmutableInstruction10t of(Instruction10t instruction) {
53 if (instruction instanceof ImmutableInstruction10t) {
54 return (ImmutableInstruction10t)instruction;
57 instruction.getOpcode(),
58 instruction.getCodeOffset());
ImmutableInstruction11x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction11x;
52 public static ImmutableInstruction11x of(Instruction11x instruction) {
53 if (instruction instanceof ImmutableInstruction11x) {
54 return (ImmutableInstruction11x)instruction;
57 instruction.getOpcode(),
58 instruction.getRegisterA());
ImmutableInstruction20t.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction20t;
52 public static ImmutableInstruction20t of(Instruction20t instruction) {
53 if (instruction instanceof ImmutableInstruction20t) {
54 return (ImmutableInstruction20t)instruction;
57 instruction.getOpcode(),
58 instruction.getCodeOffset());
ImmutableInstruction30t.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction30t;
51 public static ImmutableInstruction30t of(Instruction30t instruction) {
52 if (instruction instanceof ImmutableInstruction30t) {
53 return (ImmutableInstruction30t)instruction;
56 instruction.getOpcode(),
57 instruction.getCodeOffset());
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliLabel.java 64 SmaliInstruction instruction = getInstruction(); local
65 if (instruction == null) {
66 instruction = getPreviousInstruction();
67 if (instruction == null) {
71 return instruction.getOffset() + instruction.getOpcode().format.size;
73 return instruction.getOffset();
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
mpx-inval-1.l 2 .*:6: Error: expecting valid branch instruction after `bnd'
3 .*:7: Error: expecting valid branch instruction after `bnd'
4 .*:8: Error: expecting valid branch instruction after `bnd'
5 .*:8: Warning: skipping prefixes on this instruction
6 .*:9: Error: expecting valid branch instruction after `bnd'
7 .*:9: Warning: skipping prefixes on this instruction
8 .*:10: Error: expecting valid branch instruction after `bnd'
9 .*:11: Error: expecting valid branch instruction after `bnd'
10 .*:14: Error: expecting valid branch instruction after `bnd'
11 .*:15: Error: expecting valid branch instruction after `bnd
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips-warn-branch-delay.l 2 .*:8: Warning: wrong size instruction in a 16-bit branch delay slot
3 .*:10: Warning: wrong size instruction in a 16-bit branch delay slot
4 .*:12: Warning: wrong size instruction in a 16-bit branch delay slot
5 .*:14: Warning: wrong size instruction in a 16-bit branch delay slot
6 .*:16: Warning: wrong size instruction in a 16-bit branch delay slot
7 .*:18: Warning: wrong size instruction in a 16-bit branch delay slot
8 .*:20: Warning: wrong size instruction in a 16-bit branch delay slot
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
parallel-bad-1.l 2 [^:]*:6: Error: '||' not followed by instruction
3 [^:]*:8: Error: '||' not followed by instruction
5 [^:]*:12: Error: '||' not followed by instruction
6 [^:]*:14: Error: '||' not followed by instruction
16 [^:]*:26: Error: instruction 'nop' cannot be predicated
18 [^:]*:28: Error: instruction 'nop' cannot be predicated
19 [^:]*:32: Error: '||' not followed by instruction
  /external/llvm/test/MC/Mips/mips1/
invalid-mips5-wrong-error.s 9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
    [all...]

Completed in 262 milliseconds

1 2 3 4 56 7 8 91011>>