| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
| D | insert_safepoints.cpp | 43 CallInst *call; in InsertInlinedPoll() local 85 auto call = llvm::dyn_cast<CallInst>(&inst); in InsertSafepointAfterIntrinsics() local 91 for (auto call : calls) { in InsertSafepointAfterIntrinsics() local
|
| D | intrinsics_lowering.cpp | 81 bool IntrinsicsLowering::ReplaceWithLLVMIntrinsic(llvm::CallInst *call, llvm::Intrinsic::ID intrins… in ReplaceWithLLVMIntrinsic() 104 llvm::CallInst *call, llvm::FunctionCallee callee, in HandleMemCall() 135 bool IntrinsicsLowering::HandleCall(llvm::CallInst *call, LLVMArkInterface::IntrinsicId intrinsicId, in HandleCall() 200 auto call = llvm::CallInst::Create(intrinsicFunctionTy, calleePointer, {arg1, arg2}); in HandleFRem() local
|
| D | devirt.cpp | 38 llvm::ConstantInt *GetObjectClassId(llvm::CallInst *call) in GetObjectClassId() 73 auto *call = llvm::dyn_cast<llvm::CallInst>(&instruction); in run() local
|
| D | panda_runtime_lowering.cpp | 50 auto call = llvm::dyn_cast<llvm::CallInst>(&inst); in run() local 61 for (auto call : calls) { in run() local 153 bool PandaRuntimeLowering::NeedsToBeLowered(llvm::CallInst *call) in NeedsToBeLowered()
|
| D | prune_deopt.cpp | 51 auto call = llvm::dyn_cast<CallInst>(&inst); in run() local 71 CallInst *PruneDeopt::GetUpdatedCallInst(CallInst *call, const OperandBundleUse &bundle) in GetUpdatedCallInst() 124 PruneDeopt::EncodedDeoptBundle PruneDeopt::EncodeDeoptBundle(CallInst *call, const OperandBundleUse… in EncodeDeoptBundle()
|
| D | propagate_lenarray.cpp | 48 auto call = llvm::dyn_cast<llvm::CallInst>(&inst); in run() local
|
| D | check_external.cpp | 42 auto *call = llvm::dyn_cast<llvm::CallInst>(&instruction); in run() local
|
| D | loop_peeling.cpp | 59 auto call = llvm::dyn_cast<llvm::CallInst>(&inst); in ContainsDeoptimize() local
|
| D | gc_intrusion.cpp | 298 auto call = llvm::dyn_cast<CallInst>(inst); in RewriteWithGcInBlock() local 321 auto call = llvm::dyn_cast<llvm::CallBase>(&inst); in GetStatepointId() local 453 void GcIntrusion::ReplaceWithRelocated(CallInst *call, CallInst *gcCall, Value *inst, Value *reloca… in ReplaceWithRelocated() 475 void GcIntrusion::RewriteWithGc(CallInst *call, GcRefLiveness *liveness, SetVector<Value *> *refs, in RewriteWithGc() 534 …d::vector<Value *> GcIntrusion::GetDeoptsFromInlineInfo(llvm::IRBuilder<> &builder, CallInst *call) in GetDeoptsFromInlineInfo()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/libllvmbackend/ |
| D | ets_llvm_ir_constructor_gen.inl | 59 …auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), GetInputValue(inst, 1), klass}); local 69 …auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), GetInputValue(inst, 1), klass}); local 76 auto call = CreateStringBuilderAppendLong(inst); local 83 auto call = CreateStringBuilderAppendLong(inst); local 90 auto call = CreateStringBuilderAppendLong(inst); local 97 auto call = CreateStringBuilderAppendLong(inst); local 171 auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), klass}); local 320 …auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), builder_.getInt32(0), builder_.… local 328 …auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), builder_.getInt32(0), builder_.… local 336 …auto call = CreateFastPathCall(inst, eid, {GetInputValue(inst, 0), builder_.getInt32(0), builder_.… local [all …]
|
| /arkcompiler/ets_frontend/ets2panda/ast_verifier/invariants/ |
| D | checkAbstractMethod.cpp | 29 auto const *const call = ast->AsCallExpression(); in operator ()() local
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/lowering/ |
| D | gc_barriers.cpp | 102 auto call = builder->CreateCall(funcTy, callee, {mem, offset, value}); in EmitPostWRB() local 109 auto call = builder->CreateCall(funcTy, callee, {mem, offset, value, threadRegPtr}); in EmitPostWRB() local 117 … auto call = builder->CreateCall(funcTy, callee, {mem, offset, value, threadRegPtr, frameRegPtr}); in EmitPostWRB() local
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| D | utils.cpp | 21 int64_t GetMethodIdFromAttr(llvm::CallInst *call) in GetMethodIdFromAttr() 37 auto call = llvm::dyn_cast<llvm::CallInst>(&instruction); in HasCallsWithDeopt() local
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/public/ |
| D | ast_verifier_check_abstract_call_test.cpp | 56 auto *const call = child->AsCallExpression(); in TEST_F() local
|
| /arkcompiler/ets_frontend/ets2panda/test/unit/lowerings/ |
| D | convert_primitive_cast_method_call.cpp | 48 auto call = node->AsCallExpression(); in TEST_F() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/interface_arg_impl/ets_to_ts/ |
| D | test_arg_interface.ts | 33 call(): string { method in MyImpl
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | string_builder_utils.cpp | 41 auto call = static_cast<const CallInst *>(inst); in IsMethodStringConcat() local 56 auto call = inst->CastToCallStatic(); in IsMethodStringBuilderConstructorWithStringArg() local 71 auto call = inst->CastToCallStatic(); in IsMethodStringBuilderConstructorWithCharArrayArg() local 100 auto call = inst->CastToCallStatic(); in IsMethodStringBuilderDefaultConstructor() local 113 auto *call = inst->CastToCallStatic(); in IsMethodOrIntrinsicCall() local
|
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
| D | convertPrimitiveCastMethodCall.cpp | 29 static ir::AstNode *ConvertMemberExpressionToAsExpression(ir::CallExpression *call, checker::ETSChe… in ConvertMemberExpressionToAsExpression()
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/ |
| D | mark_always_inline.cpp | 71 auto call = dyn_cast<CallInst>(&instruction); in InlineCallTree() local
|
| /arkcompiler/runtime_core/libabckit/tests/ut/ir_core/method/ |
| D | method_static.cpp | 37 auto *call = helpers::FindFirstInst(graph, ABCKIT_ISA_API_STATIC_OPCODE_CALL_STATIC); in TransformSetSetCallMethod() local
|
| /arkcompiler/runtime_core/libabckit/tests/ut/extensions/js/modify_api/super_this/ |
| D | super_this_modify.cpp | 111 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 170 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 267 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 327 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 434 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 530 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local 590 auto *call = g_dynG->iCreateCallarg0(graph, ldlexvar); in TEST_F() local
|
| /arkcompiler/ets_runtime/test/moduletest/arrayfindlast/ |
| D | arrayfindlast.js | 107 function call(obj, ...args) { function
|
| /arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_static/call/ |
| D | call_static_static.cpp | 41 auto *call = g_statG->iCreateCallStatic(graph, func, 0); in TransformCallStaticIr() local 71 auto *call = g_statG->iCreateCallStatic(graph, func, 2, obj1, obj2); in TransformCallStaticIrArgs() local
|
| D | call_virtual_static.cpp | 49 auto *call = g_statG->iCreateCallVirtual(graph, initObj, methodCtxFinder.method, 0); in TransformCallVirtualIr() local
|
| /arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/ |
| D | endpoint_base.cpp | 78 Send([&sessionId, id, method, ¶ms](JsonObjectBuilder &call) { in Call()
|