Home
last modified time | relevance | path

Searched refs:IsJump (Results 1 – 19 of 19) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-writer.cc61 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()
Dbytecodes.cc279 return IsJump(bytecode) && !IsJumpIfToBoolean(bytecode); in IsJumpWithoutEffects()
442 bool Bytecodes::IsJump(Bytecode bytecode) { in IsJump() function in v8::internal::interpreter::Bytecodes
532 return bytecode == Bytecode::kReturn || IsJump(bytecode); in IsJumpOrReturn()
Dbytecode-register-optimizer.cc248 if (Bytecodes::IsJump(node->bytecode()) || in Write()
Dbytecodes.h576 static bool IsJump(Bytecode bytecode);
Dbytecode-generator.cc861 if (stmt->IsJump()) break; in VisitStatements()
/external/v8/src/compiler/
Dbytecode-branch-analysis.cc26 if (interpreter::Bytecodes::IsJump(bytecode)) { in Analyze()
Dframe-elider.cc63 DCHECK(last->IsRet() || last->IsJump()); in MarkDeConstruction()
Dcode-generator.cc325 instr->IsRet() || instr->IsJump()); in AssembleInstruction()
326 if (instr->IsJump() && block->must_deconstruct_frame()) { in AssembleInstruction()
Dinstruction.h874 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; } in IsJump() function
/external/v8/src/ast/
Dast.h241 virtual bool IsJump() const { return false; } in IsJump() function
459 bool IsJump() const override { in IsJump() function
460 return !statements_.is_empty() && statements_.last()->IsJump() in IsJump()
939 bool IsJump() const override { return expression_->IsThrow(); } in IsJump() function
952 bool IsJump() const final { return true; } in IsJump() function
1127 bool IsJump() const override { in IsJump() function
1128 return HasThenStatement() && then_statement()->IsJump() in IsJump()
1129 && HasElseStatement() && else_statement()->IsJump(); in IsJump()
Dast.cc807 if (stmt->IsJump()) break; in VisitStatements()
861 if (stmt->IsJump()) break; in VisitStatements()
/external/v8/src/crankshaft/
Dtyping.cc120 if (stmt->IsJump()) break; in VisitStatements()
224 if (stmts->is_empty() || stmts->last()->IsJump()) { in VisitSwitchStatement()
Dhydrogen.cc4847 if (stmt->IsJump()) break; in VisitStatements()
/external/v8/src/mips/
Dassembler-mips.h1101 static bool IsJump(Instr instr);
Dassembler-mips.cc570 bool Assembler::IsJump(Instr instr) { in IsJump() function in v8::internal::Assembler
/external/v8/src/mips64/
Dassembler-mips64.h1166 static bool IsJump(Instr instr);
Dassembler-mips64.cc546 bool Assembler::IsJump(Instr instr) { in IsJump() function in v8::internal::Assembler
/external/v8/src/wasm/
Dasm-wasm-builder.cc150 if (stmt->IsJump()) break; in VisitStatements()
/external/v8/src/
Dobjects.cc14476 if (interpreter::Bytecodes::IsJump(iterator.current_bytecode())) { in Disassemble()