Searched refs:primary (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | bytecodes.h | 290 uint8_t primary = ReadByte(pc); in GetOpcode() local 291 if (primary >= MIN_PREFIX_OPCODE_INDEX) { in GetOpcode() 293 return static_cast<EcmaOpcode>((secondary << 8U) | primary); // 8: byte size in GetOpcode() 295 return static_cast<EcmaOpcode>(primary); in GetOpcode() 300 uint8_t primary = ReadByte(pc); in GetBytecodeMetaData() local 301 if (primary >= MIN_PREFIX_OPCODE_INDEX) { in GetBytecodeMetaData() 303 if (primary == CALLRUNTIME_PREFIX_OPCODE_INDEX) { in GetBytecodeMetaData() 305 } else if (primary == DEPRECATED_PREFIX_OPCODE_INDEX) { in GetBytecodeMetaData() 307 } else if (primary == WIDE_PREFIX_OPCODE_INDEX) { in GetBytecodeMetaData() 310 ASSERT(primary == THROW_PREFIX_OPCODE_INDEX); in GetBytecodeMetaData() [all …]
|
D | circuit_ir_specification.md | 43 … only primary types. All primary types are `NOVALUE` `I1` `I8` `I16` `INT32` `INT64` `F32` `F64`. … 47 Validation rules of primary type are already builtin for Circuit IR. Validation rules of secondary … 65 …pe inference is required. Circuit IR verifier will verify consistency of primary types. Secondary … 83 * `FLEX` means flexible primary type of output value (could be `ARCH`).
|
/arkcompiler/runtime_core/libpandafile/templates/ |
D | bytecode_instruction-inl_gen.h.erb | 307 uint8_t primary = GetPrimaryOpcode(); 308 …if (primary >= <%= Panda::prefixes.map(&:opcode_idx).min %>) { // NOLINT(readability-magic-number… 310 …return static_cast<BytecodeInst::Opcode>((secondary << 8U) | primary); // NOLINT(hicpp-signed-bit… 312 return static_cast<BytecodeInst::Opcode>(primary);
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/ |
D | old_instruction.h | 32 uint8_t primary = ReadByte(0); in GetOpcode() local 33 if (primary >= 236) { // 236: second level bytecode index in GetOpcode() 35 return static_cast<Opcode>((secondary << 8U) | primary); in GetOpcode() 37 return static_cast<Opcode>(primary); in GetOpcode()
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …primary===t.primary&&e.originalPath===t.originalPath},e.hasChangesInResolutions=function(t,r,n,i){… property
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 101551 this.primary = !1; 101570 this.m_registers[i][s].primary = !0; 101575 this.m_registers[s][i].primary = !1; 101597 o.primary ? n.Reset(t, e, i, s) : n.Reset(i, s, t, e);
|