/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | graph_visitor.cpp | 22 void GraphVisitor::ReplaceGate(GateRef gate, GateRef replacement) in ReplaceGate() argument 34 return ReplaceGate(gate, StateDepend {state, depend}, replacement); in ReplaceGate() 37 void GraphVisitor::ReplaceGate(GateRef gate, StateDepend stateDepend, GateRef replacement) in ReplaceGate() argument 39 ASSERT(gate != replacement); in ReplaceGate() 54 it = acc_.ReplaceIn(it, replacement); in ReplaceGate() 131 GateRef replacement = VisitGate(gate); in VisitTopGate() local 133 if (replacement == Circuit::NullGate()) { in VisitTopGate() 136 if (replacement != gate) { in VisitTopGate() 137 ReplaceGate(gate, replacement); in VisitTopGate()
|
D | value_numbering.cpp | 46 GateRef replacement = GetEntry(hash); in VisitGate() local 47 if (replacement != Circuit::NullGate() && in VisitGate() 48 CheckReplacement(gate, replacement)) { in VisitGate() 49 return replacement; in VisitGate()
|
D | graph_visitor.h | 40 void ReplaceGate(GateRef gate, GateRef replacement); 41 void ReplaceGate(GateRef gate, StateDepend stateDepend, GateRef replacement);
|
D | gate_accessor.cpp | 767 UseIterator GateAccessor::ReplaceHirIfException(const UseIterator &useIt, StateDepend replacement) in ReplaceHirIfException() argument 773 it = ReplaceIn(it, replacement.State()); in ReplaceHirIfException() 775 it = ReplaceIn(it, replacement.Depend()); in ReplaceHirIfException() 834 StateDepend replacement, GateRef value) in ReplaceHirDirectly() argument 841 it = ReplaceIn(it, replacement.State()); in ReplaceHirDirectly() 843 it = ReplaceIn(it, replacement.Depend()); in ReplaceHirDirectly() 855 StateDepend replacement, GateRef value) in ReplaceHirAndDeleteIfException() argument 869 it = ReplaceHirIfSuccess(it, replacement.State()); in ReplaceHirAndDeleteIfException() 874 it = ReplaceIn(it, replacement.State()); in ReplaceHirAndDeleteIfException() 881 it = ReplaceIn(it, replacement.Depend()); in ReplaceHirAndDeleteIfException()
|
D | gate_accessor.h | 551 void ReplaceHirDirectly(GateRef hirGate, StateDepend replacement, GateRef value); 552 void ReplaceHirAndDeleteIfException(GateRef hirGate, StateDepend replacement, GateRef value); 557 UseIterator ReplaceHirIfException(const UseIterator &useIt, StateDepend replacement);
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_string.h | 47 const JSHandle<EcmaString> &replacement);
|
D | builtins_string.cpp | 912 JSHandle<EcmaString> replacement(thread, replaceTag->GetTaggedObject()); in Replace() local 914 …date(GetSubstitution(thread, searchString, thisString, pos, capturesList, undefined, replacement)); in Replace() 1041 JSHandle<EcmaString> replacement(thread, replaceTag->GetTaggedObject()); in ReplaceAll() local 1044 capturesList, undefined, replacement)); in ReplaceAll() 1092 const JSHandle<EcmaString> &replacement) in GetSubstitution() argument 1098 JSHandle<EcmaString> replacementFlat(thread, EcmaStringAccessor::Flatten(ecmaVm, replacement)); in GetSubstitution()
|
D | builtins_regexp.cpp | 939 CString replacement; in Replace() local 977 replacement = ConvertToString(*replacementString, StringConvertedUsage::LOGICOPERATION); in Replace() 989 replacement = ConvertToString(EcmaString::Cast(replacementHandle->GetTaggedObject()), in Replace() 1000 accumulatedResult += replacement; in Replace()
|
/arkcompiler/runtime_core/cmake/ |
D | PandaCmakeFunctions.cmake | 15 # We need use linker scripts for section replacement above 4GB
|
/arkcompiler/runtime_core/compiler/docs/ |
D | paoc.md | 7 …JIT-mode`. Takes into account differences of [OSR](../../docs/on-stack-replacement.md#Compilation)…
|
/arkcompiler/runtime_core/docs/ |
D | on-stack-replacement.md | 96 ### Frame replacement
|
D | doxygen.config | 1698 # string, for the replacement values of the other commands the user is referred
|
/arkcompiler/ets_frontend/test262/ |
D | intl_tests.txt | 291 intl402/Intl/getCanonicalLocales/complex-region-subtag-replacement.js 317 intl402/Intl/getCanonicalLocales/complex-language-subtag-replacement.js
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262skiplist.txt | 7513 intl402/Intl/getCanonicalLocales/complex-language-subtag-replacement.js 7514 intl402/Intl/getCanonicalLocales/complex-region-subtag-replacement.js
|