Home
last modified time | relevance | path

Searched refs:update (Results 1 – 18 of 18) sorted by relevance

/art/test/438-volatile/src/
DMain.java31 public static long $opt$update(long a) { in $opt$update()
36 public static double $opt$update(double a) { in $opt$update()
42 if (value != $opt$update(value)) { in checkVolatileUpdate()
48 if (value != $opt$update(value)) { in checkVolatileUpdate()
/art/runtime/base/
Dbit_vector.cc163 uint32_t update = existing | src->GetRawStorageWord(idx); in Union() local
164 if (existing != update) { in Union()
166 storage_[idx] = update; in Union()
198 uint32_t update = existing | in UnionIfNotIn() local
200 if (existing != update) { in UnionIfNotIn()
202 storage_[idx] = update; in UnionIfNotIn()
208 uint32_t update = existing | union_with->GetRawStorageWord(idx); in UnionIfNotIn() local
209 if (existing != update) { in UnionIfNotIn()
211 storage_[idx] = update; in UnionIfNotIn()
/art/test/531-regression-debugphi/smali/
DTestCase.smali23 # - update PrimVoid PhiA to PrimNot
24 # - update inputs of PrimNot PhiA
72 # - update inputs of PrimNot PhiB ; add PrimNot PhiA to worklist
73 # - update PhiC to PrimNot
75 # - PrimNot PhiA: update inputs, no equivalent created
76 # - PrimInt PhiA: update inputs, set to PrimNot, use instead of PrimNot PhiA
/art/runtime/interpreter/mterp/mips/
Dop_goto_16.S17 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
27 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
Dop_goto.S18 FETCH_ADVANCE_INST_RB(a2) # update rPC, load rINST
30 FETCH_ADVANCE_INST_RB(a2) # update rPC, load rINST
Dop_goto_32.S23 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
36 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
Dop_packed_switch.S29 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
44 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
Dzcmp.S26 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
Dbincmp.S28 FETCH_ADVANCE_INST_RB(a2) # update rPC, load rINST
/art/test/960-default-smali/
Dinfo.txt16 To update the test files do the following steps:
19 …JAVA_HOME="/path/to/java-8-jdk" ../run-test --use-java-home --update --jvm --host 956-default-smali
/art/test/612-jit-dex-cache/
Dinfo.txt2 wrongly update the dex cache of a class loader.
/art/test/523-checker-can-throw-regression/
Dinfo.txt2 but would not update information about which blocks throw.
/art/test/485-checker-dce-loop-update/
Dinfo.txt1 Tests loop information update after DCE because block removal can disconnect loops, leaving other
/art/runtime/interpreter/mterp/
Dgen_mterp.py339 dict.update({ "opcode":op, "opnum":opindex })
378 dict.update({ "opcode":op, "opnum":opindex })
391 dict.update({ "opcode":op, "opnum":opindex })
453 new_dict.update(eval(tokens[2]))
/art/compiler/optimizing/
Dinduction_var_analysis.cc268 InductionInfo* update = TransferPhi(loop, phi, /* input_index */ 1); in ClassifyNonTrivial() local
269 if (update != nullptr) { in ClassifyNonTrivial()
270 AssignInfo(loop, phi, CreateInduction(kWrapAround, initial, update, type_)); in ClassifyNonTrivial()
279 InductionInfo* update = nullptr; in ClassifyNonTrivial() local
281 update = SolvePhiAllInputs(loop, phi, instruction); in ClassifyNonTrivial()
283 update = SolveAddSub( in ClassifyNonTrivial()
286 update = SolveAddSub( in ClassifyNonTrivial()
289 update = SolveCnv(instruction->AsTypeConversion()); in ClassifyNonTrivial()
291 if (update == nullptr) { in ClassifyNonTrivial()
294 cycle_.Put(instruction, update); in ClassifyNonTrivial()
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java93 digest.update(buf); in getMD5SumOfProgram()
106 digest.update(output.getBytes()); in getMD5SumOfOutput()
/art/compiler/driver/
Dcompiler_driver.cc1314 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(), in UpdateImageClasses() local
1318 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure? in UpdateImageClasses()
1321 update->Walk(); in UpdateImageClasses()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1582 # Load the next pointer of the head and update the list head with the next pointer.