Home
last modified time | relevance | path

Searched full:as (Results 1 – 25 of 4923) sorted by relevance

12345678910>>...197

/arkcompiler/runtime_core/tests/regression/
Dfcmp.pa9 # distributed under the License is distributed on an "AS IS" BASIS,
18 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
22 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
27 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
28 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
35 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
39 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
44 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
45 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-ts-as-expression.ts10 * distributed under the License is distributed on an "AS IS" BASIS,
17 var a = "x" as "x" | "y";
18 var b = null as any as string | undefined as never;
19 var c = 1 as const;
Dtest-as-expression2.ts10 * distributed under the License is distributed on an "AS IS" BASIS,
18 function as(obj) {} function
22 as(B)
/arkcompiler/runtime_core/
DLICENSE11 and distribution as defined by Sections 1 through 9 of this document.
37 Object form, made available under the License, as indicated by a
44 represent, as a whole, an original work of authorship. For the purposes
61 designated in writing by the copyright owner as "Not a Contribution."
77 (except as stated in this section) patent license to make, have made,
88 as of the date such litigation is filed.
107 (d) If the Work includes a "NOTICE" text file as part of its
113 as part of the Derivative Works; within the Source form or
120 or as an addendum to the NOTICE text from the Work, provided
122 as modifying the License.
[all …]
/arkcompiler/toolchain/
DLICENSE11 and distribution as defined by Sections 1 through 9 of this document.
37 Object form, made available under the License, as indicated by a
44 represent, as a whole, an original work of authorship. For the purposes
61 designated in writing by the copyright owner as "Not a Contribution."
77 (except as stated in this section) patent license to make, have made,
88 as of the date such litigation is filed.
107 (d) If the Work includes a "NOTICE" text file as part of its
113 as part of the Derivative Works; within the Source form or
120 or as an addendum to the NOTICE text from the Work, provided
122 as modifying the License.
[all …]
/arkcompiler/ets_runtime/
DLICENSE11 and distribution as defined by Sections 1 through 9 of this document.
37 Object form, made available under the License, as indicated by a
44 represent, as a whole, an original work of authorship. For the purposes
61 designated in writing by the copyright owner as "Not a Contribution."
77 (except as stated in this section) patent license to make, have made,
88 as of the date such litigation is filed.
107 (d) If the Work includes a "NOTICE" text file as part of its
113 as part of the Derivative Works; within the Source form or
120 or as an addendum to the NOTICE text from the Work, provided
122 as modifying the License.
[all …]
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/
Dmodule_info_test.js10 * distributed under the License is distributed on an "AS IS" BASIS,
22 import * as ns from './mod2';
30 import { var4 as localVar4 } from '../../mod4';
45 export { UserInput as UInput };
49 export { func3 as exFunc3 };
54 export { v5 as v } from './mod5';
/arkcompiler/runtime_core/docs/
D2022-08-18-isa-changelog.md11 The bytecode size and runtime performance have been suffering for a long time as the all the
15 3. We add prefix "deprecated" and keep the many old isa as "deprecated"-prefixed opcodes (for compa…
20 8. We add 8-bit or 16-bit imm as inline cache slot for some specific opcodes.
23 As we merge some "define-function" opcodes as one opcode, in function we add one field which record…
36 As the method number in a class is not limited, we release the constraint that all methodId,
39 As we use 16-bit to encode methodId, stringId and literalarrayId, the number of these Ids in one me…
Dassembly_format.md9 Panda as a platform is multilingual and flexible by design:
11 …d to be) supported by the platform. Instead, Panda assembly can be thought as a separate close-to-…
14 …ttebn in Panda assembly language. Assembler should process as many input source code files as the …
32 …h `mutf8` encoding. For example: `"文字范例"` string literal should be encoded as `"\xe6\x96\x87\xe5\x…
70 As stated above, current version of Panda assembly does not favor any language as the platform is d…
106 | `static` | Marks a function as static. Does not require value. |
107 | `ctor` | Marks a function as object constructor. It will be renamed in binary file according to…
108 | `cctor` | Marks a function as static constructor. It will be renamed in binary file according to…
163 | `java.annotation.id` | Used to specify annotation id. Annotations with id are used as values of o…
233 Aggregate data types are defined as follows:
[all …]
/arkcompiler/ets_frontend/
DLICENSE11 and distribution as defined by Sections 1 through 9 of this document.
37 Object form, made available under the License, as indicated by a
44 represent, as a whole, an original work of authorship. For the purposes
61 designated in writing by the copyright owner as "Not a Contribution."
77 (except as stated in this section) patent license to make, have made,
88 as of the date such litigation is filed.
107 (d) If the Work includes a "NOTICE" text file as part of its
113 as part of the Derivative Works; within the Source form or
120 or as an addendum to the NOTICE text from the Work, provided
122 as modifying the License.
[all …]
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md11 …tion `LoadString` instruction could be either encoded as regular `ResolveString` runtime call or as
12 a PLT-slot check with `ResolveStringAot` runtime call as a fallback.
32 `RuntimeStringAot` runtime call resolves the string as a regular `RuntimeString` call, but also doe…
43 registered as GC-root in `AotManager` and the resolved string is returned.
47 String pointers stored inside PLT-slots have to be treated as GC-roots to prevent its scavenge in c…
50 slots in order to scan and update them. As an optimization `AotManager` stores information about wh…
52 PLT-slots during young GC, but it also requires update during update phase. As yet another optimiza…
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dbalance_expressions.h10 * distributed under the License is distributed on an "AS IS" BASIS,
95 // Same as std::bit_ceil() introduced in C++20
114 // (highest_bit_idx >= 1) as soon as (val > 1) in GetBitCeil()
122 // Same as std::bit_floor() introduced in C++20, except that return strictly less than `val`
140 // (highest_bit_idx >= 2) as soon as (val > 1) in GetBitFloor()
144 // (highest_bit_idx >= 2) as soon as (val > 1) in GetBitFloor()
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/expressions/
Dts-test-as-expression-1.ts10 * distributed under the License is distributed on an "AS IS" BASIS,
17 print(1 as number);
18 print("ts-test-as-expression-1" as string);
/arkcompiler/ets_frontend/testTs/
Dutils.py13 distributed under the License is distributed on an "AS IS" BASIS,
50 with open(path, "w") as utils_clean:
56 with open(path, "r") as utils_read:
63 with open(path, "w") as utils_write:
69 with os.fdopen(fd, 'a+') as utils_append:
98 except BaseException as e:
/arkcompiler/runtime_core/docs/diagrams/
Dpanda-states-concurrent-gc.pustate9 ' distributed under the License is distributed on an "AS IS" BASIS,
29 state "GCThread in concurrent mode" as GCConcurrent
40 state "GCThread in STW mode" as GCSTW
43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
Dpanda-states-generational-gc.pustate9 ' distributed under the License is distributed on an "AS IS" BASIS,
29 state "GCThread Idle" as GCIdle
40 state "GCThread is active in STW mode" as GCSTW
43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
/arkcompiler/runtime_core/runtime/bridge/arch/arm/
Dhandle_call_imm16_v16_arm.S10 * distributed under the License is distributed on an "AS IS" BASIS,
17 // regs are set as follow
18 // r0 - the pointer to the acc, r1 - num args, r2-r3 - function object as int64_t
35 // setup regs are set as follow
36 // r0 - the pointer to the acc, r1 - num args, r2-r3 - function object as int64_t
/arkcompiler/ets_frontend/testTs/instype/
Drecordimport.ts2 import {a as x, b as y, c, d, Calculator, add} from "./recordexport"
3 import * as calculator from "./recordexport"
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub-inl.h10 * distributed under the License is distributed on an "AS IS" BASIS,
118 GateRef currentInst2 = Int32LSL(currentInst1, Int32(8)); // 8 : set as high 8 bits in ReadInstSigned16_0()
127 GateRef currentInst1 = Int32LSL(currentInst, Int32(8)); // 8 : set as high 8 bits in ReadInstSigned32_0()
129 GateRef currentInst3 = Int32LSL(currentInst2, Int32(8)); // 8 : set as high 8 bits in ReadInstSigned32_0()
131 GateRef currentInst5 = Int32LSL(currentInst4, Int32(8)); // 8 : set as high 8 bits in ReadInstSigned32_0()
139 GateRef currentInst2 = Int16LSL(currentInst1, Int16(8)); // 8 : set as high 8 bits in ReadInst16_0()
147 GateRef currentInst2 = Int16LSL(currentInst1, Int16(8)); // 8 : set as high 8 bits in ReadInst16_1()
156 GateRef currentInst2 = Int16LSL(currentInst1, Int16(8)); // 8 : set as high 8 bits in ReadInst16_2()
165 GateRef currentInst2 = Int16LSL(currentInst1, Int16(8)); // 8 : set as high 8 bits in ReadInst16_3()
174 GateRef currentInst2 = Int16LSL(currentInst1, Int16(8)); // 8 : set as high 8 bits in ReadInst16_4()
[all …]
/arkcompiler/ets_frontend/test262/
Dmodule_tests.txt4 early-dup-export-id-as.js
25 early-dup-export-as-star-as.js
29 early-dup-export-id-as.js
31 export-star-as-dflt.js
38 early-import-as-arguments.js
39 early-import-as-eval.js
72 eval-gtbndng-indirect-update-as.js
109 export-expname-from-as-unpaired-surrogate.js
122 export-star-as-dflt_FIXTURE.js
123 export-star-as-dflt.js
[all …]
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DREADME.md25 …l format with additional fields showing the coverage data (mark assertions as covered/not-covered/…
26 --full_md (-F) - same as --full, but in markdown format
28 --uncovered_md (-U) - same as --uncovered, but in markdown format
30 --orphaned_md (-O) - same as --orphaned, but in markdown format
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-export-2/
Dbase.js10 * distributed under the License is distributed on an "AS IS" BASIS,
20 v1 as streamV1,
21 v2 as base,
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-export-2/
Dbase.js10 * distributed under the License is distributed on an "AS IS" BASIS,
20 v1 as streamV1,
21 v2 as base,
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-export-1/
Dbase.js10 * distributed under the License is distributed on an "AS IS" BASIS,
20 v1 as streamV1,
21 v2 as base,
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-export-1/
Dbase.js10 * distributed under the License is distributed on an "AS IS" BASIS,
20 v1 as streamV1,
21 v2 as base,

12345678910>>...197