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

  /art/compiler/optimizing/
nodes_shared.cc 30 void HDataProcWithShifterOp::GetOpInfoFromInstruction(HInstruction* instruction,
75 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op) {
77 case HDataProcWithShifterOp::kLSL: return os << "LSL";
78 case HDataProcWithShifterOp::kLSR: return os << "LSR";
79 case HDataProcWithShifterOp::kASR: return os << "ASR";
80 case HDataProcWithShifterOp::kUXTB: return os << "UXTB";
81 case HDataProcWithShifterOp::kUXTH: return os << "UXTH";
82 case HDataProcWithShifterOp::kUXTW: return os << "UXTW";
83 case HDataProcWithShifterOp::kSXTB: return os << "SXTB";
84 case HDataProcWithShifterOp::kSXTH: return os << "SXTH"
    [all...]
common_arm64.h 317 inline vixl::aarch64::Shift ShiftFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
319 case HDataProcWithShifterOp::kASR: return vixl::aarch64::ASR;
320 case HDataProcWithShifterOp::kLSL: return vixl::aarch64::LSL;
321 case HDataProcWithShifterOp::kLSR: return vixl::aarch64::LSR;
329 inline vixl::aarch64::Extend ExtendFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
331 case HDataProcWithShifterOp::kUXTB: return vixl::aarch64::UXTB;
332 case HDataProcWithShifterOp::kUXTH: return vixl::aarch64::UXTH;
333 case HDataProcWithShifterOp::kUXTW: return vixl::aarch64::UXTW;
334 case HDataProcWithShifterOp::kSXTB: return vixl::aarch64::SXTB;
335 case HDataProcWithShifterOp::kSXTH: return vixl::aarch64::SXTH
    [all...]
instruction_simplifier_arm.cc 118 HDataProcWithShifterOp::OpKind op_kind;
121 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
126 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
137 HDataProcWithShifterOp* alu_with_op =
138 new (GetGraph()->GetAllocator()) HDataProcWithShifterOp(use,
instruction_simplifier_arm64.cc 132 HDataProcWithShifterOp::OpKind op_kind;
134 HDataProcWithShifterOp::GetOpInfoFromInstruction(bitfield_op, &op_kind, &shift_amount);
136 if (HDataProcWithShifterOp::IsExtensionOp(op_kind) && !ShifterOperandSupportsExtension(use)) {
141 HDataProcWithShifterOp* alu_with_op =
142 new (GetGraph()->GetAllocator()) HDataProcWithShifterOp(use,
nodes_shared.h 178 class HDataProcWithShifterOp FINAL : public HExpression<2> {
197 HDataProcWithShifterOp(HInstruction* instr,
218 const HDataProcWithShifterOp* other = other_instr->AsDataProcWithShifterOp();
254 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op);
scheduler_arm.h 130 void HandleGenerateDataProc(HDataProcWithShifterOp* instruction);
131 void HandleGenerateLongDataProc(HDataProcWithShifterOp* instruction);
scheduler_arm.cc 557 void SchedulingLatencyVisitorARM::HandleGenerateDataProc(HDataProcWithShifterOp* instruction) {
571 void SchedulingLatencyVisitorARM::HandleGenerateLongDataProc(HDataProcWithShifterOp* instruction) {
573 DCHECK(HDataProcWithShifterOp::IsShiftOp(instruction->GetOpKind()));
598 void SchedulingLatencyVisitorARM::VisitDataProcWithShifterOp(HDataProcWithShifterOp* instruction) {
599 const HDataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind();
605 if (HDataProcWithShifterOp::IsExtensionOp(op_kind)) {
    [all...]
scheduler_arm64.cc 38 HDataProcWithShifterOp* ATTRIBUTE_UNUSED) {
graph_visualizer.cc 557 void VisitDataProcWithShifterOp(HDataProcWithShifterOp* instruction) OVERRIDE {
559 if (HDataProcWithShifterOp::IsShiftOp(instruction->GetOpKind())) {
    [all...]
code_generator_arm_vixl.cc     [all...]
code_generator_arm64.cc     [all...]

Completed in 83 milliseconds