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

  /art/compiler/utils/
assembler.h 151 class SlowPath {
153 SlowPath() : next_(NULL) {}
154 virtual ~SlowPath() {}
167 SlowPath *next_;
171 DISALLOW_COPY_AND_ASSIGN(SlowPath);
212 void EnqueueSlowPath(SlowPath* slowpath) {
214 slow_path_ = slowpath;
216 SlowPath* cur = slow_path_;
218 cur->next_ = slowpath;
    [all...]
  /art/compiler/dex/quick/
gen_common.cc 714 // may be created during slowpath->Compile().
716 LIRSlowPath* slowpath = slow_paths_.Get(i); local
717 slowpath->Compile();
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 283 // Slowpath entered when Thread::Current()->_exception is non-null
284 class MipsExceptionSlowPath FINAL : public SlowPath {
  /art/compiler/utils/arm/
assembler_arm.h 741 // Slowpath entered when Thread::Current()->_exception is non-null
742 class ArmExceptionSlowPath FINAL : public SlowPath {
  /art/compiler/utils/x86/
assembler_x86.h 621 // Slowpath entered when Thread::Current()->_exception is non-null
622 class X86ExceptionSlowPath FINAL : public SlowPath {
  /art/compiler/utils/x86_64/
assembler_x86_64.cc     [all...]

Completed in 103 milliseconds