| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | graph_checker.h | 260 … (std::cerr << "Binary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr))); 315 … (std::cerr << "Ternary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr))); 317 … (std::cerr << "Ternary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr)));
|
| D | graph_checker.cpp | 167 "Non-end block and non-try-begin block should have 1 or 2 successesors"); in CheckControlFlow() 657 "Block with 2 successors have no instructions or should be try-end"); in CheckDataFlow() 659 "Last instruction must be control flow in block with 2 successors"); in CheckDataFlow() 1071 … (std::cerr << "\n Sub with 2 ptr inputs must have int type\n", inst->Dump(&std::cerr))); in CheckDataFlow() 1190 ASSERT_DO(CheckCommonTypes(inst, inst->GetInputs()[2U].GetInst()), in CheckDataFlow() 1206 ASSERT_DO(CheckCommonTypes(inst, inst->GetInputs()[2U].GetInst()), in CheckDataFlow() 1216 ASSERT_DO(CheckCommonTypes(inst, inst->GetInputs()[2U].GetInst()), in CheckDataFlow() 1292 [[maybe_unused]] auto ss = inst->GetInputs()[2U].GetInst(); in CheckDataFlow() 1513 (std::cerr << "Condition instruction 2nd operand type is not a reference\n", in CheckDataFlow() 1556 … (std::cerr << "Cmp instruction 2st operand type is not a numeric type\n", inst->Dump(&std::cerr), in CheckDataFlow() [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | ldobj.v.64.yaml | 209 …description: Check that verifier reports an error when the 2nd operand is not a ref to an object (… 247 …description: Check that verifier reports an error when the 2nd operand is not a ref to an object (…
|
| D | stobj.v.64.yaml | 244 Check that verifier reports error when the 2nd operand is not a ref to an 286 Check that verifier reports error when the 2nd operand is not a ref to an 743 ldai 2
|
| D | stobj.v.obj.yaml | 213 Check that verifier reports error when the 2nd operand is not a ref to 250 Check that verifier reports error when the 2nd operand is not a ref to 772 ldai 2 863 ldai 2
|
| D | stobj.v.yaml | 271 …description: Check that verifier reports error when the 2nd register is not a ref to an object (ot… 325 …description: Check that verifier reports error when the 2nd register is not a ref to an object (ot… 787 ldai 2 853 ldai 2 924 ldai 2
|
| D | lda.str.yaml | 444 ldai %s # 2-nd char 449 movi v2, 2 # index
|
| D | ldobj.v.obj.yaml | 206 …description: Check that verifier reports error when the 2nd operand is not a ref to an object (oth… 451 ldai 2 547 ldai 2
|
| D | ldobj.v.yaml | 205 …description: Check that verifier reports an error when the 2nd operand is not a ref to an object (…
|
| D | call.short.yaml | 47 description: Check that 'call.short' supports up to 2 arguments. 165 # 2nd - usage of acc or reg 275 # 2nd - possible initialization of registers 318 # 2 - function arguments 1048 lda.str "some string 2" 1054 lda.str "some string 2"
|
| D | call.yaml | 182 # 2nd - usage of acc or reg 276 # 2nd - possible initialization of registers 326 # 2 - function arguments 418 movi %s, 2 607 - values: ["0", "1", "2", "3", "0", "1", "2", "3"] 608 - values: ["-3", "-2", "-1", "0", "-3", "-2", "-1", "0"] 668 - values: ["0", "1", "2", "3", "0", "1", "2", "3"] 669 - values: ["-3", "-2", "-1", "0", "-3", "-2", "-1", "0"] 1183 lda.str "some string 2" 1189 lda.str "some string 2"
|
| D | call.range.yaml | 193 # 2nd - usage of acc or reg 291 # 2 - function arguments 524 - values: ["0", "1", "2", "3", "0", "1", "2", "3"] 525 - values: ["-3", "-2", "-1", "0", "-3", "-2", "-1", "0"] 585 - values: ["0", "1", "2", "3", "0", "1", "2", "3"] 586 - values: ["-3", "-2", "-1", "0", "-3", "-2", "-1", "0"] 1124 lda.str "some string 2" 1134 lda.str "some string 2" 1155 lda.str "some string 2" 1165 lda.str "some string 2"
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | logger_test.cpp | 46 LOG(INFO, COMMON) << "2"; 82 LOG(INFO, COMMON) << "2"; 294 LOG(INFO, COMMON) << "a\nb\nc\n\nd\n";
|
| /arkcompiler/runtime_core/docs/ |
| D | runtime-compiled_code-interaction.md | 152 Calling `int max(int a, int b)` function from compiled code on ARM architecture with arguments `2` … 162 // 2nd step: prepare arguments and entrypoint to call `int max(int, int)` 163 mov r1, #2 167 blx lr // call max('max_method', 2, 3) 403 2. Set the pointer to the boundary frame into stack pointer, assign the return address determined a…
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | method.h | 80 // The next state is waiting for verification uses 2nd bit. 94 VERIFIED_OK = 2,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | slowpath_lowering.cpp | 81 return acc_.GetNumValueIn(gate) + NUM_MANDATORY_JSFUNC_ARGS - 2; // 2: calltarget, this in ComputeCallArgc() 799 // 2: number of value inputs in LowerAdd2() 800 ASSERT(acc_.GetNumValueIn(gate) == 2); in LowerAdd2() 813 // 2: number of value inputs in LowerCreateIterResultObj() 814 ASSERT(acc_.GetNumValueIn(gate) == 2); in LowerCreateIterResultObj() 900 auto value = acc_.GetValueIn(gate, 2); // 2: acc in LowerSuspendGenerator() 909 // 2: number of value inputs in LowerAsyncFunctionAwaitUncaught() 910 ASSERT(acc_.GetNumValueIn(gate) == 2); in LowerAsyncFunctionAwaitUncaught() 918 // 2: number of value inputs in LowerAsyncFunctionResolve() 919 ASSERT(acc_.GetNumValueIn(gate) == 2); in LowerAsyncFunctionResolve() [all …]
|
| /arkcompiler/ets_frontend/legacy_bin/api8/src/ |
| D | index.js | 2 …2;${r[0]};${r[1]};${r[2]}m`};Object.defineProperty(e,"exports",{enumerable:!0,get:function(){const… class
|