| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/extension_function_tests/ |
| D | callExtensionFunctionByThisInExtensionAndClassFunction.sts | 18 return 2 + this.amount(); 32 function Fruit.amount(): int {
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_imm_valid.h | 130 // For the 32-bit variant: is the shift amount, in the range 0 to 31, opnd input is bitshiftopnd 137 // For the 64-bit variant: is the shift amount, in the range 0 to 63, opnd input is bitshiftopnd 144 // For the 32-bit variant: is the shift amount, in the range 0 to 31, opnd input is immopnd 151 // For the 64-bit variant: is the shift amount, in the range 0 to 63, opnd input is immopnd 214 // Is the left shift amount to be applied after extension in the range 0 to 4, uint32 means value n… 226 // For the 32-bit variant: is the amount by which to shift the immediate left, either 0 or 16 232 // For the 64-bit variant: is the amount by which to shift the immediate left, either 0, 16, 32 or …
|
| D | aarch64_cgfunc.h | 303 …BitShiftOperand &CreateBitShiftOperand(BitShiftOperand::ShiftOp op, uint32 amount, int32 bitLen) c… in CreateBitShiftOperand() argument 305 return *memPool->New<BitShiftOperand>(op, amount, bitLen); in CreateBitShiftOperand() 308 …ExtendShiftOperand &CreateExtendShiftOperand(ExtendShiftOperand::ExtendOp op, uint32 amount, int32… in CreateExtendShiftOperand() argument 310 return *memPool->New<ExtendShiftOperand>(op, amount, bitLen); in CreateExtendShiftOperand() 403 6; /* for 64 bits register, shift amount is 0~63, use 6 bits to store */ 405 5; /* for 32 bits register, shift amount is 0~31, use 5 bits to store */
|
| /arkcompiler/runtime_core/static_core/disassembler/templates/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 90 // call.acc recieves fixed amount of registers 99 … "between amount of registers specified by instruction format and amount of function's arguments) "
|
| /arkcompiler/runtime_core/static_core/abc2program/templates/ |
| D | abc_inst_convert.cpp.erb | 99 // call.acc recieves fixed amount of registers 108 … "between amount of registers specified by instruction format and amount of function's arguments) "
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | cleanup.cpp | 434 size_t amount = 0; in BuildDominators() local 436 map_.insert({fake_root_, amount}); in BuildDominators() 439 amount++; in BuildDominators() 440 map_.insert({inst, amount}); in BuildDominators() 444 amount++; in BuildDominators() 445 map_.insert({pred, amount}); in BuildDominators() 450 Init(amount + 1); in BuildDominators() 460 ASSERT(static_cast<size_t>(dfs_num_) == amount); in BuildDominators() 462 for (size_t i = amount; i > 0; i--) { in BuildDominators() 466 for (size_t i = 1; i <= amount; i++) { in BuildDominators()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | cleanup.cpp | 548 void Cleanup::BuildDominatorsVisitPhi(Inst *inst, size_t &amount) in BuildDominatorsVisitPhi() argument 550 amount++; in BuildDominatorsVisitPhi() 551 map_.insert({inst, amount}); in BuildDominatorsVisitPhi() 555 amount++; in BuildDominatorsVisitPhi() 556 map_.insert({pred, amount}); in BuildDominatorsVisitPhi() 563 size_t amount = 0; in BuildDominators() local 565 map_.insert({fakeRoot_, amount}); in BuildDominators() 568 BuildDominatorsVisitPhi(inst, amount); in BuildDominators() 571 Init(amount + 1); in BuildDominators() 581 ASSERT(static_cast<size_t>(dfsNum_) == amount); in BuildDominators() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/ |
| D | cg_aarch64_aarch64_operand_test.cpp | 52 uint32 amount, int32 bitLen) in MyCreateExtendShiftOperand() argument 56 return *(memPool.New<ExtendShiftOperand>(op, amount, bitLen)); in MyCreateExtendShiftOperand()
|
| D | cg_cg_irbuilder_test.cpp | 44 …// test method:CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 bitLen, MemPool *… in TEST()
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | aot_resolve_string.md | 38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved… 51 …cing to an object in young space. That information allow to significantly reduce amount of scanned
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_resolve_string.md | 38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved… 51 …cing to an object in young space. That information allow to significantly reduce amount of scanned
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/01.type_arguments/ |
| D | malformed_parameterized_decl_not_same_params_number.sts | 19 desc: "malformed parameterized generics: wrong amount of type parameters"
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | monitor.yaml | 288 …Check that a thread owns a monitor if amount of executed monitorexit instructions is less than amo… 298 …Check that a thread does not own a monitor if amount of executed monitorexit instructions is the s… 299 amount of executed monitorenter instructions
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | barriers.cpp | 38 …// This conflict is solved by keeping alive weak reference. A small amount of floating garbage may… in Update() 56 …// This conflict is solved by keeping alive weak reference. A small amount of floating garbage may… in UpdateShared()
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | bc_ins_to_pandasm_ins.cpp.erb | 89 … "between amount of registers specified by instruction format and amount of function's arguments) "
|
| /arkcompiler/runtime_core/abc2program/common/ |
| D | abc_inst_convert.cpp.erb | 92 … "between amount of registers specified by instruction format and amount of function's arguments) "
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_irbuilder.cpp | 127 BitShiftOperand &OperandBuilder::CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 … in CreateBitShift() argument 130 return *mp->New<BitShiftOperand>(op, amount, bitLen); in CreateBitShift() 132 return *alloc.New<BitShiftOperand>(op, amount, bitLen); in CreateBitShift()
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/ |
| D | README.md | 10 * `PANDA_CTS_JOBS_NUMBER` - amount of parallel jobs for test execution. Default is 8. 62 -j, --jobs N Amount of concurrent jobs for test execution (default 8)
|
| /arkcompiler/runtime_core/tests/cts-generator/ |
| D | README.md | 10 * `PANDA_CTS_JOBS_NUMBER` - amount of parallel jobs for test execution. Default is 8. 62 -j, --jobs N Amount of concurrent jobs for test execution (default 8)
|
| /arkcompiler/toolchain/build/toolchain/ |
| D | concurrent_links.gni | 26 # The default to use varies by platform and by the amount of memory
|
| /arkcompiler/runtime_core/static_core/runtime/mem/ |
| D | heap_manager.h | 126 // Returns the maximum amount of memory a program can consume. 132 // Returns approximate amount of memory currently consumed by an application.
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | cg_irbuilder.h | 92 …BitShiftOperand &CreateBitShift(BitShiftOperand::ShiftOp op, uint32 amount, uint32 bitLen, MemPool…
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | instruction_combine.cpp | 1033 …// 63: The '63' here is used as a mask to limit the shift amount to 0-63 bits, preventing overflow. in ReduceWord64Lsr() 1047 …// 31: The '31' here is used as a mask to limit the shift amount to 0-31 bits, preventing overflow. in ReduceWord32Lsr() 1072 …// 63: The '63' here is used as a mask to limit the shift amount to 0-63 bits, preventing overflow. in ReduceWord64Asr() 1086 …// 31: The '31' here is used as a mask to limit the shift amount to 0-31 bits, preventing overflow. in ReduceWord32Asr() 1092 // Check if the right shift amount is 31 (logical shift by 31 bits). in ReduceWord32Asr() 1098 // Check if the right shift amount is 24 (logical shift by 24 bits). in ReduceWord32Asr() 1118 // Check if the right shift amount is in the range of 1 to 63 bits (inclusive). in ReduceWord64Lsl() 1142 // Check if the right shift amount is in the range of 1 to 31 bits (inclusive). in ReduceWord32Lsl()
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| D | llvmbackend.yaml | 131 to specify amount of parallel compilation threads. Value 0 allows to check available
|
| /arkcompiler/runtime_core/libpandabase/mem/ringbuf/ |
| D | lock_free_ring_buffer.h | 26 …* Lock-free single-producer single-consumer ring-buffer. Push can take infinite amount of time if …
|