Searched refs:IsJump (Results 1 – 19 of 19) sorted by relevance
61 DCHECK(!Bytecodes::IsJump(node->bytecode())); in Write()68 DCHECK(Bytecodes::IsJump(node->bytecode())); in WriteJump()323 DCHECK(Bytecodes::IsJump(jump_bytecode)); in PatchJump()341 DCHECK(Bytecodes::IsJump(node->bytecode())); in EmitJump()
279 return IsJump(bytecode) && !IsJumpIfToBoolean(bytecode); in IsJumpWithoutEffects()442 bool Bytecodes::IsJump(Bytecode bytecode) { in IsJump() function in v8::internal::interpreter::Bytecodes532 return bytecode == Bytecode::kReturn || IsJump(bytecode); in IsJumpOrReturn()
248 if (Bytecodes::IsJump(node->bytecode()) || in Write()
576 static bool IsJump(Bytecode bytecode);
861 if (stmt->IsJump()) break; in VisitStatements()
26 if (interpreter::Bytecodes::IsJump(bytecode)) { in Analyze()
63 DCHECK(last->IsRet() || last->IsJump()); in MarkDeConstruction()
325 instr->IsRet() || instr->IsJump()); in AssembleInstruction()326 if (instr->IsJump() && block->must_deconstruct_frame()) { in AssembleInstruction()
874 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; } in IsJump() function
241 virtual bool IsJump() const { return false; } in IsJump() function459 bool IsJump() const override { in IsJump() function460 return !statements_.is_empty() && statements_.last()->IsJump() in IsJump()939 bool IsJump() const override { return expression_->IsThrow(); } in IsJump() function952 bool IsJump() const final { return true; } in IsJump() function1127 bool IsJump() const override { in IsJump() function1128 return HasThenStatement() && then_statement()->IsJump() in IsJump()1129 && HasElseStatement() && else_statement()->IsJump(); in IsJump()
807 if (stmt->IsJump()) break; in VisitStatements()861 if (stmt->IsJump()) break; in VisitStatements()
120 if (stmt->IsJump()) break; in VisitStatements()224 if (stmts->is_empty() || stmts->last()->IsJump()) { in VisitSwitchStatement()
4847 if (stmt->IsJump()) break; in VisitStatements()
1101 static bool IsJump(Instr instr);
570 bool Assembler::IsJump(Instr instr) { in IsJump() function in v8::internal::Assembler
1166 static bool IsJump(Instr instr);
546 bool Assembler::IsJump(Instr instr) { in IsJump() function in v8::internal::Assembler
150 if (stmt->IsJump()) break; in VisitStatements()
14476 if (interpreter::Bytecodes::IsJump(iterator.current_bytecode())) { in Disassemble()