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

  /art/compiler/utils/
assembler.h 67 class SlowPath : public DeletableArenaObject<kArenaAllocAssembler> {
69 SlowPath() : next_(nullptr) {}
70 virtual ~SlowPath() {}
83 SlowPath *next_;
87 DISALLOW_COPY_AND_ASSIGN(SlowPath);
137 void EnqueueSlowPath(SlowPath* slowpath) {
139 slow_path_ = slowpath;
141 SlowPath* cur = slow_path_;
143 cur->next_ = slowpath;
    [all...]
  /art/compiler/utils/arm/
jni_macro_assembler_arm.cc 34 // Slowpath entered when Thread::Current()->_exception is non-null
35 class ArmExceptionSlowPath FINAL : public SlowPath {
  /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 416 milliseconds