Searched refs:ERR (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
H A D | operand.h | 136 ERR = 0xFFFF 144 {{ERR, AL, CL, DL, BL, SPL, BPL, SIL, DIL, R8B, R9B, R10B, R11B, R12B, R13B, R14B, R15B}, 145 {ERR, AH, CH, DH, BH}, 146 {ERR, AX, CX, DX, BX, SP, BP, SI, DI, R8W, R9W, R10W, R11W, R12W, R13W, R14W, R15W}, 147 {ERR, EAX, ECX, EDX, EBX, ESP, EBP, ESI, EDI, R8D, R9D, R10D, R11D, R12D, R13D, R14D, R15D, ERR, 149 {ERR, RAX, RCX, RDX, RBX, RSP, RBP, RSI, RDI, R8, R9, R10, R11, R12, R13, R14, R15, 151 {ERR, ERR, ERR, ER [all...] |
H A D | elf_assembler.h | 440 if (reg == ERR || GetRegSize(reg) != k8Bits) { in Need8BitRegPrefix() 464 Reg reg = mem.base != ERR ? mem.base : (mem.index != ERR ? mem.index : ERR); in HasAddrSizePrefix() 465 uint8 regSize = reg == ERR ? k64Bits : GetRegSize(reg); in HasAddrSizePrefix() 492 uint8 GetRex(const Mem &mem, Reg reg = ERR) const in GetRex() 494 uint8 rexW = (reg != ERR && GetRegSize(reg) == k64Bits) ? 8 : 0; in GetRex() 495 uint8 rexR = reg != ERR && IsRegExt(reg) ? 4 : 0; in GetRex() 496 uint8 rexX = mem.index != ERR && IsRegExt(mem.index) ? 2 : 0; in GetRex() 497 uint8 rexB = mem.base != ERR in GetRex() [all...] |
H A D | asm_assembler.h | 512 if (mem.base != ERR) { in EmitMem() 515 if (mem.index != ERR) { in EmitMem()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | mpl_logging.h | 53 // Level 4 (ERR) - These provide error messages. 58 // DBG and LOG are only for developers' use. INFO, WARN, ERR and FATAL are 59 // intended for general visibility. There is an additional type of ERR that 88 // Since INFO, WARN, ERR and FATAL are for general consumption, each message 93 // GDB,LOG,INFO,WARN,ERR,FATAL can be invoked as method. 109 // EmitLogForUser() - for INFO, WARN, ERR and FATAL 301 #define ERR(num, fmt, ...) \ macro
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | cg_phasemanager.cpp | 351 ERR(kLncErr, " %s open failed!", CGOptions::GetDuplicateAsmFile().c_str()); in EmitDuplicatedAsmFunc()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | mir_module.cpp | 367 ERR(kLncErr, "Cannot open %s", fileNameStr.c_str()); in DumpToFile()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | x64_emitter.cpp | 83 CHECK_FATAL(reg != Reg::ERR, "error reg"); in TransferReg() 139 mem.base = ERR; in TransferMem()
|
Completed in 9 milliseconds