/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder-inl.h | 58 return env_->GetBuilder()->Int8(value); in Int8() 63 return env_->GetBuilder()->Int16(value); in Int16() 68 return env_->GetBuilder()->Int32(value); in Int32() 73 return env_->GetBuilder()->Int64(value); in Int64() 79 return env_->GetBuilder()->Int64(value64); in TaggedInt() 84 return env_->GetBuilder()->StringPtr(str); in StringPtr() 109 return env_->GetBuilder()->Boolean(value); in Boolean() 114 return env_->GetBuilder()->Double(value); in Double() 119 return env_->GetBuilder()->UndefineConstant(); in Undefined() 124 return env_->GetBuilder() in Hole() [all...] |
H A D | circuit_builder_helper.cpp | 134 val = env_->GetBuilder()->Selector(OpCode::DEPEND_SELECTOR, in ReadVariableRecursive() 137 val = env_->GetBuilder()->Selector(OpCode::VALUE_SELECTOR, in ReadVariableRecursive() 146 val = env_->GetBuilder()->Selector(OpCode::DEPEND_SELECTOR, in ReadVariableRecursive() 149 val = env_->GetBuilder()->Selector(OpCode::VALUE_SELECTOR, machineType, in ReadVariableRecursive() 165 loopDepend_ = env_->GetBuilder()->Selector(OpCode::DEPEND_SELECTOR, predeControl_, {}, 2); in Bind() 199 GateRef merge = env_->GetBuilder()->Merge(inGates); in MergeAllControl() 210 depend_ = env_->GetBuilder()->DependRelay(predeControl_, depend_); in MergeAllDepend() 228 depend_ = env_->GetBuilder()->Selector(OpCode::DEPEND_SELECTOR, in MergeAllDepend()
|
H A D | circuit_builder-inl.h | 172 : env_(env), builder_(env_->GetBuilder()) in LogicAndBuilder() 218 : env_(env), builder_(env_->GetBuilder()) in LogicOrBuilder()
|
H A D | interpreter_stub-inl.h | 118 return GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in ReadInstSigned8_0() 125 return GetEnvironment()->GetBuilder()->SExtInt16ToInt32(currentInst); in ReadInstSigned16_0() 129 GateRef currentInst1 = GetEnvironment()->GetBuilder()->SExtInt1ToInt32(currentInst); in ReadInstSigned16_0() 138 return GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in ReadInstSigned32_0() 142 GateRef currentInst = GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in ReadInstSigned32_0() 672 GetEnvironment()->GetBuilder()->CallBCHandler(glue, target, {glue, args...}); in DispatchBase() 699 GetEnvironment()->GetBuilder()->CallBCDebugger(glue, target, args); in DispatchDebugger() 708 GetEnvironment()->GetBuilder()->CallBCDebugger(glue, target, args); in DispatchDebuggerLast() 715 return GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in GetHotnessCounterFromMethod()
|
H A D | pass.h | 104 BytecodeCircuitBuilder* GetBuilder() const in GetBuilder() function in panda::ecmascript::kungfu::PassData 263 PGOTypeInfer pgoTypeInfer(data->GetCircuit(), data->GetBuilder(), data->GetMethodName(), &chunk, enableLog); in Run() 615 LoopAnalysis loopAnalysis(data->GetBuilder(), data->GetCircuit(), &chunk); in Run() 624 LoopPeeling(data->GetBuilder(), data->GetCircuit(), enableLog, in Run() 834 AsyncFunctionLowering lowering(data->GetBuilder(), data->GetCircuit(), data->GetCompilerConfig(), in Run()
|
H A D | stub_builder.cpp | 54 auto jump = env_->GetBuilder()->Goto(currentControl); in Jump() 71 GateRef ifBranch = env_->GetBuilder()->Branch(currentControl, condition, trueWeight, falseWeight, comment); in BranchPredict() 73 GateRef ifTrue = env_->GetBuilder()->IfTrue(ifBranch); in BranchPredict() 76 GateRef ifFalse = env_->GetBuilder()->IfFalse(ifBranch); in BranchPredict() 86 GateRef switchBranch = env_->GetBuilder()->SwitchBranch(currentControl, index, numberOfKeys); in Switch() 90 GateRef switchCase = env_->GetBuilder()->SwitchCase(switchBranch, keysValue[i]); in Switch() 97 GateRef defaultCase = env_->GetBuilder()->DefaultCase(switchBranch); in Switch() 106 auto loopControl = env_->GetBuilder()->LoopBegin(loopHead->GetControl()); in LoopBegin() 139 auto loopend = env_->GetBuilder()->LoopEnd(currentControl); in LoopEnd() 1694 env_->GetBuilder() in Store() [all...] |
H A D | circuit_builder_helper.h | 282 CircuitBuilder *GetBuilder() const in GetBuilder() function in panda::panda::ecmascript::kungfu::Environment
|
H A D | profiler_stub_builder.cpp | 167 auto weakCtor = env->GetBuilder()->CreateWeakRef(constructor); in ProfileDefineClass() 218 auto weakCtor = env->GetBuilder()->CreateWeakRef(hclass); in ProfileCreateObject() 350 auto builtinsId = env->GetBuilder()->GetBuiltinsId(target); in TryGetBuiltinFunctionId()
|
H A D | new_object_stub_builder.cpp | 1544 GateRef weakCachedFunc = env->GetBuilder()->CreateWeakRef(cachedFunc);
in NewTrackInfo() 1966 trackInfo = env->GetBuilder()->CreateWeakRef(*trackInfo);
in CreateEmptyArray() 2010 trackInfo = env->GetBuilder()->CreateWeakRef(*trackInfo);
in CreateArrayWithBuffer()
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stub_builder.h | 116 GetEnvironment()->GetBuilder()->CallBCHandler(glue, target, {glue, args...}); in DispatchBase() 165 return GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in GetHotnessCounterFromMethod()
|
H A D | baseline_stubs-inl.h | 151 GateRef result = env->GetBuilder()->CallStub(glue, Circuit::NullGate(), index, args, name.c_str());
in CallBaselineStub() 187 return GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x);
in GetHotnessCounterFromMethod()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_typedarray_stub_builder.h | 109 return GetEnvironment()->GetBuilder()->ChangeTaggedPointerToInt64(x);
in ChangeByteArrayTaggedPointerToInt64()
|
H A D | builtins_string_stub_builder.h | 81 return GetEnvironment()->GetBuilder()->ChangeTaggedPointerToInt64(x);
in ChangeStringTaggedPointerToInt64()
|
H A D | builtins_stubs.cpp | 343 Return(env->GetBuilder()->Int32ToTaggedPtr(hash));
in DECLARE_BUILTINS()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | unit_test.h | 496 auto GetBuilder() \
|