| /arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/ |
| D | old_instruction.h | 1325 return ((Flags::ACC_READ) & flag) == flag; in HasFlag() 1327 return ((Flags::ACC_READ) & flag) == flag; in HasFlag() 1329 return ((Flags::ACC_READ) & flag) == flag; in HasFlag() 1331 return ((Flags::ACC_WRITE | Flags::ACC_READ) & flag) == flag; in HasFlag() 1333 return ((Flags::FLOAT | Flags::ACC_WRITE | Flags::ACC_READ) & flag) == flag; in HasFlag() 1335 return ((Flags::FLOAT | Flags::ACC_WRITE | Flags::ACC_READ) & flag) == flag; in HasFlag() 1343 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1345 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1347 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() 1349 return ((Flags::JUMP | Flags::CONDITIONAL | Flags::ACC_READ) & flag) == flag; in HasFlag() [all …]
|
| D | old_instruction_enum.h | 477 ACC_READ = 0x20000, enumerator
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | instructions.yaml | 57 flags: [acc_write, acc_read, ifcvt] 81 flags: [acc_write, acc_read, ifcvt] 89 flags: [commutative, acc_write, acc_read, ifcvt] 97 flags: [acc_write, acc_read, ifcvt] 105 flags: [commutative, acc_write, acc_read, ifcvt] 113 flags: [acc_write, acc_read] 121 flags: [acc_write, acc_read] 143 flags: [acc_write, acc_read, ifcvt] 151 flags: [acc_write, acc_read, ifcvt] 159 flags: [acc_write, acc_read, ifcvt] [all …]
|
| D | inst.cpp | 589 return GetFlag(inst_flags::ACC_READ); in IsAccRead()
|
| /arkcompiler/runtime_core/isa/ |
| D | ChangeLog.md | 5 + ISAPI: removed acc_none, acc_read, acc_write properties in favor of Instruction::acc_none?, 6 Instruction::acc_read?, Instruction::acc_write? properties
|
| D | isapi.rb | 203 add_props << 'acc_read' if acc_read? 211 if p != 'acc_write' && p != 'acc_read' && p != 'acc_none' 216 filter << 'acc_read' if acc_read? 251 def acc_read? 496 OpenStruct.new(tag: 'acc_read', description: 'Use accumulator as a first source operand.'),
|
| D | isa.yaml | 279 - acc_read 369 - acc_read 409 - acc_read 519 - acc_read 625 - acc_read 714 - acc_read 750 - acc_read 771 - acc_read 833 - acc_read 974 - acc_read [all …]
|
| D | asserts.rb | 95 (uses - defs - ['acc_read', 'acc_write', 'acc_none']).size 133 i.acc_none? == !(i.acc_read? || i.acc_write?)
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | fldarr.32.yaml | 43 properties: [acc_read, acc_write, float] 65 properties: [acc_read, acc_write, float] 187 properties: [acc_read, acc_write, float] 233 properties: [acc_read, acc_write, float] 280 properties: [acc_read, acc_write, float] 339 properties: [acc_read, acc_write, float] 417 properties: [acc_read, acc_write, float] 491 properties: [acc_read, acc_write, float] 620 properties: [acc_read, acc_write, float] 644 properties: [acc_read, acc_write, float] [all …]
|
| D | fldarr.64.yaml | 43 properties: [acc_read, acc_write, float] 65 properties: [acc_read, acc_write, float] 187 properties: [acc_read, acc_write, float] 232 properties: [acc_read, acc_write, float] 279 properties: [acc_read, acc_write, float] 338 properties: [acc_read, acc_write, float] 416 properties: [acc_read, acc_write, float] 491 properties: [acc_read, acc_write, float] 620 properties: [acc_read, acc_write, float] 644 properties: [acc_read, acc_write, float] [all …]
|
| D | fstarr.32.yaml | 41 properties: [acc_read, float] 51 properties: [acc_read, float] 87 properties: [acc_read, float] 126 properties: [acc_read, float] 1093 properties: [acc_read, float] 1119 properties: [acc_read, float]
|
| D | fstarr.64.yaml | 41 properties: [acc_read, float] 51 properties: [acc_read, float] 87 properties: [acc_read, float] 126 properties: [acc_read, float] 1096 properties: [acc_read, float] 1122 properties: [acc_read, float]
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | arrays-04.pa | 26 # properties: [acc_read, acc_write, float] 36 # properties: [acc_read, float]
|
| D | arrays-03.pa | 26 # properties: [acc_read, acc_write, float] 36 # properties: [acc_read, float]
|
| D | arrays-07.pa | 23 # - acc_read
|
| D | arrays-08.pa | 23 # - acc_read
|
| /arkcompiler/runtime_core/assembler/templates/ |
| D | isa.h.erb | 29 % flags << "InstFlags::ACC_READ" if insn.acc_read?
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/ |
| D | inst_builder_gen.cpp.erb | 259 % acc_read = inst.acc.include?("in") 287 % num_inputs = acc_read ? num_vregs + 2 : num_vregs + 1 376 % if acc_read 385 inst->SetFlag(compiler::inst_flags::ACC_READ);
|
| /arkcompiler/runtime_core/assembler/ |
| D | assembly-ins.h | 48 ACC_READ = (1U << 4U), enumerator 187 if (HasFlag(InstFlags::ACC_READ)) { in Uses()
|
| D | asm_isapi.rb | 74 insns << IR.new('STAX', ['InstFlags::PSEUDO', 'InstFlags::ACC_READ'], 0, [])
|
| /arkcompiler/runtime_core/docs/ |
| D | irtoc.md | 20 flags: [commutative, acc_write, acc_read, ifcvt]
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | bytecode_optimizer_isapi.rb | 104 if instruction.acc_read?
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_isa.yaml | 26 - acc_read
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | bytecodes.cpp | 25 if (inst.HasFlag(BytecodeInstruction::Flags::ACC_READ)) { in InitBytecodeMetaData()
|