Home
last modified time | relevance | path

Searched refs:op (Results 1 – 25 of 91) sorted by relevance

1234

/art/runtime/interpreter/mterp/
Dconfig_mips34 # opcode list; argument to op-start is default directory
35 op-start mips
36 # (override example:) op op_sub_float_2addr arm-vfp
37 # (fallback example:) op op_sub_float_2addr FALLBACK
39 # op op_nop FALLBACK
40 # op op_move FALLBACK
41 # op op_move_from16 FALLBACK
42 # op op_move_16 FALLBACK
43 # op op_move_wide FALLBACK
44 # op op_move_wide_from16 FALLBACK
[all …]
Dconfig_mips6434 # opcode list; argument to op-start is default directory
35 op-start mips64
36 # (override example:) op OP_SUB_FLOAT_2ADDR arm-vfp
37 # (fallback example:) op OP_SUB_FLOAT_2ADDR FALLBACK
39 # op op_nop FALLBACK
40 # op op_move FALLBACK
41 # op op_move_from16 FALLBACK
42 # op op_move_16 FALLBACK
43 # op op_move_wide FALLBACK
44 # op op_move_wide_from16 FALLBACK
[all …]
Dconfig_x8638 # opcode list; argument to op-start is default directory
39 op-start x86
40 # (override example:) op OP_SUB_FLOAT_2ADDR arm-vfp
41 # (fallback example:) op OP_SUB_FLOAT_2ADDR FALLBACK
43 # op op_nop FALLBACK
44 # op op_move FALLBACK
45 # op op_move_from16 FALLBACK
46 # op op_move_16 FALLBACK
47 # op op_move_wide FALLBACK
48 # op op_move_wide_from16 FALLBACK
[all …]
Dconfig_x86_6438 # opcode list; argument to op-start is default directory
39 op-start x86_64
40 # (override example:) op OP_SUB_FLOAT_2ADDR arm-vfp
41 # (fallback example:) op OP_SUB_FLOAT_2ADDR FALLBACK
43 # op op_nop FALLBACK
44 # op op_move FALLBACK
45 # op op_move_from16 FALLBACK
46 # op op_move_16 FALLBACK
47 # op op_move_wide FALLBACK
48 # op op_move_wide_from16 FALLBACK
[all …]
Dconfig_arm6432 # opcode list; argument to op-start is default directory
33 op-start arm64
34 # (override example:) op OP_SUB_FLOAT_2ADDR arm-vfp
35 # (fallback example:) op OP_SUB_FLOAT_2ADDR FALLBACK
37 # op op_nop FALLBACK
38 # op op_move FALLBACK
39 # op op_move_from16 FALLBACK
40 # op op_move_16 FALLBACK
41 # op op_move_wide FALLBACK
42 # op op_move_wide_from16 FALLBACK
[all …]
Dconfig_arm34 # opcode list; argument to op-start is default directory
35 op-start arm
36 # (override example:) op op_sub_float_2addr arm-vfp
37 # (fallback example:) op op_sub_float_2addr FALLBACK
39 # op op_nop FALLBACK
40 # op op_move FALLBACK
41 # op op_move_from16 FALLBACK
42 # op op_move_16 FALLBACK
43 # op op_move_wide FALLBACK
44 # op op_move_wide_from16 FALLBACK
[all …]
Dgen_mterp.py292 op = opcodes[i]
294 if opcode_locations.has_key(op):
295 location = opcode_locations[op]
335 op = opcodes[opindex]
339 dict.update({ "opcode":op, "opnum":opindex })
359 op = opcodes[i]
360 if alt_opcode_locations.has_key(op):
361 source = "%s/alt_%s.S" % (alt_opcode_locations[op], op)
375 op = opcodes[opindex]
376 source = "%s/%s.S" % (location, op)
[all …]
/art/compiler/optimizing/
Dinduction_var_analysis.h102 InductionOp op, in InductionInfo()
108 operation(op), in InductionInfo()
125 InductionInfo* CreateInvariantOp(InductionOp op, InductionInfo* a, InductionInfo* b) { in CreateInvariantOp() argument
126 DCHECK(((op != kNeg && a != nullptr) || (op == kNeg && a == nullptr)) && b != nullptr); in CreateInvariantOp()
127 return CreateSimplifiedInvariant(op, a, b); in CreateInvariantOp()
136 InductionInfo* CreateTripCount(InductionOp op, in CreateTripCount() argument
141 return new (graph_->GetArena()) InductionInfo(kInvariant, op, a, b, nullptr, type); in CreateTripCount()
145 InductionOp op, in CreateInduction() argument
151 return new (graph_->GetArena()) InductionInfo(ic, op, a, b, f, type); in CreateInduction()
167 InductionInfo* TransferAddSub(InductionInfo* a, InductionInfo* b, InductionOp op);
[all …]
Dnodes_shared.h30 InstructionKind op,
35 : HExpression(type, SideEffects::None(), dex_pc), op_kind_(op) { in HExpression()
64 InstructionKind op,
69 op_kind_(op) { in HBinaryOperation()
70 DCHECK(op == HInstruction::kAnd || op == HInstruction::kOr || op == HInstruction::kXor) << op; in HBinaryOperation()
218 OpKind op,
224 instr_kind_(instr->GetKind()), op_kind_(op),
265 friend std::ostream& operator<<(std::ostream& os, OpKind op);
270 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op);
Dgraph_checker.cc905 void GraphChecker::VisitCondition(HCondition* op) { in VisitCondition() argument
906 VisitInstruction(op); in VisitCondition()
907 if (op->GetType() != Primitive::kPrimBoolean) { in VisitCondition()
910 op->DebugName(), op->GetId(), in VisitCondition()
911 Primitive::PrettyDescriptor(op->GetType()))); in VisitCondition()
913 HInstruction* lhs = op->InputAt(0); in VisitCondition()
914 HInstruction* rhs = op->InputAt(1); in VisitCondition()
918 op->DebugName(), op->GetId(), in VisitCondition()
922 if (!op->IsEqual() && !op->IsNotEqual()) { in VisitCondition()
926 op->DebugName(), op->GetId())); in VisitCondition()
[all …]
Dinstruction_simplifier_shared.cc189 bool TryMergeNegatedInput(HBinaryOperation* op) { in TryMergeNegatedInput() argument
190 DCHECK(op->IsAnd() || op->IsOr() || op->IsXor()) << op->DebugName(); in TryMergeNegatedInput()
191 HInstruction* left = op->GetLeft(); in TryMergeNegatedInput()
192 HInstruction* right = op->GetRight(); in TryMergeNegatedInput()
220 HBitwiseNegatedRight(op->GetType(), op->GetKind(), hother, src, op->GetDexPc()); in TryMergeNegatedInput()
222 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, neg_op); in TryMergeNegatedInput()
Dinduction_var_analysis.cc426 InductionOp op) { in TransferAddSub() argument
434 return CreateInvariantOp(op, a, b); // direct invariant in TransferAddSub()
438 InductionInfo* new_a = TransferAddSub(a->op_a, b->op_a, op); in TransferAddSub()
439 InductionInfo* new_b = TransferAddSub(a->op_b, b->op_b, op); in TransferAddSub()
446 InductionInfo* new_b = TransferAddSub(a, b->op_b, op); in TransferAddSub()
448 new_a = TransferAddSub(a, new_a, op); in TransferAddSub()
449 } else if (op == kSub) { // Negation required. in TransferAddSub()
458 InductionInfo* new_b = TransferAddSub(a->op_b, b, op); in TransferAddSub()
460 new_a = TransferAddSub(new_a, b, op); in TransferAddSub()
591 InductionOp op, in SolveAddSub() argument
[all …]
Dnodes_shared.cc66 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op) { in operator <<() argument
67 switch (op) { in operator <<()
78 LOG(FATAL) << "Invalid OpKind " << static_cast<int>(op); in operator <<()
/art/test/004-ThreadStress/src/
DMain.java288 Operation op = null; in updateFrequencyMap() local
290 op = new OOM(); in updateFrequencyMap()
292 op = new SigQuit(); in updateFrequencyMap()
294 op = new Alloc(); in updateFrequencyMap()
296 op = new LargeAlloc(); in updateFrequencyMap()
298 op = new StackTrace(); in updateFrequencyMap()
300 op = new Exit(); in updateFrequencyMap()
302 op = new Sleep(); in updateFrequencyMap()
304 op = new Wait(lock); in updateFrequencyMap()
306 op = new TimedWait(lock); in updateFrequencyMap()
[all …]
/art/disassembler/
Ddisassembler_arm64.cc78 Instr op = instr->Mask(LoadLiteralMask); in VisitLoadLiteral() local
79 switch (op) { in VisitLoadLiteral()
83 int64_t data = op == LDR_x_lit ? *reinterpret_cast<int64_t*>(data_address) in VisitLoadLiteral()
90 double data = (op == LDR_s_lit) ? *reinterpret_cast<float*>(data_address) in VisitLoadLiteral()
/art/runtime/interpreter/mterp/mips/
Dunop.S15 $preinstr # optional op
16 $instr # a0 <- op, a0-a3 changed
DunopWider.S13 $preinstr # optional op
14 $instr # result <- op, a0-a3 changed
Dbinop2addr.S25 $preinstr # optional op
26 $instr # $result <- op, a0-a3 changed
DunopWide.S15 $preinstr # optional op
16 $instr # a0/a1 <- op, a2-a3 changed
DbinopLit16.S25 $preinstr # optional op
26 $instr # $result <- op, a0-a3 changed
/art/runtime/interpreter/mterp/mips64/
DunopWide.S12 $preinstr # optional op
14 $instr # a0 <- op, a0-a3 changed
Dunop.S13 $preinstr # optional op
15 $instr # a0 <- op, a0-a3 changed
Dbinop2addr.S26 $preinstr # optional op
27 $instr # $result <- op, a0-a3 changed
DbinopWide2addr.S26 $preinstr # optional op
27 $instr # $result <- op, a0-a3 changed
/art/runtime/interpreter/mterp/arm/
Dunop.S14 $preinstr @ optional op; may set condition codes
16 $instr @ r0<- op, r0-r3 changed

1234