Home
last modified time | relevance | path

Searched refs:IsFastCall (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dmethod.h116 static bool IsFastCall(uint64_t callField) in IsFastCall() function
334 bool IsFastCall() const in IsFastCall() function
337 return IsFastCall(callFiled); in IsFastCall()
Djs_function.cpp452 if (method->IsFastCall()) { in InvokeOptimizedEntrypoint()
514 if (method->IsFastCall()) { in InvokeOptimizedEntrypoint()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h198 static bool IsFastCall(uint64_t callField) in IsFastCall() function
203 bool IsFastCall() const in IsFastCall() function
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type.h206 NEXT_BIT_FIELD(BitField, IsFastCall, bool, ONE_BIT, IsSignature);
207 NEXT_BIT_FIELD(BitField, IsFastCallVaild, bool, ONE_BIT, IsFastCall);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
Dlitecg_codegen.cpp109 if (methodLiteral->IsFastCall()) { in GenerateCode()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_inline_lowering.cpp287 if (!method->IsFastCall()) { in ReplaceCallInput()
291 if (!method->IsFastCall()) { in ReplaceCallInput()
319 if (!method->IsFastCall()) { in ReplaceAccessorInput()
323 if (!method->IsFastCall()) { in ReplaceAccessorInput()
511 if (method->IsFastCall()) { in LowerToInlineCall()
Dargument_accessor.cpp143 if (method_->IsFastCall() && args_.size() > 2) { // 2: mean have func and glue in CollectArgs()
Dllvm_codegen.cpp292 if (methodLiteral->IsFastCall()) { in GenerateCode()
298 enableLog_, methodLiteral->IsFastCall(), methodName, in GenerateCode()
Dbytecode_circuit_builder.cpp373 if (!method_->IsFastCall()) { in BuildCircuitArgs()
Dlitecg_ir_builder.cpp156 if (!methodLiteral_->IsFastCall()) { in AddFunc()
177 lmirModule_->SetFunction(offsetInPandaFile, funcName, methodLiteral_->IsFastCall()); in AddFunc()
254 if (methodLiteral_->IsFastCall()) { in GenPrologue()
Dllvm_ir_builder.cpp2754 if (!methodLiteral->IsFastCall()) { in AddFunc()
2775 SetFunction(offsetInPandaFile, function, methodLiteral->IsFastCall()); in AddFunc()
Dstub_builder.h745 GateRef IsFastCall(GateRef method);
Dstub_builder-inl.h2718 inline GateRef StubBuilder::IsFastCall(GateRef method) in IsFastCall() function
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp343 if (!method->IsFastCall() && declaredNumArgs != actualNumArgs) { in CollectVirtualRegisters()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h2711 if (ctor->GetCallTarget()->IsFastCall()) { in GetResultValue()
2755 if (method->IsFastCall()) { in RuntimeOptConstructGeneric()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp773 EXPECT_TRUE(method->IsFastCall()); in AOTMethodTest()