Searched refs:op (Results 26 - 50 of 92) sorted by relevance

1234

/art/runtime/interpreter/mterp/arm/
H A Dbinop.S4 * specifies an instruction that performs "result = r0 op r1".
30 $preinstr @ optional op; may set condition codes
31 $instr @ $result<- op, r0-r3 changed
H A Dbinop2addr.S4 * that specifies an instruction that performs "result = r0 op r1".
27 $preinstr @ optional op; may set condition codes
28 $instr @ $result<- op, r0-r3 changed
H A DbinopLit8.S4 * that specifies an instruction that performs "result = r0 op r1".
27 $preinstr @ optional op; may set condition codes
28 $instr @ $result<- op, r0-r3 changed
H A Dop_div_int.S23 sdiv r0, r0, r1 @ r0<- op
25 bl __aeabi_idiv @ r0<- op, r0-r3 changed
H A Dop_div_int_2addr.S21 sdiv r0, r0, r1 @ r0<- op
23 bl __aeabi_idiv @ r0<- op, r0-r3 changed
H A Dop_div_int_lit16.S21 sdiv r0, r0, r1 @ r0<- op
23 bl __aeabi_idiv @ r0<- op, r0-r3 changed
H A Dop_div_int_lit8.S22 sdiv r0, r0, r1 @ r0<- op
24 bl __aeabi_idiv @ r0<- op, r0-r3 changed
H A Dop_rem_int.S26 mls r1, r1, r2, r0 @ r1<- op, r0-r2 changed
28 bl __aeabi_idivmod @ r1<- op, r0-r3 changed
H A Dop_rem_int_2addr.S24 mls r1, r1, r2, r0 @ r1<- op
26 bl __aeabi_idivmod @ r1<- op, r0-r3 changed
H A Dop_rem_int_lit16.S24 mls r1, r1, r2, r0 @ r1<- op
26 bl __aeabi_idivmod @ r1<- op, r0-r3 changed
H A Dop_rem_int_lit8.S25 mls r1, r1, r2, r0 @ r1<- op
27 bl __aeabi_idivmod @ r1<- op, r0-r3 changed
H A DunopWide.S4 * specifies an instruction that performs "result = op r0/r1".
17 $preinstr @ optional op; may set condition codes
18 $instr @ r0/r1<- op, r2-r3 changed
H A DunopWider.S4 * that specifies an instruction that performs "result = op r0", where
14 $preinstr @ optional op; may set condition codes
17 $instr @ r0<- op, r0-r3 changed
H A DbinopWide2addr.S4 * that specifies an instruction that performs "result = r0-r1 op r2-r3".
29 $preinstr @ optional op; may set condition codes
30 $instr @ result<- op, r0-r3 changed
H A DbinopLit16.S4 * that specifies an instruction that performs "result = r0 op r1".
25 $instr @ $result<- op, r0-r3 changed
H A Dfbinop2addr.S4 * "s2 = s0 op s1".
16 $instr @ s2<- op
/art/runtime/interpreter/mterp/mips/
H A DbinopLit8.S4 * that specifies an instruction that performs "result = a0 op a1".
27 $preinstr # optional op
28 $instr # $result <- op, a0-a3 changed
H A DbinopWide.S4 * specifies an instruction that performs "result = a0-a1 op a2-a3".
31 $preinstr # optional op
32 $instr # result <- op, a0-a3 changed
H A DbinopWide2addr.S4 * that specifies an instruction that performs "result = a0-a1 op a2-a3".
28 $preinstr # optional op
29 $instr # result <- op, a0-a3 changed
/art/test/004-ThreadStress/src/
H A DMain.java285 Operation op = null;
287 op = new OOM();
289 op = new SigQuit();
291 op = new Alloc();
293 op = new LargeAlloc();
295 op = new StackTrace();
297 op = new Exit();
299 op = new Sleep();
301 op = new Wait(lock);
303 op
[all...]
/art/compiler/optimizing/
H A Dinduction_var_analysis.h97 InductionOp op,
103 operation(op),
120 InductionInfo* CreateInvariantOp(InductionOp op, InductionInfo* a, InductionInfo* b) { argument
121 DCHECK(((op != kNeg && a != nullptr) || (op == kNeg && a == nullptr)) && b != nullptr);
122 return CreateSimplifiedInvariant(op, a, b);
131 InductionInfo* CreateTripCount(InductionOp op, argument
136 return new (graph_->GetArena()) InductionInfo(kInvariant, op, a, b, nullptr, type);
157 InductionInfo* TransferAddSub(InductionInfo* a, InductionInfo* b, InductionOp op);
173 InductionOp op,
96 InductionInfo(InductionClass ic, InductionOp op, InductionInfo* a, InductionInfo* b, HInstruction* f, Primitive::Type t) argument
[all...]
H A Dgraph_checker.cc892 void GraphChecker::VisitCondition(HCondition* op) { argument
893 VisitInstruction(op);
894 if (op->GetType() != Primitive::kPrimBoolean) {
897 op->DebugName(), op->GetId(),
898 Primitive::PrettyDescriptor(op->GetType())));
900 HInstruction* lhs = op->InputAt(0);
901 HInstruction* rhs = op->InputAt(1);
905 op->DebugName(), op
935 VisitBinaryOperation(HBinaryOperation* op) argument
[all...]
H A Dnodes_arm64.cc67 std::ostream& operator<<(std::ostream& os, const HArm64DataProcWithShifterOp::OpKind op) { argument
68 switch (op) {
79 LOG(FATAL) << "Invalid OpKind " << static_cast<int>(op);
H A Dnodes_arm64.h46 OpKind op,
52 instr_kind_(instr->GetKind()), op_kind_(op), shift_amount_(shift) {
90 friend std::ostream& operator<<(std::ostream& os, OpKind op);
95 std::ostream& operator<<(std::ostream& os, const HArm64DataProcWithShifterOp::OpKind op);
43 HArm64DataProcWithShifterOp(HInstruction* instr, HInstruction* left, HInstruction* right, OpKind op, int shift = 0, uint32_t dex_pc = kNoDexPc) argument
/art/disassembler/
H A Ddisassembler_arm64.cc76 vixl::Instr op = instr->Mask(vixl::LoadLiteralMask); local
77 switch (op) {
81 int64_t data = op == vixl::LDR_x_lit ? *reinterpret_cast<int64_t*>(data_address)
88 double data = (op == vixl::LDR_s_lit) ? *reinterpret_cast<float*>(data_address)

Completed in 165 milliseconds

1234