/art/compiler/utils/ |
D | atomic_dex_ref_map_test.cc | 41 EXPECT_TRUE(map.Insert(MethodReference(dex.get(), 1), 0, 1) == Map::kInsertResultInvalidDexFile); in TEST_F() 53 EXPECT_TRUE(map.Insert(MethodReference(dex.get(), 1), 0, kInsertValue) == in TEST_F() 58 EXPECT_TRUE(map.Insert(MethodReference(dex.get(), 2), 0, kInsertValue2) == in TEST_F() 65 EXPECT_TRUE(map.Insert(MethodReference(dex.get(), 1), 0, kInsertValue + 1) == in TEST_F() 68 EXPECT_TRUE(map.Insert(MethodReference(dex.get(), 1), kInsertValue, kInsertValue + 1) == in TEST_F()
|
D | atomic_dex_ref_map.h | 42 InsertResult Insert(const DexFileReferenceType& ref,
|
D | atomic_dex_ref_map-inl.h | 53 AtomicDexRefMap<DexFileReferenceType, Value>::Insert(const DexFileReferenceType& ref, in Insert() function
|
/art/compiler/dex/ |
D | verification_results.cc | 55 AtomicMap::InsertResult result = atomic_verified_methods_.Insert(ref, in ProcessVerifiedMethod() 115 if (atomic_verified_methods_.Insert(ref, in CreateVerifiedMethodFor() 158 CHECK(atomic_verified_methods_.Insert(ref, nullptr, it->second) == in AddDexFile()
|
/art/runtime/ |
D | intern_table.cc | 77 strong_interns_.Insert(new_ref); in VisitRoots() 135 strong_interns_.Insert(s); in InsertStrong() 144 weak_interns_.Insert(s); in InsertWeak() 200 ObjPtr<mirror::String> InternTable::Insert(ObjPtr<mirror::String> s, in Insert() function in art::InternTable 275 return Insert(s, true, true); in InternStrongImageString() 289 return Insert(s, true, false); in InternStrong() 298 return Insert(s, false, false); in InternWeak() 417 void InternTable::Table::Insert(ObjPtr<mirror::String> s) { in Insert() function in art::InternTable::Table
|
D | class_table_test.cc | 89 table.Insert(h_X.Get()); in TEST_F() 104 table.Insert(h_Y.Get()); in TEST_F() 148 table.Insert(h_X.Get()); in TEST_F()
|
D | intern_table.h | 248 void Insert(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_) 291 ObjPtr<mirror::String> Insert(ObjPtr<mirror::String> s, bool is_strong, bool holding_locks)
|
D | class_table.h | 218 void Insert(ObjPtr<mirror::Class> klass)
|
D | class_table.cc | 143 void ClassTable::Insert(ObjPtr<mirror::Class> klass) { in Insert() function in art::ClassTable
|
/art/compiler/optimizing/ |
D | induction_var_range.cc | 144 static HInstruction* Insert(HBasicBlock* block, HInstruction* instruction) { in Insert() function 388 trip_expr = Insert(block, new (allocator) HSelect(taken_test, trip_expr, zero, kNoDexPc)); in GenerateTripCount() 1041 Insert(block, new (graph->GetAllocator()) HAdd(type, graph->GetConstant(type, sum), c)); in GenerateLastValuePolynomial() 1092 *result = Insert(block, new (allocator) HAdd(type, Insert(block, e), opb)); in GenerateLastValueGeometric() 1175 Insert(block, new (allocator) HAnd(type, t, graph->GetConstant(type, 1))); in GenerateLastValuePeriodic() 1177 Insert(block, new (allocator) HEqual(msk, graph->GetConstant(type, 0), kNoDexPc)); in GenerateLastValuePeriodic() 1178 *result = Insert(block, new (graph->GetAllocator()) HSelect(is_even, x, y, kNoDexPc)); in GenerateLastValuePeriodic() 1186 *result = Insert(block, new (allocator) HSelect(is_taken, *result, x, kNoDexPc)); in GenerateLastValuePeriodic() 1257 *result = Insert(block, operation); in GenerateCode() 1265 *result = Insert(block, new (graph->GetAllocator()) HNeg(type, opb)); in GenerateCode() [all …]
|
D | loop_optimization.cc | 370 static HInstruction* Insert(HBasicBlock* block, HInstruction* instruction) { in Insert() function 1088 HInstruction* offset = Insert(preheader, new (global_allocator_) HAdd( in Vectorize() 1090 HInstruction* rem = Insert(preheader, new (global_allocator_) HAnd( in Vectorize() 1092 HInstruction* sub = Insert(preheader, new (global_allocator_) HSub( in Vectorize() 1094 HInstruction* cond = Insert(preheader, new (global_allocator_) HEqual( in Vectorize() 1096 ptc = Insert(preheader, new (global_allocator_) HSelect( in Vectorize() 1113 HInstruction* cond = Insert(preheader, new (global_allocator_) HAboveOrEqual(stc, ptc)); in Vectorize() 1114 ptc = Insert(preheader, new (global_allocator_) HSelect(cond, ptc, stc, kNoDexPc)); in Vectorize() 1116 diff = Insert(preheader, new (global_allocator_) HSub(induc_type, stc, ptc)); in Vectorize() 1118 HInstruction* rem = Insert( in Vectorize() [all …]
|
/art/test/510-checker-try-catch/smali/ |
D | SsaBuilder.smali | 154 # Insert addition so that the value of vreg 1 does not dominate the phi.
|
D | Runtime.smali | 409 # Insert a try/catch to force v1,v2,v3 to spill. 459 # Insert a try/catch to force (v2, v3), (v4, v5), (v6, v7) to spill.
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 1882 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified); in FastVerify() 2847 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, in AddCompiledMethod() 2925 result = table->Insert(ref, existing, status); in RecordClassStatus()
|