Home
last modified time | relevance | path

Searched refs:back (Results 1 – 25 of 95) sorted by relevance

1234

/art/test/547-regression-trycatch-critic-edge/smali/
DTestCase.smali18 # The following test case would crash liveness analysis because the back edge of
19 # the outer loop would have a smaller liveness position than the two back edges
39 if-eqz v3, :outer_loop # back edge of outer loop
44 goto :inner_loop # back edge of inner loop
52 goto :inner_loop # back edge of inner loop
/art/runtime/
Dclass_table.cc70 auto existing_it = classes_.back().FindWithHash(pair, hash); in UpdateClass()
71 if (kIsDebugBuild && existing_it == classes_.back().end()) { in UpdateClass()
115 return CountDefiningLoaderClasses(defining_loader, classes_.back()); in NumNonZygoteClasses()
129 return classes_.back().Size(); in NumReferencedNonZygoteClasses()
153 classes_.back().Insert(slot); in TryInsert()
160 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in Insert()
171 classes_.back().Insert(slot); in CopyWithoutLocks()
178 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in InsertWithoutLocks()
183 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in InsertWithHash()
Dhandle_scope_test.cc107 EXPECT_OBJ_PTR_EQ(o, handles.back().Get()); in TEST_F()
108 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F()
109 EXPECT_TRUE(base->Contains(handles.back().GetReference())); in TEST_F()
Ddexopt_test.cc256 ASSERT_TRUE(image_reservation_.back().get() != nullptr) << error_msg; in ReserveImageSpaceChunk()
258 reinterpret_cast<void*>(image_reservation_.back()->Begin()) << "-" << in ReserveImageSpaceChunk()
259 reinterpret_cast<void*>(image_reservation_.back()->End()); in ReserveImageSpaceChunk()
/art/libartbase/base/
Dtransform_array_ref_test.cc74 ASSERT_EQ(input.back().value + 1, taref.back()); in TEST()
106 ASSERT_EQ(input.back().value - 1, taref.back()); in TEST()
149 ASSERT_EQ(input.back().value, taref.back()); in TEST()
193 ASSERT_EQ(cinput.back().value, ctaref.back()); in TEST()
Dtransform_array_ref.h117 reference back() { return GetFunction()(base().back()); } in back() function
118 const_reference back() const { return GetFunction()(base().back()); } in back() function
Ddchecked_vector.h134 reference back() { DCHECK(!empty()); return Base::back(); } in back() function
135 const_reference back() const { DCHECK(!empty()); return Base::back(); } in back() function
Darray_slice.h98 reference back() { in back() function
103 const_reference back() const { in back() function
/art/test/482-checker-loop-back-edge-use/
Dinfo.txt2 at back edges.
/art/test/107-int-math2/
Dinfo.txt2 TODO: fold back into 003-omnibus-opcodes.
/art/runtime/base/
Dtiming_logger.cc158 return timings_.back().GetTime() - timings_.front().GetTime(); in GetTotalNs()
178 size_t open_idx = open_stack.back(); in CalculateTimingData()
189 ret.data_[open_stack.back()].exclusive_time -= time; in CalculateTimingData()
196 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back(); in CalculateTimingData()
/art/test/547-regression-trycatch-critic-edge/
Dinfo.txt1 Test a specific SSA building regression a back edge would not be split due to
/art/test/080-oom-throw/
Dinfo.txt2 the JIT'ed code handles OOM exception correctly since it cannot fall back to
/art/compiler/optimizing/
Dpretty_printer.h83 PrintInt(predecessors.back()->GetBlockId()); in VisitBasicBlock()
92 PrintInt(successors.back()->GetBlockId()); in VisitBasicBlock()
Dssa_phi_elimination.cc75 HPhi* phi = worklist.back(); in MarkDeadPhis()
149 HPhi* phi = worklist.back(); in Run()
/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc99 return offsets_.back(); in LastReservedOffset()
216 pending_thunks_.back()->MarkPendingOffsetAsWritten(); in WriteThunks()
217 if (pending_thunks_.back()->HasPendingOffset()) { in WriteThunks()
500 unreserved_thunks_.back()->MaxNextOffset() + unreserved_thunks_.back()->CodeSize()) { in ResolveMethodCalls()
503 if (method_call_thunk_ != unreserved_thunks_.back()) { in ResolveMethodCalls()
/art/compiler/debug/
Delf_debug_loc_writer.h162 variable_locations.back().reg_lo == reg_lo && in GetVariableLocations()
163 variable_locations.back().reg_hi == reg_hi && in GetVariableLocations()
164 variable_locations.back().high_pc == low_pc) { in GetVariableLocations()
166 variable_locations.back().high_pc = high_pc; in GetVariableLocations()
/art/dex2oat/linker/
Dimage_test.cc55 EXPECT_LT(image_sizes.back(), image_sizes_extra.back()); in TEST_F()
/art/runtime/interpreter/mterp/mips/
Dfooter.S86 beqz a0, MterpFallback # If exception, fall back to reference interpreter.
97 beqz v0, MterpExceptionReturn # no local catch, back to caller.
/art/runtime/interpreter/mterp/mips64/
Dfooter.S44 beqzc a0, MterpFallback # If not, fall back to reference interpreter.
57 beqzc v0, MterpExceptionReturn # no local catch, back to caller.
/art/runtime/interpreter/mterp/arm/
Dfooter.S87 beq MterpFallback @ If not, fall back to reference interpreter.
99 beq MterpExceptionReturn @ no local catch, back to caller.
/art/test/596-checker-dead-phi/smali/
DIrreducibleLoop.smali64 # Add a marker on the outer loop back edge.
66 # Set a wide register, to have v1 undefined at the back edge.
/art/test/115-native-bridge/
Dexpected.txt81 handling second SIGSEGV, will jump back to test function
82 back to test from signal handler via siglongjmp(), and done!
/art/runtime/gc/space/
Dlarge_object_space_test.cc98 mirror::Object* obj = requests.back().first; in LargeObjectTest()
99 size_t request_size = requests.back().second; in LargeObjectTest()
/art/compiler/dex/
Dverified_method.cc102 DCHECK(safe_cast_set_->empty() || safe_cast_set_->back() < dex_pc); in GenerateSafeCastSet()

1234