HomeSort by relevance Sort by last modified time
    Searched refs:op_kind (Results 1 - 11 of 11) sorted by null

  /art/compiler/optimizing/
nodes_shared.cc 31 /*out*/OpKind* op_kind,
35 *op_kind = kLSL;
38 *op_kind = kASR;
41 *op_kind = kLSR;
55 *op_kind = kLSL;
59 *op_kind = kUXTB;
62 *op_kind = kUXTH;
65 case 1: *op_kind = kSXTB; break;
66 case 2: *op_kind = kSXTH; break;
67 case 4: *op_kind = kSXTW; break
    [all...]
nodes_shared.h 224 static bool IsShiftOp(OpKind op_kind) {
225 return kFirstShiftOp <= op_kind && op_kind <= kLastShiftOp;
228 static bool IsExtensionOp(OpKind op_kind) {
229 return kFirstExtensionOp <= op_kind && op_kind <= kLastExtensionOp;
234 /*out*/OpKind* op_kind,
instruction_simplifier_arm.cc 118 HDataProcWithShifterOp::OpKind op_kind; local
121 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
126 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
141 op_kind,
instruction_simplifier_arm64.cc 132 HDataProcWithShifterOp::OpKind op_kind; local
134 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
136 if (HDataProcWithShifterOp::IsExtensionOp(op_kind) && !ShifterOperandSupportsExtension(use)) {
145 op_kind,
instruction_simplifier_shared.cc 41 HInstruction::InstructionKind op_kind; local
50 op_kind = HInstruction::kAdd;
61 op_kind = HInstruction::kAdd;
69 op_kind = HInstruction::kSub;
80 mul->GetType(), op_kind, input_a, input_a, input_b, mul->GetDexPc());
common_arm64.h 317 inline vixl::aarch64::Shift ShiftFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
318 switch (op_kind) {
323 LOG(FATAL) << "Unexpected op kind " << op_kind;
329 inline vixl::aarch64::Extend ExtendFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
330 switch (op_kind) {
338 LOG(FATAL) << "Unexpected op kind " << op_kind;
scheduler_arm.cc 599 const HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind(); local
605 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
    [all...]
code_generator_arm_vixl.cc 8049 const HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind(); local
    [all...]
code_generator_arm64.cc 2544 HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind(); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_peephole.cpp 105 int op_kind = (flags & AF_PRED) ? 1 : local
159 switch(op_kind) {
  /external/python/cpython3/Parser/
asdl.py 239 op_kind = TokenKind.operator_table[c]
242 yield Token(op_kind, c, lineno)

Completed in 190 milliseconds