Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Dasm_interpreter_call.cpp143 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_FIRST), bitFieldRegister); in AsmInterpEntryDispatch() local
145 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_LAST), bitFieldRegister); in AsmInterpEntryDispatch() local
1120 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_LAST), temp); in ResumeRspAndDispatch() local
1122 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_FIRST), temp); in ResumeRspAndDispatch() local
1314 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_LAST), temp); in ResumeRspAndReturnBaseline() local
1316 __ Cmpb(static_cast<int32_t>(JSType::ECMA_OBJECT_FIRST), temp); in ResumeRspAndReturnBaseline() local
Doptimized_call.cpp427 __ Cmpb(static_cast<uint8_t>(JSType::JS_BOUND_FUNCTION), rax); // IsBoundFunction in GenJSCall() local
429 __ Cmpb(static_cast<uint8_t>(JSType::JS_PROXY), rax); // IsJsProxy in GenJSCall() local
855 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_FIRST), rax); in JSCallCheck() local
857 __ Cmpb(static_cast<int32_t>(JSType::JS_FUNCTION_LAST), rax); in JSCallCheck() 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