Home
last modified time | relevance | path

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

12345

/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.cc58 auto existing_it = classes_.back().FindWithHash(pair, hash); in UpdateClass()
59 if (kIsDebugBuild && existing_it == classes_.back().end()) { in UpdateClass()
101 return CountDefiningLoaderClasses(defining_loader, classes_.back()); in NumNonZygoteClasses()
115 return classes_.back().size(); in NumReferencedNonZygoteClasses()
139 classes_.back().insert(slot); in TryInsert()
146 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in Insert()
157 classes_.back().insert(slot); in CopyWithoutLocks()
164 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in InsertWithoutLocks()
169 classes_.back().InsertWithHash(TableSlot(klass, hash), hash); in InsertWithHash()
Dhandle_scope_test.cc108 EXPECT_OBJ_PTR_EQ(o, handles.back().Get()); in TEST_F()
109 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F()
110 EXPECT_TRUE(base->Contains(handles.back().GetReference())); in TEST_F()
Ddexopt_test.cc224 ASSERT_TRUE(image_reservation_.back().IsValid()) << error_msg; in ReserveImageSpaceChunk()
226 reinterpret_cast<void*>(image_reservation_.back().Begin()) << "-" << in ReserveImageSpaceChunk()
227 reinterpret_cast<void*>(image_reservation_.back().End()); in ReserveImageSpaceChunk()
/art/libartbase/base/
Dtransform_array_ref_test.cc73 ASSERT_EQ(input.back().value + 1, taref.back()); in TEST()
105 ASSERT_EQ(input.back().value - 1, taref.back()); in TEST()
148 ASSERT_EQ(input.back().value, taref.back()); in TEST()
208 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.h107 reference back() { in back() function
112 const_reference back() const { in back() function
Darray_ref.h158 reference back() { in back() function
163 const_reference back() const { in back() function
/art/test/482-checker-loop-back-edge-use/
Dinfo.txt2 at back edges.
DAndroid.bp3 name: "art-run-test-482-checker-loop-back-edge-use",
/art/test/107-int-math2/
Dinfo.txt2 TODO: fold back into 003-omnibus-opcodes.
/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/1993-fallback-non-structural/
Dinfo.txt3 Tests that using the structural redefinition functions will fall back to non-structural
/art/runtime/base/
Dtiming_logger.cc159 return timings_.back().GetTime() - timings_.front().GetTime(); in GetTotalNs()
179 size_t open_idx = open_stack.back(); in CalculateTimingData()
190 ret.data_[open_stack.back()].exclusive_time -= time; in CalculateTimingData()
197 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back(); in CalculateTimingData()
/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.cc76 HPhi* phi = worklist.back(); in MarkDeadPhis()
150 HPhi* phi = worklist.back(); in Run()
/art/compiler/debug/
Delf_debug_loc_writer.h151 variable_locations.back().reg_lo == reg_lo && in GetVariableLocations()
152 variable_locations.back().reg_hi == reg_hi && in GetVariableLocations()
153 variable_locations.back().high_pc == low_pc) { in GetVariableLocations()
155 variable_locations.back().high_pc = high_pc; in GetVariableLocations()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc104 return offsets_.back(); in LastReservedOffset()
222 pending_thunks_.back()->MarkPendingOffsetAsWritten(); in WriteThunks()
223 if (pending_thunks_.back()->HasPendingOffset()) { in WriteThunks()
520 unreserved_thunks_.back()->MaxNextOffset() + unreserved_thunks_.back()->CodeSize()) { in ResolveMethodCalls()
523 if (method_call_thunk_ != unreserved_thunks_.back()) { in ResolveMethodCalls()
/art/dex2oat/linker/
Dimage_test.cc63 EXPECT_LT(image_sizes.back(), image_sizes_extra.back()); in TEST_F()
/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.cc103 DCHECK(safe_cast_set_->empty() || safe_cast_set_->back() < dex_pc); in GenerateSafeCastSet()

12345