/art/compiler/optimizing/ |
D | nodes_shared.h | 30 InstructionKind op, 36 op_kind_(op) { in HExpression() 68 InstructionKind op, 78 op_kind_(op) { in HBinaryOperation() 79 DCHECK(op == HInstruction::kAnd || op == HInstruction::kOr || op == HInstruction::kXor) << op; in HBinaryOperation() 200 OpKind op, 206 instr_kind_(instr->GetKind()), op_kind_(op), 251 friend std::ostream& operator<<(std::ostream& os, OpKind op); 254 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op);
|
D | induction_var_analysis.h | 102 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_->GetAllocator()) InductionInfo(kInvariant, op, a, b, nullptr, type); in CreateTripCount() 145 InductionOp op, in CreateInduction() argument 151 return new (graph_->GetAllocator()) InductionInfo(ic, op, a, b, f, type); in CreateInduction() 167 InductionInfo* TransferAddSub(InductionInfo* a, InductionInfo* b, InductionOp op); [all …]
|
D | graph_checker.cc | 1011 void GraphChecker::VisitCondition(HCondition* op) { in VisitCondition() argument 1012 VisitInstruction(op); in VisitCondition() 1013 if (op->GetType() != DataType::Type::kBool) { in VisitCondition() 1016 op->DebugName(), op->GetId(), in VisitCondition() 1017 DataType::PrettyDescriptor(op->GetType()))); in VisitCondition() 1019 HInstruction* lhs = op->InputAt(0); in VisitCondition() 1020 HInstruction* rhs = op->InputAt(1); in VisitCondition() 1024 op->DebugName(), op->GetId(), in VisitCondition() 1028 if (!op->IsEqual() && !op->IsNotEqual()) { in VisitCondition() 1032 op->DebugName(), op->GetId())); in VisitCondition() [all …]
|
D | instruction_simplifier_shared.cc | 189 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()
|
D | induction_var_analysis.cc | 564 InductionOp op) { in TransferAddSub() argument 572 return CreateInvariantOp(op, a, b); // direct invariant in TransferAddSub() 576 InductionInfo* new_a = TransferAddSub(a->op_a, b->op_a, op); in TransferAddSub() 577 InductionInfo* new_b = TransferAddSub(a->op_b, b->op_b, op); in TransferAddSub() 584 InductionInfo* new_b = TransferAddSub(a, b->op_b, op); in TransferAddSub() 586 new_a = TransferAddSub(a, new_a, op); in TransferAddSub() 587 } else if (op == kSub) { // Negation required. in TransferAddSub() 596 InductionInfo* new_b = TransferAddSub(a->op_b, b, op); in TransferAddSub() 598 new_a = TransferAddSub(new_a, b, op); in TransferAddSub() 729 InductionOp op, in SolveAddSub() argument [all …]
|
D | nodes_shared.cc | 75 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op) { in operator <<() argument 76 switch (op) { in operator <<() 87 LOG(FATAL) << "Invalid OpKind " << static_cast<int>(op); in operator <<()
|
D | nodes_x86.h | 171 HX86MaskOrResetLeastSetBit(DataType::Type result_type, InstructionKind op, 174 op_kind_(op) { in HUnaryOperation() 176 DCHECK(op == HInstruction::kAnd || op == HInstruction::kXor) << op; in HUnaryOperation()
|
D | instruction_simplifier.cc | 57 bool ReplaceRotateWithRor(HBinaryOperation* op, HUShr* ushr, HShl* shl); 59 bool TryReplaceWithRotateConstantPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl); 60 bool TryReplaceWithRotateRegisterNegPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl); 61 bool TryReplaceWithRotateRegisterSubPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl); 67 bool TryDeMorganNegationFactoring(HBinaryOperation* op); 221 bool InstructionSimplifierVisitor::TryDeMorganNegationFactoring(HBinaryOperation* op) { in TryDeMorganNegationFactoring() argument 222 DCHECK(op->IsAnd() || op->IsOr()) << op->DebugName(); in TryDeMorganNegationFactoring() 223 DataType::Type type = op->GetType(); in TryDeMorganNegationFactoring() 224 HInstruction* left = op->GetLeft(); in TryDeMorganNegationFactoring() 225 HInstruction* right = op->GetRight(); in TryDeMorganNegationFactoring() [all …]
|
D | induction_var_range_test.cc | 136 HInductionVarAnalysis::InductionOp op; in CreateInvariant() local 138 case '+': op = HInductionVarAnalysis::kAdd; break; in CreateInvariant() 139 case '-': op = HInductionVarAnalysis::kSub; break; in CreateInvariant() 140 case 'n': op = HInductionVarAnalysis::kNeg; break; in CreateInvariant() 141 case '*': op = HInductionVarAnalysis::kMul; break; in CreateInvariant() 142 case '/': op = HInductionVarAnalysis::kDiv; break; in CreateInvariant() 143 case '%': op = HInductionVarAnalysis::kRem; break; in CreateInvariant() 144 case '^': op = HInductionVarAnalysis::kXor; break; in CreateInvariant() 145 case '<': op = HInductionVarAnalysis::kLT; break; in CreateInvariant() 146 default: op = HInductionVarAnalysis::kNop; break; in CreateInvariant() [all …]
|
D | graph_checker.h | 57 void VisitBinaryOperation(HBinaryOperation* op) override; 62 void VisitCondition(HCondition* op) override;
|
D | instruction_simplifier_shared.h | 64 bool TryMergeNegatedInput(HBinaryOperation* op);
|
/art/test/004-ThreadStress/src-art/ |
D | Main.java | 387 Operation op = null; in updateFrequencyMap() local 389 op = new OOM(); in updateFrequencyMap() 391 op = new SigQuit(); in updateFrequencyMap() 393 op = new Alloc(); in updateFrequencyMap() 395 op = new LargeAlloc(); in updateFrequencyMap() 397 op = new NonMovingAlloc(); in updateFrequencyMap() 399 op = new StackTrace(); in updateFrequencyMap() 401 op = new Exit(); in updateFrequencyMap() 403 op = new Sleep(); in updateFrequencyMap() 405 op = new Wait(lock); in updateFrequencyMap() [all …]
|
/art/tools/jvmti-agents/titrace/ |
D | instruction_decoder.cc | 31 Bytecode::Opcode op = static_cast<Bytecode::Opcode>(opcode); in GetName() local 32 return Bytecode::ToString(op); in GetName() 252 static const char* ToString(Bytecode::Opcode op) { in ToString() argument 253 switch (op) { in ToString() 460 LOG(FATAL) << "Unknown opcode " << op; in ToString() 474 Bytecode::Opcode op = static_cast<Bytecode::Opcode>(opcode); in GetName() local 475 return Bytecode::ToString(op); in GetName() 496 static const char* ToString(Bytecode::Opcode op) { in ToString() argument 497 switch (op) { in ToString() 502 default: LOG(FATAL) << "Unknown opcode " << op; in ToString()
|
/art/disassembler/ |
D | disassembler_arm64.cc | 78 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/armng/ |
D | arithmetic.S | 30 $preinstr @ optional op; may set condition codes 31 $instr @ $result<- op, r0-r3 changed 63 $preinstr @ optional op; may set condition codes 64 $instr @ $result<- op, r0-r3 changed 94 $instr @ $result<- op, r0-r3 changed 130 $instr @ $result<- op, r0-r3 changed 168 $preinstr @ optional op; may set condition codes 169 $instr @ result<- op, r0-r3 changed 203 $preinstr @ optional op; may set condition codes 204 $instr @ result<- op, r0-r3 changed [all …]
|
D | floating_point.S | 20 $instr @ s2<- op 41 $instr @ s2<- op
|
/art/runtime/interpreter/mterp/arm/ |
D | arithmetic.S | 30 $preinstr @ optional op; may set condition codes 31 $instr @ $result<- op, r0-r3 changed 63 $preinstr @ optional op; may set condition codes 64 $instr @ $result<- op, r0-r3 changed 94 $instr @ $result<- op, r0-r3 changed 130 $instr @ $result<- op, r0-r3 changed 168 $preinstr @ optional op; may set condition codes 169 $instr @ result<- op, r0-r3 changed 203 $preinstr @ optional op; may set condition codes 204 $instr @ result<- op, r0-r3 changed [all …]
|
D | floating_point.S | 20 $instr @ s2<- op 41 $instr @ s2<- op
|
/art/openjdkjvmti/ |
D | transform.cc | 116 [&](const auto op) { return op->ContainsAddress(ptr); }); in Action() argument 133 [&](const auto op) { return op->ContainsAddress(ptr); }) != in Action() argument 192 [&](const auto op) { return op->ContainsAddress(ptr); }) != in DefinitionIsInitializing() argument
|
/art/runtime/interpreter/ |
D | interpreter_intrinsics.cc | 27 #define BINARY_INTRINSIC(name, op, get1, get2, set) \ argument 35 result_register->set(op(shadow_frame->get1, shadow_frame->get2)); \ 39 #define BINARY_II_INTRINSIC(name, op, set) \ argument 40 BINARY_INTRINSIC(name, op, GetVReg(arg[0]), GetVReg(arg[1]), set) 42 #define BINARY_JJ_INTRINSIC(name, op, set) \ argument 43 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVRegLong(arg[2]), set) 45 #define BINARY_JI_INTRINSIC(name, op, set) \ argument 46 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVReg(arg[2]), set) 48 #define UNARY_INTRINSIC(name, op, get, set) \ argument 56 result_register->set(op(shadow_frame->get(arg[0]))); \
|
/art/test/701-easy-div-rem/ |
D | genMain.py | 72 for op, op_name in (('/', 'Div'), ('%', 'Rem')): 73 local_vars['@OP@'] = op
|
/art/test/000-nop/ |
D | info.txt | 1 This is a sample no-op test, which does at least serve to verify that the
|
/art/tools/ahat/src/main/com/android/ahat/proguard/ |
D | ProguardMap.java | 278 int op = clearName.indexOf('('); in readFromReader() local 280 if (op == -1 || cp == -1) { in readFromReader() 284 String sig = clearName.substring(op, cp + 1); in readFromReader() 299 clearName = clearName.substring(0, op); in readFromReader()
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | breakpoint_logger.cc | 320 static std::string RemoveLastOption(const std::string& op) { in RemoveLastOption() argument 321 if (op.find(',') == std::string::npos) { in RemoveLastOption() 324 return SubstrOf(op, op.find(',') + 1, std::string::npos); in RemoveLastOption()
|
/art/runtime/base/ |
D | mutex-inl.h | 41 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, in futex() argument 43 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3); in futex()
|