Home
last modified time | relevance | path

Searched defs:Cmpb (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp317 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_FIRST), rax); in JSProxyCallInternalWithArgV() local
319 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_LAST), rax); in JSProxyCallInternalWithArgV() local
325 __ Cmpb(static_cast<uint8_t>(JSType::JS_BOUND_FUNCTION), rax); // IsBoundFunction in JSProxyCallInternalWithArgV() local
327 __ Cmpb(static_cast<uint8_t>(JSType::JS_PROXY), rax); // IsJsProxy in JSProxyCallInternalWithArgV() local
577 __ Cmpb(static_cast<uint8_t>(JSType::JS_BOUND_FUNCTION), rax); // IsBoundFunction in GenJSCall() local
579 __ Cmpb(static_cast<uint8_t>(JSType::JS_PROXY), rax); // IsJsProxy in GenJSCall() local
797 __ Cmpb(static_cast<uint8_t>(JSType::JS_BOUND_FUNCTION), rax); // IsBoundFunction in ConstructorJSCall() local
799 __ Cmpb(static_cast<uint8_t>(JSType::JS_PROXY), rax); // IsJsProxy in ConstructorJSCall() local
877 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_FIRST), rax); in JSCallCheck() local
879 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_LAST), rax); in JSCallCheck() local
Dasm_interpreter_call.cpp148 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_FIRST), bitFieldRegister); in AsmInterpEntryDispatch() local
150 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_LAST), bitFieldRegister); in AsmInterpEntryDispatch() local
1009 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_LAST), temp); in ResumeRspAndDispatch() local
1011 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_FIRST), temp); in ResumeRspAndDispatch() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
Dassembler_x64.cpp183 void AssemblerX64::Cmpb(Immediate src, Register dst) in Cmpb() function in panda::ecmascript::x64::AssemblerX64