| /arkcompiler/runtime_core/runtime/coretypes/ |
| D | array.cpp | 57 // Order is matters here: GC can read data before it copied if we set length first. in Create() 64 // legth before it's set in Create() 82 // length before it's set in Create() 101 // legth before it's set in Create() 115 // Order is matters here: GC can read data before it copied if we set length first. in CreateTagged() 124 // legth before it's set in CreateTagged()
|
| D | string.cpp | 52 // After memcpy we should have a full barrier, so this writes should happen-before barrier in CreateFromString() 77 // After copying we should have a full barrier, so this writes should happen-before barrier in CreateFromMUtf8() 125 // After copying we should have a full barrier, so this writes should happen-before barrier in CreateFromUtf16() 176 // After copying we should have a full barrier, so this writes should happen-before barrier in CreateNewStringFromChars() 214 // After copying we should have a full barrier, so this writes should happen-before barrier in CreateNewStringFromBytes() 704 // After replacing we should have a full barrier, so this writes should happen-before barrier in DoReplace() 754 // After copying we should have a full barrier, so this writes should happen-before barrier in FastSubString() 801 // After copying we should have a full barrier, so this writes should happen-before barrier in Concat() 843 … // After setting length we should have a full barrier, so this write should happens-before barrier in AllocStringObject() 848 // legth before it's set in AllocStringObject()
|
| /arkcompiler/runtime_core/runtime/mem/ |
| D | mem_stats.cpp | 40 // the load and on writes before the store in RecordAllocateObjects() 44 // and on writes before the store in RecordAllocateObjects() 57 // the load and on writes before the store in RecordYoungMovedObjects() 60 // on writes before the store in RecordYoungMovedObjects() 73 // on writes before the store in RecordTenuredMovedObjects() 91 // load and on writes before the store in RecordFreeObjects() 95 // on writes before the store in RecordFreeObjects()
|
| /arkcompiler/runtime_core/irtoc/backend/compiler/ |
| D | codegen_fastpath.h | 27 …* save/restore registers before calling native functions. These intrinsics pushes caller saved reg… 33 * So, before calling the slow path we restore all modified callee registers. 36 * before calling slow path, since they are saved within irtoced entrypoint.
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | move_constants_closer_to_usage_doc.md | 16 Before register allocation for each constant try to move it closer to usage: 17 …uction among users and all users are located in the same block move constant just before first user 24 IR before optimization 102 // constants are defined just before usage, no SpillFills
|
| D | if_conversion_doc.md | 8 … false) and starts executing instructions after the branch speculatively before executing the bran… 84 Before: 114 Before:
|
| D | cleanup_doc.md | 10 **Before:** 12  186 Before: 224 Before: 293 Before: 346 Before:
|
| D | memory_barriers_doc.md | 6 …er if we prove that the created object cannot be passed to another thread before the next barrier. 25 So we will only set the barrier in the last instruction before potentially passing the created obje…
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | marker.h | 86 // returns true if the marker was set before, otherwise set marker and return false 99 // returns true if the marker was set before, otherwise false 108 // unset marker and returns true if the marker was set before, otherwise false
|
| D | basicblock.cpp | 670 void BasicBlock::InsertBefore(Inst *inst, Inst *before) in InsertBefore() argument 672 ASSERT(inst && before); in InsertBefore() 673 ASSERT(inst->IsPhi() == before->IsPhi()); in InsertBefore() 674 ASSERT(before->GetBasicBlock() == this); in InsertBefore() 677 Inst *prev = before->GetPrev(); in InsertBefore() 679 inst->SetNext(before); in InsertBefore() 680 before->SetPrev(inst); in InsertBefore() 684 if (before == first_phi_) { in InsertBefore() 687 if (before == first_inst_) { in InsertBefore() 692 void BasicBlock::InsertRangeBefore(Inst *range_first, Inst *range_last, Inst *before) in InsertRangeBefore() argument [all …]
|
| /arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-class-1/ |
| D | base_mod.js | 16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and… 37 a() { // an attribute added before computed properties
|
| /arkcompiler/ets_frontend/es2panda/test/hotreload/modify-class-1/ |
| D | base_mod.js | 16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and… 37 a() { // an attribute added before computed properties
|
| /arkcompiler/runtime_core/tests/gtest_launcher/ |
| D | main.cpp | 40 // Do it before fork because the child can attach gdb before in HandleTimeout()
|
| /arkcompiler/runtime_core/docs/ |
| D | on-stack-replacement.md | 140 Before: cframe->c2i->iframe 148 Before: iframe->iframe 152 New cframe is created in the current stack position. But before it we need to insert i2c bridge. 156 Before: iframe
|
| D | coding-style.md | 7 2. Delete spaces before public/private/protected. 46 …nreachable */, or define UNREACHABLE as assert(0 && "Unreachable") and insert it before such return
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | base_mem_stats.cpp | 35 // writes before the store in RecordAllocate() 43 // writes before the store in RecordMoved() 59 // writes before the store in RecordFree()
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/language/statements/try/ |
| D | try-finally-with-return-in-switch-expected.txt | 1 Run finally before return
|
| D | try-finally-with-return-in-switch.js | 9 } catch {} finally {print("Run finally before return");}
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | README.md | 24 run. Thus, `RUN_PAOC` command must be placed before `RUN` command. 31 * **PASS_BEFORE** (pass_name: string) select pass that is right before the specified one
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262skiplist-flaky.txt | 8 built-ins/TypedArray/prototype/filter/callbackfn-called-before-species.js
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | deoptimize_elimination.h | 63 * GUARD - If block have IsMustDeootimize before runtime call inst(in reverse order) 64 * RUNTIME_CALL - If block have runtime call inst before IsMustDeoptimize(in reverse order)
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | spill_fills_resolver.h | 42 * Building process is described before `SpillFillsResolver::Reorder()` method. 130 // Group of moves which can be safely inserted before all others
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | method.h | 207 …th release order reason: data race with compiled_entry_point_ with dependecies on writes before the in Method() 383 …th release order reason: data race with compiled_entry_point_ with dependecies on writes before the in SetCompiledEntryPoint() 421 …with release order reason: data race with access_flags_ with dependecies on writes before the store in SetCompilationStatus() 482 …with release order reason: data race with access_flags_ with dependecies on writes before the store in SetAccessFlags() 568 // and on writes before the store in SetHasSingleImplementation() 572 // and on writes before the store in SetHasSingleImplementation() 590 // on writes before the store in SetIntrinsic() 643 // on writes before the store in SetIsDefaultInterfaceMethod()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
| D | builtins_string_test.cpp | 961 JSHandle<EcmaString> thisStr = factory->NewFromASCII("Twas the night before Xmas..."); in HWTEST_F_L0() 964 JSHandle<EcmaString> expected = factory->NewFromASCII("Twas the night before Christmas..."); in HWTEST_F_L0() 980 JSHandle<EcmaString> expected1 = factory->NewFromASCII("Twas the night before abc$..."); in HWTEST_F_L0() 997 JSHandle<EcmaString> expected2 = factory->NewFromASCII("Twas the night before abc$dd..."); in HWTEST_F_L0() 1014 JSHandle<EcmaString> expected3 = factory->NewFromASCII("Twas the night before abcXmasdd..."); in HWTEST_F_L0() 1032 factory->NewFromASCII("Twas the night before abcTwas the night before dd..."); in HWTEST_F_L0() 1052 JSHandle<EcmaString> thisStr = factory->NewFromASCII("Twas the night before Xmas..."); in HWTEST_F_L0() 1055 JSHandle<EcmaString> expected = factory->NewFromASCII("Twas the night before abc...dd..."); in HWTEST_F_L0() 1072 factory->NewFromASCII("Twas the night before abcTwas the night before dd...$ff..."); in HWTEST_F_L0() 1090 factory->NewFromASCII("Twas the night before abcTwas the night before dd...$..."); in HWTEST_F_L0() [all …]
|
| /arkcompiler/runtime_core/verification/config/ |
| D | README.md | 5 Debug_breakpoint for managed code are used to stop GDB just right before processing
|