Home
last modified time | relevance | path

Searched refs:InstructionSimplifierArm64Visitor (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier_arm64.cc30 void InstructionSimplifierArm64Visitor::TryExtractArrayAccessAddress(HInstruction* access, in TryExtractArrayAccessAddress()
81 bool InstructionSimplifierArm64Visitor::TryMergeIntoShifterOperand(HInstruction* use, in TryMergeIntoShifterOperand()
153 bool InstructionSimplifierArm64Visitor::TryMergeIntoUsersShifterOperand(HInstruction* bitfield_op) { in TryMergeIntoUsersShifterOperand()
185 void InstructionSimplifierArm64Visitor::VisitAnd(HAnd* instruction) { in VisitAnd()
191 void InstructionSimplifierArm64Visitor::VisitArrayGet(HArrayGet* instruction) { in VisitArrayGet()
198 void InstructionSimplifierArm64Visitor::VisitArraySet(HArraySet* instruction) { in VisitArraySet()
205 void InstructionSimplifierArm64Visitor::VisitMul(HMul* instruction) { in VisitMul()
211 void InstructionSimplifierArm64Visitor::VisitOr(HOr* instruction) { in VisitOr()
217 void InstructionSimplifierArm64Visitor::VisitShl(HShl* instruction) { in VisitShl()
223 void InstructionSimplifierArm64Visitor::VisitShr(HShr* instruction) { in VisitShr()
[all …]
Dinstruction_simplifier_arm64.h26 class InstructionSimplifierArm64Visitor : public HGraphVisitor {
28 InstructionSimplifierArm64Visitor(HGraph* graph, OptimizingCompilerStats* stats) in InstructionSimplifierArm64Visitor() function
92 InstructionSimplifierArm64Visitor visitor(graph_, stats_); in Run()