Searched refs:IsJump (Results 1 - 20 of 20) sorted by relevance

/external/v8/src/interpreter/
H A Dbytecode-peephole-optimizer.cc163 DCHECK(!Bytecodes::IsJump(node->bytecode()));
172 DCHECK(!Bytecodes::IsJump(node->bytecode()));
180 DCHECK(!Bytecodes::IsJump(node->bytecode()));
190 DCHECK(!Bytecodes::IsJump(node->bytecode()));
205 DCHECK(!Bytecodes::IsJump(node->bytecode()));
217 DCHECK(!Bytecodes::IsJump(node->bytecode()));
235 DCHECK(!Bytecodes::IsJump(node->bytecode()));
244 DCHECK(!Bytecodes::IsJump(node->bytecode()));
260 DCHECK(!Bytecodes::IsJump(node->bytecode()));
274 DCHECK(!Bytecodes::IsJump(nod
[all...]
H A Dmkpeephole.cc91 if (Bytecodes::IsJump(current)) {
220 if (Bytecodes::IsJump(current)) {
231 if (Bytecodes::IsJump(current)) {
H A Dbytecode-array-writer.cc57 DCHECK(!Bytecodes::IsJump(node->bytecode()));
64 DCHECK(Bytecodes::IsJump(node->bytecode()));
266 DCHECK(Bytecodes::IsJump(jump_bytecode));
284 DCHECK(Bytecodes::IsJump(node->bytecode()));
H A Dbytecode-register-optimizer.h51 if (Bytecodes::IsJump(bytecode) || bytecode == Bytecode::kDebugger ||
H A Dbytecodes.h580 static constexpr bool IsJump(Bytecode bytecode) { function in class:v8::internal::interpreter::Bytecode::final
593 return bytecode == Bytecode::kReturn || IsJump(bytecode);
600 return IsJump(bytecode) && !IsJumpIfToBoolean(bytecode);
H A Dbytecode-array-builder.cc260 DCHECK(Bytecodes::IsJump(Bytecode::k##name)); \
H A Dbytecode-generator.cc1035 if (stmt->IsJump()) break;
/external/v8/src/compiler/
H A Dframe-elider.cc65 DCHECK(last->IsRet() || last->IsJump());
H A Dcode-generator.cc413 instr->IsRet() || instr->IsJump());
414 if (instr->IsJump() && block->must_deconstruct_frame()) {
H A Dinstruction.h906 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; }
/external/v8/src/ast/
H A Dast.h233 bool IsJump() const;
451 bool IsJump() const { function in class:v8::internal::final
452 return !statements_.is_empty() && statements_.last()->IsJump()
849 bool IsJump() const { return expression_->IsThrow(); } function in class:v8::internal::final
863 bool IsJump() const { return true; } function in class:v8::internal::JumpStatement
1030 bool IsJump() const { function in class:v8::internal::final
1031 return HasThenStatement() && then_statement()->IsJump()
1032 && HasElseStatement() && else_statement()->IsJump();
3010 if (stmt->IsJump()) break;
H A Dast.cc169 bool Statement::IsJump() const { function in class:v8::internal::Statement
180 return static_cast<const Node*>(this)->IsJump();
H A Dast-traversal-visitor.h119 if (stmt->IsJump()) break;
/external/v8/src/crankshaft/
H A Dtyping.cc120 if (stmt->IsJump()) break;
225 if (stmts->is_empty() || stmts->last()->IsJump()) {
H A Dhydrogen.cc4225 if (stmt->IsJump()) break;
/external/v8/src/mips/
H A Dassembler-mips.h1107 static bool IsJump(Instr instr);
H A Dassembler-mips.cc572 bool Assembler::IsJump(Instr instr) { function in class:v8::internal::Assembler
/external/v8/src/mips64/
H A Dassembler-mips64.h1169 static bool IsJump(Instr instr);
H A Dassembler-mips64.cc549 bool Assembler::IsJump(Instr instr) { function in class:v8::internal::Assembler
/external/v8/src/
H A Dobjects.cc14672 if (interpreter::Bytecodes::IsJump(iterator.current_bytecode())) {

Completed in 1611 milliseconds