HomeSort by relevance Sort by last modified time
    Searched defs:instruction (Results 226 - 250 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 28 import proguard.classfile.instruction.*;
29 import proguard.classfile.instruction.visitor.InstructionVisitor;
33 * This InstructionVisitor replaces a given pattern instruction sequence by
34 * another given replacement instruction sequence. The arguments of the
35 * instruction sequences can be wildcards that are matched and replaced.
87 private final Instruction[] replacementInstructions;
98 * instruction.
99 * @param patternInstructions the pattern instruction sequence.
100 * @param replacementInstructions the replacement instruction sequence.
108 Instruction[] patternInstructions
    [all...]
InstructionSequenceConstants.java 25 import proguard.classfile.instruction.*;
29 * This class contains a set of instruction sequences and their suggested
387 public static final Instruction[][][] VARIABLE = new Instruction[][][]
568 public static final Instruction[][][] ARITHMETIC = new Instruction[][][]
5069 Instruction instruction = instructions[index]; local
5081 Instruction instruction = instructions[index]; local
    [all...]
  /art/compiler/optimizing/
register_allocator.cc 116 HInstruction* instruction = liveness_.GetInstructionFromSsaIndex(i - 1); local
117 LiveInterval* current = instruction->GetLiveInterval();
121 LocationSummary* locations = instruction->GetLocations();
136 size_t position = instruction->GetLifetimePosition();
141 BlockRegister(output, position, position + 1, instruction->GetType());
145 for (size_t i = 0; i < instruction->InputCount(); ++i) {
148 BlockRegister(input, position, position + 1, instruction->InputAt(i)->GetType());
154 DCHECK(instruction->IsParameterValue());
156 } else if (current->HasSpillSlot() || instruction->IsConstant()) {
209 HInstruction* instruction = liveness_.GetInstructionFromSsaIndex(i) local
914 HInstruction* instruction = liveness_.GetInstructionFromSsaIndex(i); local
947 HInstruction* instruction = liveness_.GetInstructionFromSsaIndex(i); local
    [all...]
code_generator_x86.cc 423 void CodeGeneratorX86::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
424 if (instruction->AsIntConstant() != nullptr) {
425 Immediate imm(instruction->AsIntConstant()->GetValue());
431 } else if (instruction->AsLongConstant() != nullptr) {
432 int64_t value = instruction->AsLongConstant()->GetValue();
440 } else if (instruction->AsLoadLocal() != nullptr) {
441 switch (instruction->GetType()) {
448 Move32(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
453 GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
457 LOG(FATAL) << "Unimplemented local type " << instruction->GetType()
536 HIntConstant* instruction = rhs.GetConstant()->AsIntConstant(); local
608 HConstant* instruction = locations->InAt(1).GetConstant(); local
839 HConstant* instruction = locations->InAt(1).GetConstant(); local
912 HConstant* instruction = locations->InAt(1).GetConstant(); local
1519 HIntConstant* instruction = source.GetConstant()->AsIntConstant(); local
    [all...]
code_generator_x86_64.cc 307 void CodeGeneratorX86_64::Move(HInstruction* instruction,
310 if (instruction->AsIntConstant() != nullptr) {
311 Immediate imm(instruction->AsIntConstant()->GetValue());
317 } else if (instruction->AsLongConstant() != nullptr) {
318 int64_t value = instruction->AsLongConstant()->GetValue();
325 } else if (instruction->AsLoadLocal() != nullptr) {
326 switch (instruction->GetType()) {
333 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
337 Move(location, Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
341 LOG(FATAL) << "Unimplemented local type " << instruction->GetType()
786 HConstant* instruction = locations->InAt(1).GetConstant(); local
852 HConstant* instruction = locations->InAt(1).GetConstant(); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/widget/
WidgetCtsProvider.java 41 String instruction; field in class:WidgetCtsProvider.TextData
47 instruction = i;
164 String instruction = null; local
188 instruction = "This is a test of the widget framework";
191 instruction = "Verify that the width and height indicated below constitute reasonable"
197 instruction = "Verify that there is a functional affordance which allows this widget"
202 instruction = instruction
210 instruction = "Verify that the widget contains a scrollable list of numbers from 1"
214 instruction = "Verify that the text below accurately reflects whether this widget is
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_build.c 578 * instruction
584 struct tgsi_instruction instruction; local
586 instruction.Type = TGSI_TOKEN_TYPE_INSTRUCTION;
587 instruction.NrTokens = 0;
588 instruction.Opcode = TGSI_OPCODE_MOV;
589 instruction.Saturate = TGSI_SAT_NONE;
590 instruction.Predicate = 0;
591 instruction.NumDstRegs = 1;
592 instruction.NumSrcRegs = 1;
593 instruction.Label = 0
608 struct tgsi_instruction instruction; local
971 struct tgsi_instruction *instruction; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 578 * instruction
584 struct tgsi_instruction instruction; local
586 instruction.Type = TGSI_TOKEN_TYPE_INSTRUCTION;
587 instruction.NrTokens = 0;
588 instruction.Opcode = TGSI_OPCODE_MOV;
589 instruction.Saturate = TGSI_SAT_NONE;
590 instruction.Predicate = 0;
591 instruction.NumDstRegs = 1;
592 instruction.NumSrcRegs = 1;
593 instruction.Label = 0
608 struct tgsi_instruction instruction; local
971 struct tgsi_instruction *instruction; local
    [all...]
  /external/proguard/src/proguard/classfile/util/
DynamicMemberReferenceInitializer.java 28 import proguard.classfile.instruction.*;
29 import proguard.classfile.instruction.visitor.InstructionVisitor;
164 private final Instruction[] CONSTANT_GET_FIELD_INSTRUCTIONS = new Instruction[]
172 // private final Instruction[] CONSTANT_GET_CONSTRUCTOR_INSTRUCTIONS0 = new Instruction[]
181 // private final Instruction[] CONSTANT_GET_CONSTRUCTOR_INSTRUCTIONS1 = new Instruction[]
194 // private final Instruction[] CONSTANT_GET_CONSTRUCTOR_INSTRUCTIONS2 = new Instruction[]
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 45 import org.jf.dexlib2.iface.instruction.Instruction;
46 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
47 import org.jf.dexlib2.iface.instruction.ReferenceInstruction;
66 @Nonnull public final ImmutableList<Instruction> instructions;
93 Instruction instruction = instructions.get(i); local
95 Opcode opcode = instruction.getOpcode();
99 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset();
111 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset()
219 Instruction instruction = instructions.get(targetIndex); local
331 Instruction instruction = instructions.get(i); local
403 AnalyzedInstruction instruction = instructions.get(i); local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 29 import proguard.classfile.instruction.*;
30 import proguard.classfile.instruction.visitor.InstructionVisitor;
208 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
211 instruction.accept(clazz, method, codeAttribute, offset, unusedParameterSimplifier);
235 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
238 // Mark that the instruction is necessary if it is an infinite loop.
239 if (instruction.opcode == InstructionConstants.OP_GOTO &&
240 ((BranchInstruction)instruction).branchOffset == 0
277 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
317 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
339 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
395 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
412 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
438 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
    [all...]
  /art/disassembler/
disassembler_arm.cc 128 ArmRegister(uint32_t instruction, uint32_t at_bit) : r((instruction >> at_bit) & 0xf) { CHECK_LE(r, 15U); }
145 ThumbRegister(uint16_t instruction, uint16_t at_bit) : ArmRegister((instruction >> at_bit) & 0x7) {}
149 explicit Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
162 explicit ShiftedImmediate(uint32_t instruction) {
163 uint32_t rotate = ((instruction >> 8) & 0xf);
164 uint32_t imm = (instruction & 0xff)
245 uint32_t instruction = ReadU32(instr_ptr); local
    [all...]
  /external/chromium_org/courgette/
adjustment_method.cc 598 Instruction* instruction = instructions[i]; local
599 if (Label* label = program->InstructionAbs32Label(instruction))
601 if (Label* label = program->InstructionRel32Label(instruction))
adjustment_method_2.cc 1255 Instruction* instruction = instructions[i]; local
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
vcdecoder.cc 194 // Decodes a single ADD instruction, updating parent_->decoded_target_.
197 // Decodes a single RUN instruction, updating parent_->decoded_target_.
200 // Decodes a single COPY instruction, updating parent_->decoded_target_.
234 // Executes a single COPY or ADD instruction, appending data to
238 // Executes a single RUN instruction, appending data to
245 // by the number of instruction/size bytes parsed.
1218 VCDiffInstructionType instruction = local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm.h 90 * instruction or as a program output, that is tracked with an
245 struct brw_wm_instruction *instruction; member in struct:brw_wm_compile
257 GLuint cur_inst; /**< index of current instruction */
277 /** we may need up to 3 constants per instruction (if use_const_buffer) */
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parse.y 197 %type <inst> instruction ALU_instruction TexInstruction
333 statement: instruction ';'
351 instruction: ALU_instruction label
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm.h 90 * instruction or as a program output, that is tracked with an
245 struct brw_wm_instruction *instruction; member in struct:brw_wm_compile
257 GLuint cur_inst; /**< index of current instruction */
277 /** we may need up to 3 constants per instruction (if use_const_buffer) */
  /external/mesa3d/src/mesa/program/
program_parse.y 197 %type <inst> instruction ALU_instruction TexInstruction
333 statement: instruction ';'
351 instruction: ALU_instruction label
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /packages/apps/OMA-DM/engine/dmlib/dmt-tools/lib/
jakarta-regexp-1.4.jar 
  /art/oatdump/
oatdump.cc 79 " --instruction-set=(arm|arm64|mips|x86|x86_64): for locating the image\n"
81 " Example: --instruction-set=x86\n"
166 os << "INSTRUCTION SET:\n";
169 os << "INSTRUCTION SET FEATURES:\n";
887 const Instruction* instruction = Instruction::At(&code_item->insns_[i]); local
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
InstructionConstants.java 21 package proguard.classfile.instruction;
24 * Representation of an instruction.

Completed in 1201 milliseconds

1 2 3 4 5 6 7 8 91011>>