/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | jsDeclarationsExportAssignmentWithKeywordName.ts | 26 …module.exports = { extends: 'base', more: { others: ['strs'] }, x}, "{ extends:… 27 AssertType(module.exports, "{ extends: string; more: { others: string[]; }; x: number; }"); 28 AssertType({ extends: 'base', more: { others: ['strs'] }, x}, "{ extends: string… 34 more: { 35 AssertType(more, "{ others: string[]; }");
|
D | doNotEmitDetachedCommentsAtStartOfLambdaFunction.ts | 42 AssertType(() => { // Single line comment with more than one blank line return 0;}, "() => nu… 44 // Single line comment with more than one blank line 52 AssertType(() => { /* multi-line comment with more than one blank line */ return 0;… 55 multi-line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfFunctionBody.ts | 40 // Single line comment with more than one blank line 50 multi line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfConstructor.ts | 45 // Single Line Comment with more than one blank line 57 Multi-line comment with more than one blank line
|
D | multipleDeclarations.ts | 94 this.mistake = 'even more nonsense'; 95 AssertType(this.mistake = 'even more nonsense', "string"); 98 AssertType('even more nonsense', "string");
|
D | constructSignatureAssignabilityInInheritance4.ts | 75 a16: new <T>(x: { a: T; b: T }) => T[]; // ok, more general parameter type 76 a17: new <T extends Base>(x: T) => T[]; // ok, more general parameter type 77 a18: new <T extends Base>(x: T) => number[]; // ok, more general parameter type
|
D | privacyCheckTypeOfInvisibleModuleNoError.ts | 27 export let f: typeof Inner; // Since we dont unwind inner any more, it is error here
|
D | NOTICE | 6 … MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
|
D | recursiveTypeComparison.ts | 26 // Add more to make it slower
|
D | overloadOnConstConstraintChecks1.ts | 31 // + 100 more
|
/arkcompiler/runtime_core/docs/ |
D | 2022-08-18-isa-changelog.md | 18 …of some opcodes (about immediate number and accumulator), so that the bytecode can be more compact. 25 We also add header index in function such that runtime can access IndexHeader more efficiently. 35 This will help runtime to build constant pool more efficiently.
|
D | design-of-interpreter.md | 87 more efficient data reads from the Panda binary file. Foreign entities are loaded from their 101 more space. As a solution, our file format will support variable length of identifiers to 104 To enable even more compact size of resulting binaries, we will compress it with the 141 1. Panda should scale onto a wide range of devices, including IoT devices. Although more and 142 more toolchains support C++ compilation for IoT, the standard library is often not present 144 optimal size of resulting native binary executable files, it is more reasonable to reimplement 180 1. Although tagged virtual registers occupy more memory (especially on 64-bit architectures),
|
D | ir_format.md | 71 Panda bytecode has more than 200 instructions. We need to convert all Bytecode instructions in IR i… 88 The more and more complex optimizations we do, the more overhead we get. We need to find a balance … 90 In Ahead-Of-Time(AOT) mode the overhead is less critical for us, so we can do more optimizations. 106 1. It is more common in compilers and easier to understand 134 **BasicBlock** can not have more than one incoming or outgoing edges into the same block. 254 …ches to make iterating more effective is to store data in sequence container, such as array or vec… 294 **Lowering pass** makes low level instructions(which are more close to machine code). 313 In the future, we plan to make fully own implementation for more optimal code generation(in terms o…
|
D | doxygen.config | 207 # not recognized any more. 250 # only. Doxygen will then generate output that is more tailored for C. For 258 # Python sources only. Doxygen will then generate output that is more tailored 297 # according to the Markdown format, which allows for more readable 328 # diagrams that involve STL classes more complete and accurate. 655 # documentation. If the initializer consists of more lines than specified here 708 # The CITE_BIB_FILES tag can be used to specify one or more bib files containing 711 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 805 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 848 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude [all …]
|
D | panda-runtime.md | 13 A more detailed explanation of our principles can be found here: TBD
|
/arkcompiler/runtime_core/isa/ |
D | README | 21 Please refer to the file itself for more details. 23 Driver for template generation. Run './gen.rb --help' for more details.
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | leb128.h | 156 bool more = true; in EncodeSigned() local 158 while (more) { in EncodeSigned() 162 more = !((data == 0 && (byte & SIGN_BIT) == 0) || (data == -1 && (byte & SIGN_BIT) != 0)); in EncodeSigned() 163 if (more) { in EncodeSigned()
|
/arkcompiler/ets_runtime/ |
D | README.md | 7 For more information, see [ArkCompiler JS Runtime](https://gitee.com/openharmony/docs/blob/master/e… 68 For more information, see [ARK Runtime Usage Guide](https://gitee.com/openharmony/arkcompiler_ets_r…
|
/arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
D | ldstatic.yaml | 240 …eck that field value is loaded into accumulator in PandaAssembly context. More tests on ldstatic c… 280 …s loaded into accumulator in PandaAssembly context. Signed integer types. More tests on ldstatic c… 319 …eck that field value is loaded into accumulator in PandaAssembly context. More tests on ldstatic c… 352 …s loaded into accumulator in PandaAssembly context. Signed integer types. More tests on ldstatic c… 524 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic c… 556 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic c…
|
D | ldstatic.64.yaml | 261 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic.6… 291 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic.6… 318 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic.6… 350 …tor value is loaded from field into accumulator in PandaAssembly context. More tests on ldstatic.6…
|
/arkcompiler/ets_frontend/arkguard/ |
D | tsconfig.base.json | 2 /* Visit https://aka.ms/tsconfig.json to read more about this file */
|
/arkcompiler/ets_frontend/test/scripts/ |
D | readme.md | 18 All tests can run without others, read the seperate readme for more details.
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/constAssertionOnEnum/ |
D | more.ts | 19 // === tests/cases/conformance/expressions/typeAssertions/more.ts ===
|
/arkcompiler/ets_frontend/arkguard/test/grammar/generics_validation/ |
D | generics_lenth.ts | 29 console.log(arg.length); // Array has a .length, so no more error
|
/arkcompiler/runtime_core/compiler/docs/ |
D | interface_inline_cache.md | 104 1. `Interface Inline Cache` will reduce `RESOLVE_VIRTUAL_CALL_AOT` calls by more than 90% 105 2. benchmark test case: ImtConflicts100 -- runing time will accelerate by more than 300%
|