Home
last modified time | relevance | path

Searched full:builtin (Results 1 – 25 of 45) sorted by relevance

12

/arkcompiler/ets_frontend/ts2panda/templates/
DbuiltinsMap.ts.erb24 % PandaBuiltins::builtins.each do |builtin|
25 % if builtin.insn == instr.mnemonic
26 "<%= builtin.mnemonic %>" : <%= builtin.id %>,
27 <%= builtin.id %> : "<%= builtin.mnemonic %>",
64 % PandaBuiltins::builtins.each do |builtin|
65 % if builtin.insn == instr.mnemonic
67 case "<%= builtin.sig.split(' ')[0]%>":
/arkcompiler/runtime_core/irtoc/
Dintrinsics.yaml25 builtin: true
106 builtin: true
120 builtin: true
134 builtin: true
/arkcompiler/ets_frontend/test262/
Dintl_tests.txt4 intl402/BigInt/prototype/toLocaleString/builtin.js
18 intl402/Collator/builtin.js
36 intl402/Collator/prototype/builtin.js
43 intl402/Collator/prototype/resolvedOptions/builtin.js
53 intl402/Collator/prototype/compare/builtin.js
60 intl402/Collator/prototype/compare/compare-function-builtin.js
66 intl402/Collator/supportedLocalesOf/builtin.js
71 intl402/Date/prototype/toLocaleDateString/builtin.js
77 intl402/Date/prototype/toLocaleTimeString/builtin.js
81 intl402/Date/prototype/toLocaleString/builtin.js
[all …]
Dskip_tests.json53 … "language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js",
57 "language/statements/class/subclass/builtin-objects/Function/instance-length.js",
58 "language/statements/class/subclass/builtin-objects/Function/instance-name.js",
59 "language/statements/class/subclass/builtin-objects/Function/regular-subclassing.js",
60 … "language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js",
61 "language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js",
62 … "language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js",
588 … "language/statements/class/subclass/builtin-objects/GeneratorFunction/super-must-be-called.js",
589 "language/statements/class/subclass/builtin-objects/Function/super-must-be-called.js",
/arkcompiler/ets_runtime/test/aottest/builtins_array/
Dbuiltins_array.ts17 // test new builtin array
24 // test call builtin constructor
/arkcompiler/ets_runtime/test/aottest/builtins_stub/
Dbuiltins_stub.ts17 // test new builtin constructor
27 // test call builtin constructor
/arkcompiler/ets_runtime/test/
Druntest.py54 …parser.add_argument('--bt', dest='builtin', action='store_true', help='aot compile with lib_ark_bu…
99 self.builtin = ''
100 if args.builtin:
101 … self.builtin = f'{self.ohdir}/arkcompiler/ets_runtime/ecmascript/ts_types/lib_ark_builtins.d'
197 self.builtin
200 if self.builtin:
201 self.aot_args = f'{self.aot_args} --builtins-dts={self.builtin}.abc'
285 if self.builtin:
286 cmd = f'node --expose-gc {self.ts2abc} {self.builtin}.ts -m --merge-abc -q -b'
/arkcompiler/ets_frontend/ts2panda/src/base/
DvregisterCache.ts31 } from "./builtIn";
101 throw new Error("invalid builtin index");
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.h28 BUILTIN, enumerator
40 * (abbreviated as GT) of one builtin object will be different in different cases.
42 * In case where AOT does not load lib_ark_builtins.d.ts, builtin objects will be assigned localIds
44 * is the index of builtin TSTypeTable. Note that in this case, it is prohibited to get TSType from
45 * builtin TSTypeTable.
47 * In case where AOT has loaded lib_ark_builtins.d.ts, builtin objects will be assigned localIds in
48 * the order in which they appear in bytecodes. To identify types of builtin objects, the following
50 * builtin object.
/arkcompiler/runtime_core/compiler/tests/
Dmethod_properties_test.cpp113 TEST_F(MethodPropertiesTest, Builtin) in TEST_F() argument
120 INST(1, Opcode::Builtin).b().Inputs({{DataType::FLOAT64, 0}}); in TEST_F()
/arkcompiler/ets_runtime/docs/
Ddevelopment-example-zh.md124 builtin.acc
126 builtin.idi "print", 0x0 // 加载print函数
130 builtin.tern3 v3, v4 // 调用print函数
131 builtin.acc
Ddevelopment-example.md109 builtin.acc
111 builtin.idi "print", 0x0 // Load the print function.
115 builtin.tern3 v3, v4 // Call the print function.
116 builtin.acc
/arkcompiler/ets_frontend/ts2panda/src/
DcmdOptions.ts46 …{ name: 'dts-builtin-type-record', alias: 'b', type: Boolean, defaultValue: false, description: "R…
322 return this.options["dts-builtin-type-record"];
/arkcompiler/ets_frontend/ts2panda/scripts/
Dgenerate_js_bytecode.py48 help='enable builtin types recognition for .d.ts files')
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.h85 // Builtin Helpers
DtypeExtractor.cpp502 // Special case for Builtin in GetTypeIndexFromInitializer()
649 // Special case for Builtin in GetTypeIndexFromTypeReference()
693 // New instance for builtin generic type in GetTypeIndexFromBuiltinInst()
/arkcompiler/ets_frontend/es2panda/aot/
Doptions.cpp168 …panda::PandArg<bool> opTypeDtsBuiltin("type-dts-builtin", false, "Enable builtin type extractor fo… in Parse()
304 std::cout << "[LOG]TypeExtractor is enabled, type-dts-builtin: " << in Parse()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dtype_infer.cpp725 …* new keyword). However, a few builtin types can be called like a function. Upon the results of ca… in InferCallFunction()
726 * constructing, there are 4 categories of builtin types: in InferCallFunction()
733 …* Constructing a builtin type always create objects of the type if supported. So in this function,… in InferCallFunction()
734 …* builtin types which are callable. While the majority of the callable builtin types have the same… in InferCallFunction()
745 * See the list of builtin types' constructors at: in InferCallFunction()
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
Dsamples_record.cpp382 case RunningState::BUILTIN: in AddRunningState()
383 temp.append("(BUILTIN)"); in AddRunningState()
426 case RunningState::BUILTIN: { in StatisticStateTime()
Dsamples_record.h45 BUILTIN, enumerator
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dinst_builder_gen.cpp.erb128 /^builtin/ => "builtin",
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/
Druntime_stat.cpp74 …NFO) << std::right << std::setw(nameRightAdjustment) << "InterPreter && GC && C++ Builtin Function" in PrintAllStats()
/arkcompiler/runtime_core/docs/
Dassembly_format.md269 ### Builtin Aggregate Data Types
271 Platform has following builtin aggregate types
/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_acc_alloc.cpp238 if (inst->GetOpcode() == compiler::Opcode::Builtin) { in RunImpl()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md45builtin categories and user defined bit vectors categories), and possible classes of objects the v…
47 Validation rules of primary type are already builtin for Circuit IR. Validation rules of secondary …

12