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

  /art/compiler/optimizing/
nodes_shared.cc 25 /*out*/OpKind* op_kind,
29 *op_kind = kLSL;
32 *op_kind = kASR;
35 *op_kind = kLSR;
49 *op_kind = kLSL;
53 *op_kind = kUXTH;
56 case 1: *op_kind = kSXTB; break;
57 case 2: *op_kind = kSXTH; break;
58 case 4: *op_kind = kSXTW; break;
nodes_shared.h 241 static bool IsShiftOp(OpKind op_kind) {
242 return kFirstShiftOp <= op_kind && op_kind <= kLastShiftOp;
245 static bool IsExtensionOp(OpKind op_kind) {
246 return kFirstExtensionOp <= op_kind && op_kind <= kLastExtensionOp;
251 /*out*/OpKind* op_kind,
instruction_simplifier_arm.cc 70 HDataProcWithShifterOp::OpKind op_kind; local
73 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
78 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
93 op_kind,
instruction_simplifier_arm64.cc 77 HDataProcWithShifterOp::OpKind op_kind; local
79 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
81 if (HDataProcWithShifterOp::IsExtensionOp(op_kind) && !ShifterOperandSupportsExtension(use)) {
90 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 269 const HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind(); local
272 DCHECK(!HDataProcWithShifterOp::IsExtensionOp(op_kind));
276 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
code_generator_arm_vixl.cc 8269 const HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind(); local
    [all...]
code_generator_arm64.cc 2615 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) {

Completed in 282 milliseconds