Home
last modified time | relevance | path

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

12

/art/runtime/interpreter/mterp/riscv64/
Dcontrol_flow.S129 %def bincmp(op):
135 b${op} t0, t1, .L${opcode}_branch
150 % bincmp(op="eq")
157 % bincmp(op="ne")
164 % bincmp(op="lt")
171 % bincmp(op="ge")
178 % bincmp(op="gt")
185 % bincmp(op="le")
189 %def zcmp(op):
192 b${op} t0, .L${opcode}_branch
[all …]
/art/test/004-ThreadStress/src-art/
DMain.java387 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/compiler/optimizing/
Dinduction_var_analysis.h105 InductionOp op, in InductionInfo()
111 operation(op), in InductionInfo()
127 InductionOp op, in CreateInvariantOp() argument
130 DCHECK(((op != kNeg && a != nullptr) || (op == kNeg && a == nullptr)) && b != nullptr); in CreateInvariantOp()
131 return CreateSimplifiedInvariant(context, loop, op, a, b); in CreateInvariantOp()
140 InductionInfo* CreateTripCount(InductionOp op, in CreateTripCount() argument
145 return new (graph_->GetAllocator()) InductionInfo(kInvariant, op, a, b, nullptr, type); in CreateTripCount()
149 InductionOp op, in CreateInduction() argument
155 return new (graph_->GetAllocator()) InductionInfo(ic, op, a, b, f, type); in CreateInduction()
180 InductionOp op,
[all …]
Dnodes_shared.h30 InstructionKind op,
36 op_kind_(op) { in HExpression()
134 OpKind op,
140 instr_kind_(instr->GetKind()), op_kind_(op),
185 friend std::ostream& operator<<(std::ostream& os, OpKind op);
188 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op);
Dgraph_checker.cc1246 void GraphChecker::VisitCondition(HCondition* op) { in VisitCondition() argument
1247 VisitInstruction(op); in VisitCondition()
1248 if (op->GetType() != DataType::Type::kBool) { in VisitCondition()
1251 op->DebugName(), op->GetId(), in VisitCondition()
1252 DataType::PrettyDescriptor(op->GetType()))); in VisitCondition()
1254 HInstruction* lhs = op->InputAt(0); in VisitCondition()
1255 HInstruction* rhs = op->InputAt(1); in VisitCondition()
1259 op->DebugName(), op->GetId(), in VisitCondition()
1263 if (!op->IsEqual() && !op->IsNotEqual()) { in VisitCondition()
1267 op->DebugName(), op->GetId())); in VisitCondition()
[all …]
Dnodes_shared.cc75 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 <<()
Dinduction_var_analysis.cc641 InductionOp op, in TransferAddSub() argument
650 return CreateInvariantOp(context, loop, op, a, b); // direct invariant in TransferAddSub()
654 InductionInfo* new_a = TransferAddSub(context, loop, a->op_a, b->op_a, op, type); in TransferAddSub()
655 InductionInfo* new_b = TransferAddSub(context, loop, a->op_b, b->op_b, op, type); in TransferAddSub()
662 InductionInfo* new_b = TransferAddSub(context, loop, a, b->op_b, op, type); in TransferAddSub()
664 new_a = TransferAddSub(context, loop, a, new_a, op, type); in TransferAddSub()
665 } else if (op == kSub) { // Negation required. in TransferAddSub()
674 InductionInfo* new_b = TransferAddSub(context, loop, a->op_b, b, op, type); in TransferAddSub()
676 new_a = TransferAddSub(context, loop, new_a, b, op, type); in TransferAddSub()
820 InductionOp op, in SolveAddSub() argument
[all …]
Dnodes_x86.h171 HX86MaskOrResetLeastSetBit(DataType::Type result_type, InstructionKind op,
174 op_kind_(op) { in HUnaryOperation()
176 DCHECK(op == HInstruction::kAnd || op == HInstruction::kXor) << op; in HUnaryOperation()
Dinstruction_simplifier.cc62 bool ReplaceRotateWithRor(HBinaryOperation* op, HUShr* ushr, HShl* shl);
64 bool TryReplaceWithRotateConstantPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl);
65 bool TryReplaceWithRotateRegisterNegPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl);
66 bool TryReplaceWithRotateRegisterSubPattern(HBinaryOperation* op, HUShr* ushr, HShl* shl);
72 bool TryDeMorganNegationFactoring(HBinaryOperation* op);
227 bool InstructionSimplifierVisitor::TryDeMorganNegationFactoring(HBinaryOperation* op) { in TryDeMorganNegationFactoring() argument
228 DCHECK(op->IsAnd() || op->IsOr()) << op->DebugName(); in TryDeMorganNegationFactoring()
229 DataType::Type type = op->GetType(); in TryDeMorganNegationFactoring()
230 HInstruction* left = op->GetLeft(); in TryDeMorganNegationFactoring()
231 HInstruction* right = op->GetRight(); in TryDeMorganNegationFactoring()
[all …]
Dinstruction_simplifier.h65 bool TryMergeNegatedInput(HBinaryOperation* op);
Dgraph_checker.h62 void VisitBinaryOperation(HBinaryOperation* op) override;
67 void VisitCondition(HCondition* op) override;
Dinduction_var_range_test.cc137 HInductionVarAnalysis::InductionOp op; in CreateInvariant() local
139 case '+': op = HInductionVarAnalysis::kAdd; break; in CreateInvariant()
140 case '-': op = HInductionVarAnalysis::kSub; break; in CreateInvariant()
141 case 'n': op = HInductionVarAnalysis::kNeg; break; in CreateInvariant()
142 case '*': op = HInductionVarAnalysis::kMul; break; in CreateInvariant()
143 case '/': op = HInductionVarAnalysis::kDiv; break; in CreateInvariant()
144 case '%': op = HInductionVarAnalysis::kRem; break; in CreateInvariant()
145 case '^': op = HInductionVarAnalysis::kXor; break; in CreateInvariant()
146 case '<': op = HInductionVarAnalysis::kLT; break; in CreateInvariant()
147 default: op = HInductionVarAnalysis::kNop; break; in CreateInvariant()
[all …]
/art/tools/jvmti-agents/titrace/
Dinstruction_decoder.cc31 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/runtime/interpreter/mterp/armng/
Darithmetic.S30 $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 …]
Dfloating_point.S20 $instr @ s2<- op
41 $instr @ s2<- op
/art/disassembler/
Ddisassembler_arm64.cc106 Instr op = instr->Mask(LoadLiteralMask); in VisitLoadLiteralInstr() local
107 switch (op) { in VisitLoadLiteralInstr()
111 int64_t data = op == LDR_x_lit ? *reinterpret_cast<int64_t*>(data_address) in VisitLoadLiteralInstr()
118 double data = (op == LDR_s_lit) ? *reinterpret_cast<float*>(data_address) in VisitLoadLiteralInstr()
/art/test/701-easy-div-rem/
DgenMain.py72 for op, op_name in (('/', 'Div'), ('%', 'Rem')):
73 local_vars['@OP@'] = op
/art/test/000-nop/
Dinfo.txt1 This is a sample no-op test, which does at least serve to verify that the
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc320 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/tools/ahat/src/main/com/android/ahat/proguard/
DProguardMap.java308 int op = clearName.indexOf('('); in readFromReader() local
310 if (op == -1 || cp == -1) { in readFromReader()
314 String sig = clearName.substring(op, cp + 1); in readFromReader()
341 clearName = clearName.substring(0, op); in readFromReader()
/art/runtime/base/
Dmutex-inl.h38 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, in futex() argument
40 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3); in futex()
/art/test/988-method-trace/src/art/
DTest988.java411 public static void doFibTest(int x, IntUnaryOperator op) {
413 int y = op.applyAsInt(x);
/art/test/2263-method-trace-jit/src/art/
DTest988.java411 public static void doFibTest(int x, IntUnaryOperator op) {
413 int y = op.applyAsInt(x);
/art/tools/veridex/
Dflow_analysis.cc167 #define IF_XX(cond, op) \ in GetBranchFlags() argument
172 if (lhs.GetConstant() op rhs.GetConstant()) { \ in GetBranchFlags()
183 if (val.GetConstant() op 0) { /* NOLINT */ \ in GetBranchFlags()
/art/compiler/utils/x86/
Dassembler_x86.h97 inline bool operator==(const Operand &op) const {
98 return length_ == op.length_ &&
99 memcmp(encoding_, op.encoding_, length_) == 0 &&
100 disp_ == op.disp_ &&
101 fixup_ == op.fixup_;

12