Home
last modified time | relevance | path

Searched refs:formats (Results 1 – 25 of 27) sorted by relevance

12

/arkcompiler/ets_frontend/ts2panda/src/
Ddebuginfo.ts237 let formats = irnode.getFormats();
238 for (let i = 0; i < formats[0].length; i++) {
240 for (let j = 0; j < formats.length; j++) {
242 if ((<VReg>irnode.operands[i]).num < (1 << formats[j][i][1])) {
263 let formats = irnode.getFormats()[formatIndex]; variable
265 for (let i = 0; i < formats.length; i++) {
267 length += formats[0][1] / 8; // 8 indicates that one byte is composed of 8 bits
268 length += formats[1][1] / 8;
272 length += (formats[i][1] / 8);
DregAllocator.ts170 let formats = irNodes[i].getFormats();
181 let minFormat = formats[0];
182 for (let j = 0; j < formats.length; ++j) {
183 let num = this.getNumOfInvalidVregs(operands, formats[j]);
185 minFormat = formats[j];
220 let formats = irNodes[i].getFormats();
234 for (let j = 0; j < formats.length; ++j) {
235 let num = this.getNumOfInvalidVregs(operands, formats[j]);
DassemblyDumper.ts102 let formats = node.getFormats();
108 let format = formats[0];
/arkcompiler/ets_frontend/es2panda/compiler/templates/
Dformats.h.erb59 % formats = group.map {|i| make_format(i,insn) }
61 % formats.each.with_index do |fmt, index|
74 constexpr std::array<const Format, <%= formats.length %>> <%= get_format_name(mnemonic) %> = {{
75 % format_items = (0..(formats.length - 1)).map {|index| "{" + get_format_item_name(mnemonic, index)…
Disa.h.erb29 #include <gen/formats.h>
/arkcompiler/ets_runtime/script/
Dbuild_resource_to_cpp.py38 formats = ","
43 byte_code = formats.join(seq);
/arkcompiler/runtime_core/libpandafile/templates/
Dbytecode_instruction-inl_gen.h.erb20 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
39 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
58 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
77 % Panda::formats.each do |fmt|
93 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
127 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
159 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
188 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
220 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
251 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
[all …]
Dbytecode_emitter_def_gen.h.erb19 % # formats = group.map(&:format)
Dbytecode_instruction_enum_gen.h.erb17 % Panda::formats.each do |fmt|
Dbytecode_emitter_gen.h.erb22 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
60 % formats = group.map(&:format)
/arkcompiler/ets_frontend/es2panda/compiler/core/
DregAllocator.h87 Formats formats = ins->GetFormats(); variable
89 for (const auto &format : formats) {
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp110 static Format MatchFormat(const IRNode *node, const Formats &formats) in MatchFormat() argument
116 const auto *iter = formats.begin(); in MatchFormat()
118 for (; iter != formats.end(); iter++) { in MatchFormat()
139 Formats formats = node->GetFormats(); in GetIRNodeWholeLength() local
140 if (formats.empty()) { in GetIRNodeWholeLength()
146 const auto format = MatchFormat(node, formats); in GetIRNodeWholeLength()
/arkcompiler/runtime_core/isa/templates/
Disa.md.erb32 * formats: <%= i.format.join(", ") %>
/arkcompiler/runtime_core/libpandafile/templates/tests/
Dbytecode_emitter_tests_gen.h.erb38 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
97 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
172 % formats = group.map(&:format)
238 % formats = group.map(&:format)
/arkcompiler/runtime_core/disassembler/templates/
Dget_ins_info.cpp.erb45 % Panda::formats.each do |fmt|
Dbc_ins_to_pandasm_ins.cpp.erb29 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
/arkcompiler/runtime_core/assembler/templates/
Dins_to_string.cpp.erb32 % formats = group.map(&:format)
Disa.h.erb19 % formats = group.map(&:format)
Dopcode_parsing.h.erb29 % formats = group.map(&:format)
/arkcompiler/ets_frontend/ts2panda/templates/
Dirnodes.ts.erb276 % formats = group.map {|i| make_format(i,insn) }
281 <%= formats.join(",\n ") %>
/arkcompiler/runtime_core/isa/
Disapi.rb551 def formats method
/arkcompiler/ets_frontend/es2panda/
DCMakeLists.txt33 formats.h.erb
DBUILD.gn347 "formats.h.erb",
/arkcompiler/runtime_core/docs/
Dassembly_format.md315 … instructions, one instruction defined per line. Instruction opcodes and formats follow [Bytecode …
/arkcompiler/ets_frontend/test262/
Dintl_tests.txt93 intl402/DateTimeFormat/required-date-time-formats.js

12