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

  /art/compiler/utils/
assembler.h 122 class SlowPath {
124 SlowPath() : next_(NULL) {}
125 virtual ~SlowPath() {}
138 SlowPath *next_;
142 DISALLOW_COPY_AND_ASSIGN(SlowPath);
174 void EnqueueSlowPath(SlowPath* slowpath) {
176 slow_path_ = slowpath;
178 SlowPath* cur = slow_path_;
180 cur->next_ = slowpath;
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 493 // Slowpath entered when Thread::Current()->_exception is non-null
494 class MipsExceptionSlowPath : public SlowPath {
  /art/compiler/utils/arm/
assembler_arm.h 644 // Slowpath entered when Thread::Current()->_exception is non-null
645 class ArmExceptionSlowPath : public SlowPath {
  /art/compiler/utils/x86/
assembler_x86.h 634 // Slowpath entered when Thread::Current()->_exception is non-null
635 class X86ExceptionSlowPath : public SlowPath {

Completed in 75 milliseconds