HomeSort by relevance Sort by last modified time
    Searched defs:instr (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/interpreter/mterp/x86_64/
unop.S 1 %default {"preinstr":"", "instr":"", "wide":"0"}
3 * Generic 32/64-bit unary operation. Provide an "instr" line that
16 $instr
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
package-info.java 16 * is the class {@link org.jacoco.core.instr.Instrumenter}.
19 package org.jacoco.core.instr
  /external/v8/src/crankshaft/
hydrogen-canonicalize.cc 21 HInstruction* instr = it.Current(); local
22 if (instr->IsArithmeticBinaryOperation()) {
23 if (instr->representation().IsInteger32()) {
24 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
26 instr->SetFlag(HInstruction::kAllUsesTruncatingToInt32);
28 } else if (instr->representation().IsSmi()) {
29 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
31 instr->SetFlag(HInstruction::kAllUsesTruncatingToSmi);
32 } else if (instr->HasAtLeastOneUseWithFlagAndNoneWithout(
35 instr->SetFlag(HInstruction::kAllUsesTruncatingToInt32)
51 HInstruction* instr = it.Current(); local
    [all...]
hydrogen-dehoist.cc 62 HInstruction* instr = it.Current(); local
63 if (instr->IsLoadKeyed()) {
64 DehoistArrayIndex(HLoadKeyed::cast(instr));
65 } else if (instr->IsStoreKeyed()) {
66 DehoistArrayIndex(HStoreKeyed::cast(instr));
hydrogen-dce.cc 12 HValue* instr, ZoneList<HValue*>* worklist) {
13 if (instr->CheckFlag(HValue::kIsLive)) return; // Already live.
15 if (FLAG_trace_dead_code_elimination) PrintLive(NULL, instr);
18 worklist->Add(instr, zone());
20 HValue* instr = worklist->RemoveLast(); local
21 instr->SetFlag(HValue::kIsLive);
22 for (int i = 0; i < instr->OperandCount(); ++i) {
23 HValue* input = instr->OperandAt(i);
27 if (FLAG_trace_dead_code_elimination) PrintLive(instr, input);
34 void HDeadCodeEliminationPhase::PrintLive(HValue* ref, HValue* instr) {
54 HInstruction* instr = it.Current(); local
74 HInstruction* instr = it.Current(); local
    [all...]
hydrogen-store-elimination.cc 37 HInstruction* instr = it.Current(); local
38 if (instr->CheckFlag(HValue::kIsDead)) continue;
40 switch (instr->opcode()) {
43 ProcessStore(HStoreNamedField::cast(instr));
47 ProcessLoad(HLoadNamedField::cast(instr));
50 ProcessInstr(instr, flags);
98 void HStoreEliminationPhase::ProcessInstr(HInstruction* instr,
101 if (instr->CanDeoptimize()) {
103 instr->id(), instr->Mnemonic()))
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
IProbeInserter.java 12 package org.jacoco.core.internal.instr;
IProbeArrayStrategy.java 12 package org.jacoco.core.internal.instr;
NoneProbeArrayStrategy.java 12 package org.jacoco.core.internal.instr;
LocalProbeArrayStrategy.java 12 package org.jacoco.core.internal.instr;
ProbeArrayStrategyFactory.java 12 package org.jacoco.core.internal.instr;
ProbeCounter.java 12 package org.jacoco.core.internal.instr;
  /system/core/libpixelflinger/tests/arch-arm64/disassembler/
arm64_diassembler_test.cpp 32 int arm64_disassemble(uint32_t code, char* instr);
37 const char *instr; member in struct:test_table_entry_t
295 char instr[256]; local
301 arm64_disassemble(test->code, instr);
302 if(strcmp(instr, test->instr) != 0)
307 "Actual : %s\n", test->code, test->instr, instr);
  /external/elfutils/backends/
s390_unwind.c 56 Dwarf_Word instr; local
57 if (! readfunc (pc, &instr, arg))
60 instr = (instr >> (ebl->class == ELFCLASS64 ? 48 : 16)) & 0xffff;
63 if (((instr >> 8) & 0xff) != 0x0a)
66 if ((instr & 0xff) != 119 && (instr & 0xff) != 173)
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
InstrumentationTimeScenario.java 16 import org.jacoco.core.instr.Instrumenter;
38 final Instrumenter instr = new Instrumenter(new LoggerRuntime()); local
42 instr.instrument(bytes, "TestTarget");
ExecuteInstrumentedCodeScenario.java 16 import org.jacoco.core.instr.Instrumenter;
43 final Instrumenter instr = new Instrumenter(runtime); local
44 final byte[] instrumentedBuffer = instr.instrument(reader);
InstrumentationSizeSzenario.java 14 import org.jacoco.core.instr.Instrumenter;
35 final Instrumenter instr = new Instrumenter(runtime); local
36 instr.instrument(reader);
38 instr.instrument(reader).length, reader.b.length);
  /external/vixl/test/aarch64/
test-fuzz-aarch64.cc 53 uint32_t instr = static_cast<uint32_t>(mrand48()); local
54 buffer->SetInstructionBits(instr);
73 uint32_t instr = static_cast<uint32_t>(mrand48()); local
74 buffer->SetInstructionBits(instr);
  /external/elfutils/libcpu/
i386_parse.y 192 struct instruction *instr, int n);
282 instrs: instrs '\n' instr
283 | instr
286 instr: bytes ':' bitfieldopt kID bitfieldopt optargs label
774 struct instruction *instr, int n)
791 if (instr->operands[n].str != NULL)
796 instr->operands[n].str = runp->str;
839 if (instr->operands[n].off1 == 0)
840 instr->operands[n].off1 = bitoff;
841 else if (instr->operands[n].off2 == 0
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opt_conditional_discard.c 63 nir_foreach_instr_safe(instr, after) {
64 if (instr->type != nir_instr_type_phi)
66 nir_phi_instr *phi = nir_instr_as_phi(instr);
78 nir_instr *instr = nir_block_first_instr(then_block); local
79 if (instr->type != nir_instr_type_intrinsic)
82 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
101 nir_instr_insert_before_cf(prev_node, &discard_if->instr);
102 nir_instr_remove(&intrin->instr);
nir_opt_global_to_local.c 38 nir_instr *instr = def_dest->reg.parent_instr; local
40 nir_cf_node_get_function(&instr->block->cf_node);
50 nir_instr *instr = use_src->parent_instr; local
52 nir_cf_node_get_function(&instr->block->cf_node);
nir_opt_move_comparisons.c 107 nir_instr *instr = src->parent_instr; local
108 if (move_comparison_source(src, instr->block, instr))
136 nir_foreach_instr_reverse(instr, block) {
145 if (instr->type == nir_instr_type_phi) {
148 } else if (instr->type == nir_instr_type_alu) {
152 nir_alu_instr *alu = nir_instr_as_alu(instr);
155 block, instr);
158 nir_foreach_src(instr, move_comparison_source_cb, &progress);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_struct.c 188 LLVMValueRef instr; local
190 instr = LLVMBuildStore(builder, value, element_ptr);
191 LLVMSetAlignment(instr, alignment);
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_depth.c 40 * depth(instr) {
43 * foreach (src in instr->regs[1..n])
44 * d = max(d, delayslots(src->instr, n) + depth(src->instr));
87 ir3_insert_by_depth(struct ir3_instruction *instr, struct list_head *list)
90 list_delinit(&instr->node);
94 if (pos->depth > instr->depth) {
95 list_add(&instr->node, &pos->node);
100 list_addtail(&instr->node, list);
104 ir3_instr_depth(struct ir3_instruction *instr)
180 struct ir3_instruction *instr = ir->indirects[i]; local
    [all...]
  /external/toybox/kconfig/lxdialog/
inputbox.c 49 char *instr = dialog_input_result; local
53 instr[0] = '\0';
55 strcpy(instr, init);
100 input_x = strlen(instr);
106 waddch(dialog, instr[scroll + i]);
108 waddstr(dialog, instr);
137 instr[scroll + input_x + i] ?
138 instr[scroll + input_x + i] : ' ');
139 input_x = strlen(instr) - scroll;
142 instr[scroll + input_x] = '\0'
    [all...]

Completed in 809 milliseconds

1 2 3 4 5 6 7 8 91011>>