Home
last modified time | relevance | path

Searched full:actual (Results 1 – 25 of 49) sorted by relevance

12

/arkcompiler/runtime_core/docs/bc_verification/
Dabsint_checks.md3 ### Physical compatibility of arguments to instructions and actual parameters to methods
19 Checks of compatibility of objects in arguments to instructions and actual parameters to methods.
37 Can help inconsistency between method signature and type of actual return value
/arkcompiler/ets_runtime/test/moduletest/objectcloneproperties/
Dobjectcloneproperties.js36 var actual = arr.flatMap(fn); variable
45 actual = [].flatMap.call(arrLike, fn);
46 print(actual);
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgate.cpp38 OpCode actual = GetInGateConst(idx)->GetOpCode(); in CheckInputOpcode() local
39 if (actual != expected) { in CheckInputOpcode()
41 + " actual:" + GateMetaData::Str(actual) + ")", idx); in CheckInputOpcode()
47 MachineType actual = GetInGateConst(idx)->GetMachineType(); in CheckInputMachineType() local
54 if (actual == MachineType::ARCH) { in CheckInputMachineType()
55 actual = isArch64 ? MachineType::I64 : MachineType::I32; in CheckInputMachineType()
57 if (actual != expected) { in CheckInputMachineType()
59 + MachineTypeToStr(expected) + " actual:" + MachineTypeToStr(actual) + ")", idx); in CheckInputMachineType()
66 OpCode actual = gatePtr->GetOpCode(); in CheckGeneralState() local
68 CheckFailed("State input does not match (expected:<General State> actual:" in CheckGeneralState()
[all …]
Dcall_signature.cpp846 VariableType::INT64(), // actual argC in DEF_CALL_SIGNATURE()
866 VariableType::INT64(), // actual argC in DEF_CALL_SIGNATURE()
886 VariableType::INT64(), // actual argC in DEF_CALL_SIGNATURE()
905 VariableType::INT64(), // actual argC in DEF_CALL_SIGNATURE()
1571 VariableType::INT64(), // actual argC in DEF_CALL_SIGNATURE()
/arkcompiler/ets_frontend/ts2panda/tests/utils/
Dbase.ts129 export function checkInstructions(actual: IRNode[], expected: IRNode[], checkFn?: Function): boolea…
134 if (actual.length !== expected.length) {
135 console.log("actual.length:" + actual.length + " expected.length:" + expected.length)
139 for (let i = 0; i < actual.length; ++i) {
140 if (!checkFn(actual[i], expected[i])) {
/arkcompiler/ets_runtime/test/aottest/formatrangetoparts/
Dformatrangetoparts.js23 function compare(actual, expected, message) { argument
24 for (const [i, actualEntry, expectedEntry] of zip(actual, expected)) {
/arkcompiler/runtime_core/verification/
Dmessages.yaml118 … In a call to '${name}'. ${maybe_reg}Actual type: '${actual_type}'. Formal type: '${formal_type}'.
357 …Cannot make a call to '${name}'. Formal parameter is of type 'Bot', but actual parameter is of typ…
364 Warning: formal and actual parameters are of type '${type}'.
369 message: "Warning: formal parameter is of type 'Top'. Accepted any type of actual parameter."
376 …Warning: formal type is '${formal_type}' but actual is '${actual_type}'. Actual type is inexact on…
385 …Cannot make a call to '${name}'. Actual lambda type ${reg}'${actual_type}' (physical type '${physi…
398 …Cannot make a call to '${name}' because of wrong type in actual parameter. Actual type: '${actual_…
405 Cannot make a call to '${name}' because of insufficient actual parameters.
Dverification.yaml29 wrong_actual_param: Wrong actual parameter type.
/arkcompiler/runtime_core/libpandabase/tests/
Dbit_memory_region_test.cpp27 uint8_t actual = data[i / BITS_PER_BYTE] >> (i % BITS_PER_BYTE); in CompareData() local
28 ASSERT_EQ(expected & 1, actual & 1); in CompareData()
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dintrinsic_codegen_test.inl.erb31 …"") // actual expected message is "This line should be unreachable" but sometimes gtest does not …
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_map.h28 …* equal to the number of given registers and save map to restore actual codegen register number fr…
/arkcompiler/runtime_core/compiler/docs/
Davoid-calculating-start-of-array.md6 the address of the actual array data has to be infered from the object address.
Dinterface_inline_cache.md100 because Method* is 8bit align, so Method* can be compressed. So the actual range we can store is:
Dplt.md61 parameter in actual method call. Jump by register value operation is used instead of call to return…
/arkcompiler/toolchain/build/toolchain/
Dgcc_link_wrapper.py26 # just 'cmd' is the actual command given to Python's subprocess module.
Dgcc_solink_wrapper.py138 # First, run the actual link.
/arkcompiler/runtime_core/docs/
Dcode_metainfo.md135 | METHOD_HI | Hi 32-bit part of the method pointer (actual only for jit) |
136 | METHOD_LOW | Low 32-bit part of the method pointer (actual only for jit) |
Ddesign-of-interpreter.md89 1. The format uses raw offsets as the main access method to the actual data and doesn't
102 select the optimal size based on actual code base.
Dglossary.md12 compilation" are used to indicate that the source code or bytecode is compiled before actual
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp178 // [maybe argc] [actual args] [reserved args] [call field virtual regs] in CollectVirtualRegisters()
191 // [actual args] in CollectVirtualRegisters()
/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_encoder.h58 * actual inputs r16+. If such instructions are found, some lower registers
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp181 __ Pushq(actualNumArgsReg); // actual argc in OptimizedCallOptimized()
362 __ Movl(Operand(rsp, DOUBLE_SLOT_SIZE), argc); // sp + 16 actual argc in JSProxyCallInternalWithArgV()
472 __ Pushq(r10); // push actual arguments in JSProxyCallInternalWithArgV()
599 __ Movl(Operand(rsp, DOUBLE_SLOT_SIZE), argc); // sp + 16 actual argc in GenJSCall()
818 __ Movl(Operand(rsp, DOUBLE_SLOT_SIZE), argc); // sp + 16 actual argc in ConstructorJSCall()
999 __ Pushq(r10); // push actual arguments in JSBoundFunctionCallInternal()
/arkcompiler/runtime_core/verification/util/
Dequiv_classes.h32 when object class is determined, after finding actual class, object class set
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.cpp86 …* In debug builds this function allowes or disallowes proceeding with actual logging (i.e. creatin…
/arkcompiler/runtime_core/runtime/mem/
Dinternal_allocator.cpp102 // Do it before actual free even we don't do something with ptr. in Free()

12