Searched defs:slow_path (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator.h123 void AddSlowPath(SlowPathCode* slow_path) { argument
124 slow_paths_.Add(slow_path);
H A Dcode_generator_arm.cc271 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathARM(); local
272 AddSlowPath(slow_path);
276 __ b(slow_path->GetEntryLabel(), CC);
1225 SlowPathCode* slow_path = local
1227 codegen_->AddSlowPath(slow_path);
1236 __ b(slow_path->GetEntryLabel(), EQ);
1464 SlowPathCode* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM( local
1466 codegen_->AddSlowPath(slow_path);
1472 __ b(slow_path->GetEntryLabel(), CS);
H A Dcode_generator_x86.cc254 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86(); local
255 AddSlowPath(slow_path);
258 __ j(kLess, slow_path->GetEntryLabel());
1216 SlowPathCode* slow_path = local
1218 codegen_->AddSlowPath(slow_path);
1230 __ j(kEqual, slow_path->GetEntryLabel());
1459 SlowPathCode* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86( local
1461 codegen_->AddSlowPath(slow_path);
1467 __ j(kAboveEqual, slow_path->GetEntryLabel());
H A Dcode_generator_x86_64.cc220 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86_64(); local
221 AddSlowPath(slow_path);
225 __ j(kLess, slow_path->GetEntryLabel());
1061 SlowPathCode* slow_path = local
1063 codegen_->AddSlowPath(slow_path);
1075 __ j(kEqual, slow_path->GetEntryLabel());
1291 SlowPathCode* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64( local
1293 codegen_->AddSlowPath(slow_path);
1299 __ j(kAboveEqual, slow_path->GetEntryLabel());
/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h42 Thread* self, bool* slow_path) {
46 *slow_path = true;
59 *slow_path = true;
65 *slow_path = true;
80 *slow_path = true;
95 bool* slow_path) {
107 *slow_path = true;
127 bool slow_path = false; local
128 mirror::Class* klass = CheckObjectAlloc<kAccessCheck>(type_idx, method, self, &slow_path);
129 if (UNLIKELY(slow_path)) {
40 CheckObjectAlloc(uint32_t type_idx, mirror::ArtMethod* method, Thread* self, bool* slow_path) argument
93 CheckClassInitializedForObjectAlloc(mirror::Class* klass, Thread* self, bool* slow_path) argument
147 bool slow_path = false; local
176 CheckArrayAlloc(uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, bool* slow_path) argument
217 bool slow_path = false; local
[all...]

Completed in 1123 milliseconds