Searched refs:Distance (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/ |
D | assembler_x64.h | 115 void Jmp(Label *target, Distance distance = Distance::Far); 130 void Ja(Label *target, Distance distance = Distance::Far); 131 void Jb(Label *target, Distance distance = Distance::Far); 132 void Jz(Label *target, Distance distance = Distance::Far); 133 void Je(Label *target, Distance distance = Distance::Far); 134 void Jg(Label *target, Distance distance = Distance::Far); 135 void Jge(Label *target, Distance distance = Distance::Far); 136 void Jne(Label *target, Distance distance = Distance::Far); 137 void Jbe(Label *target, Distance distance = Distance::Far); 138 void Jnz(Label *target, Distance distance = Distance::Far); [all …]
|
D | assembler_x64.cpp | 554 void AssemblerX64::Jmp(Label *target, Distance distance) in Jmp() 564 if (distance == Distance::Near) { in Jmp() 608 void AssemblerX64::Ja(Label *target, Distance distance) in Ja() 617 if (distance == Distance::Near) { in Ja() 640 void AssemblerX64::Jb(Label *target, Distance distance) in Jb() 649 if (distance == Distance::Near) { in Jb() 671 void AssemblerX64::Jz(Label *target, Distance distance) in Jz() 680 if (distance == Distance::Near) { in Jz() 703 void AssemblerX64::Je(Label *target, Distance distance) in Je() 712 if (distance == Distance::Near) { in Je() [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/ |
D | assembler.h | 88 enum Distance { enum
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/ |
D | asm_interpreter_call.cpp | 812 __ Jz(&aligned, Distance::Near); in CallNativeWithArgv() 830 __ Jz(&aligneThrow, Distance::Near); in CallNativeWithArgv()
|