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

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/optimizing/
code_generator_vector_arm.cc 25 void LocationsBuilderARM::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
26 LOG(FATAL) << "No SIMD for " << instruction->GetId();
29 void InstructionCodeGeneratorARM::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
30 LOG(FATAL) << "No SIMD for " << instruction->GetId();
33 void LocationsBuilderARM::VisitVecSetScalars(HVecSetScalars* instruction) {
34 LOG(FATAL) << "No SIMD for " << instruction->GetId();
37 void InstructionCodeGeneratorARM::VisitVecSetScalars(HVecSetScalars* instruction) {
38 LOG(FATAL) << "No SIMD for " << instruction->GetId();
41 void LocationsBuilderARM::VisitVecSumReduce(HVecSumReduce* instruction) {
42 LOG(FATAL) << "No SIMD for " << instruction->GetId()
    [all...]
code_generator_vector_arm_vixl.cc 25 void LocationsBuilderARMVIXL::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
26 LOG(FATAL) << "No SIMD for " << instruction->GetId();
29 void InstructionCodeGeneratorARMVIXL::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
30 LOG(FATAL) << "No SIMD for " << instruction->GetId();
33 void LocationsBuilderARMVIXL::VisitVecSetScalars(HVecSetScalars* instruction) {
34 LOG(FATAL) << "No SIMD for " << instruction->GetId();
37 void InstructionCodeGeneratorARMVIXL::VisitVecSetScalars(HVecSetScalars* instruction) {
38 LOG(FATAL) << "No SIMD for " << instruction->GetId();
41 void LocationsBuilderARMVIXL::VisitVecSumReduce(HVecSumReduce* instruction) {
42 LOG(FATAL) << "No SIMD for " << instruction->GetId()
    [all...]
code_generator_vector_mips.cc 25 void LocationsBuilderMIPS::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
26 LOG(FATAL) << "No SIMD for " << instruction->GetId();
29 void InstructionCodeGeneratorMIPS::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
30 LOG(FATAL) << "No SIMD for " << instruction->GetId();
33 void LocationsBuilderMIPS::VisitVecSetScalars(HVecSetScalars* instruction) {
34 LOG(FATAL) << "No SIMD for " << instruction->GetId();
37 void InstructionCodeGeneratorMIPS::VisitVecSetScalars(HVecSetScalars* instruction) {
38 LOG(FATAL) << "No SIMD for " << instruction->GetId();
41 void LocationsBuilderMIPS::VisitVecSumReduce(HVecSumReduce* instruction) {
42 LOG(FATAL) << "No SIMD for " << instruction->GetId()
    [all...]
code_generator_vector_mips64.cc 25 void LocationsBuilderMIPS64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
26 LOG(FATAL) << "No SIMD for " << instruction->GetId();
29 void InstructionCodeGeneratorMIPS64::VisitVecReplicateScalar(HVecReplicateScalar* instruction) {
30 LOG(FATAL) << "No SIMD for " << instruction->GetId();
33 void LocationsBuilderMIPS64::VisitVecSetScalars(HVecSetScalars* instruction) {
34 LOG(FATAL) << "No SIMD for " << instruction->GetId();
37 void InstructionCodeGeneratorMIPS64::VisitVecSetScalars(HVecSetScalars* instruction) {
38 LOG(FATAL) << "No SIMD for " << instruction->GetId();
41 void LocationsBuilderMIPS64::VisitVecSumReduce(HVecSumReduce* instruction) {
42 LOG(FATAL) << "No SIMD for " << instruction->GetId()
    [all...]
constant_folding.cc 50 void VisitEqual(HEqual* instruction) OVERRIDE;
51 void VisitNotEqual(HNotEqual* instruction) OVERRIDE;
53 void VisitAbove(HAbove* instruction) OVERRIDE;
54 void VisitAboveOrEqual(HAboveOrEqual* instruction) OVERRIDE;
55 void VisitBelow(HBelow* instruction) OVERRIDE;
56 void VisitBelowOrEqual(HBelowOrEqual* instruction) OVERRIDE;
58 void VisitAnd(HAnd* instruction) OVERRIDE;
59 void VisitCompare(HCompare* instruction) OVERRIDE;
60 void VisitMul(HMul* instruction) OVERRIDE;
61 void VisitOr(HOr* instruction) OVERRIDE
    [all...]
  /external/valgrind/none/tests/mips64/
macro_load_store.h 3 #define TEST1(instruction, offset, mem) \
11 instruction" $t1, 0($t0)" "\n\t" \
18 instruction, offset, out); \
21 #define TEST2(instruction, offset) \
33 instruction" $t3, 0($t1)" "\n\t" \
44 instruction, offset, out, outHI); \
47 #define TEST3(instruction, offset, mem) \
55 instruction" $f0, 0($t0)" "\n\t" \
62 instruction, offset, out); \
65 #define TEST3w(instruction, offset, mem)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
InstructionRewriter.java 36 import org.jf.dexlib2.iface.instruction.Instruction;
37 import org.jf.dexlib2.iface.instruction.ReferenceInstruction;
38 import org.jf.dexlib2.iface.instruction.formats.*;
46 public class InstructionRewriter implements Rewriter<Instruction> {
53 @Nonnull @Override public Instruction rewrite(@Nonnull Instruction instruction) {
54 if (instruction instanceof ReferenceInstruction) {
55 switch (instruction.getOpcode().format)
77 @Nonnull protected T instruction; field in class:InstructionRewriter.BaseRewrittenReferenceInstruction
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 20 * Unit tests for {@link Instruction}.
24 private Instruction instruction; field in class:InstructionTest
28 instruction = new Instruction(123);
33 assertEquals(123, instruction.getLine());
34 assertEquals(0, instruction.getBranches());
35 assertEquals(0, instruction.getCoveredBranches());
40 instruction.addBranch();
41 assertEquals(1, instruction.getBranches())
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
Instruction10t.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
Instruction10x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.Instruction;
36 public interface Instruction10x extends Instruction {
Instruction11x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OneRegisterInstruction;
Instruction12x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction;
Instruction20t.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
Instruction22x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction;
Instruction23x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.ThreeRegisterInstruction;
Instruction30t.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
Instruction32x.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction;
PackedSwitchPayload.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.SwitchPayload;
SparseSwitchPayload.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.SwitchPayload;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
parallel-bad-2.l 2 [^:]*:5: Error: parallel instruction not following another instruction
3 [^:]*:8: Error: parallel instruction not following another instruction
predicate-bad-3.l 2 [^:]*:5: Error: instruction 'nop' cannot be predicated
3 [^:]*:6: Error: instruction 'nop' cannot be predicated
4 [^:]*:7: Error: instruction 'addab' cannot be predicated
5 [^:]*:8: Error: instruction 'addah' cannot be predicated
6 [^:]*:9: Error: instruction 'addaw' cannot be predicated
7 [^:]*:10: Error: instruction 'callp' cannot be predicated
8 [^:]*:11: Error: instruction 'addsub' cannot be predicated
9 [^:]*:12: Error: instruction 'addsub2' cannot be predicated
10 [^:]*:13: Error: instruction 'cmpy' cannot be predicated
11 [^:]*:14: Error: instruction 'cmpyr' cannot be predicate
    [all...]
predicate-bad-2.l 3 [^:]*:5: Error: instruction 'nop' cannot be predicated
4 [^:]*:6: Error: instruction 'nop' cannot be predicated
5 [^:]*:7: Error: instruction 'nop' cannot be predicated
6 [^:]*:8: Error: instruction 'nop' cannot be predicated
7 [^:]*:9: Error: instruction 'nop' cannot be predicated
8 [^:]*:10: Error: instruction 'nop' cannot be predicated
10 [^:]*:11: Error: instruction 'nop' cannot be predicated
11 [^:]*:12: Error: instruction 'nop' cannot be predicated
12 [^:]*:13: Error: instruction 'nop' cannot be predicated
13 [^:]*:14: Error: instruction 'nop' cannot be predicate
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction.java 32 package org.jf.dexlib2.immutable.instruction;
37 import org.jf.dexlib2.iface.instruction.Instruction;
38 import org.jf.dexlib2.iface.instruction.formats.*;
44 public abstract class ImmutableInstruction implements Instruction {
53 public static ImmutableInstruction of(Instruction instruction) {
54 if (instruction instanceof ImmutableInstruction) {
55 return (ImmutableInstruction)instruction;
58 switch (instruction.getOpcode().format)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
FieldOffsetInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface FieldOffsetInstruction extends Instruction {
HatLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface HatLiteralInstruction extends Instruction {

Completed in 350 milliseconds

1 2 3 4 5 6 7 8 91011>>