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

  /art/compiler/utils/
assembler.h 68 class SlowPath : public DeletableArenaObject<kArenaAllocAssembler> {
70 SlowPath() : next_(nullptr) {}
71 virtual ~SlowPath() {}
84 SlowPath *next_;
88 DISALLOW_COPY_AND_ASSIGN(SlowPath);
138 void EnqueueSlowPath(SlowPath* slowpath) {
140 slow_path_ = slowpath;
142 SlowPath* cur = slow_path_;
144 cur->next_ = slowpath;
    [all...]
  /art/compiler/utils/x86/
jni_macro_assembler_x86.cc 27 // Slowpath entered when Thread::Current()->_exception is non-null
28 class X86ExceptionSlowPath final : public SlowPath {
  /art/compiler/utils/x86_64/
jni_macro_assembler_x86_64.cc 576 // Slowpath entered when Thread::Current()->_exception is non-null
577 class X86_64ExceptionSlowPath final : public SlowPath {

Completed in 239 milliseconds