HomeSort by relevance Sort by last modified time
    Searched refs:IsJump (Results 1 - 24 of 24) sorted by null

  /external/v8/src/interpreter/
bytecode-peephole-optimizer.cc 163 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(node->bytecode()))
    [all...]
mkpeephole.cc 91 if (Bytecodes::IsJump(current)) {
220 if (Bytecodes::IsJump(current)) {
231 if (Bytecodes::IsJump(current)) {
bytecode-array-writer.cc 57 DCHECK(!Bytecodes::IsJump(node->bytecode()));
64 DCHECK(Bytecodes::IsJump(node->bytecode()));
266 DCHECK(Bytecodes::IsJump(jump_bytecode));
284 DCHECK(Bytecodes::IsJump(node->bytecode()));
bytecode-register-optimizer.h 51 if (Bytecodes::IsJump(bytecode) || bytecode == Bytecode::kDebugger ||
bytecodes.h     [all...]
bytecode-array-builder.cc 260 DCHECK(Bytecodes::IsJump(Bytecode::k##name)); \
    [all...]
bytecode-generator.cc     [all...]
  /external/v8/src/compiler/
frame-elider.cc 65 DCHECK(last->IsRet() || last->IsJump());
code-generator.cc 413 instr->IsRet() || instr->IsJump());
414 if (instr->IsJump() && block->must_deconstruct_frame()) {
    [all...]
instruction.h 906 bool IsJump() const { return arch_opcode() == ArchOpcode::kArchJmp; }
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arch.go 39 IsJump func(word string) bool
180 IsJump: jumpX86,
231 IsJump: jumpArm,
315 IsJump: jumpArm64,
381 IsJump: jumpPPC64,
437 IsJump: jumpMIPS,
494 IsJump: jumpMIPS,
547 IsJump: jumpS390x,
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arch.go 39 IsJump func(word string) bool
180 IsJump: jumpX86,
231 IsJump: jumpArm,
315 IsJump: jumpArm64,
381 IsJump: jumpPPC64,
437 IsJump: jumpMIPS,
494 IsJump: jumpMIPS,
547 IsJump: jumpS390x,
  /external/v8/src/ast/
ast.h 233 bool IsJump() const;
451 bool IsJump() const {
452 return !statements_.is_empty() && statements_.last()->IsJump()
849 bool IsJump() const { return expression_->IsThrow(); }
863 bool IsJump() const { return true; }
1030 bool IsJump() const {
1031 return HasThenStatement() && then_statement()->IsJump()
1032 && HasElseStatement() && else_statement()->IsJump();
    [all...]
ast.cc 169 bool Statement::IsJump() const {
180 return static_cast<const Node*>(this)->IsJump();
    [all...]
ast-traversal-visitor.h 119 if (stmt->IsJump()) break;
  /external/v8/src/crankshaft/
typing.cc 120 if (stmt->IsJump()) break;
225 if (stmts->is_empty() || stmts->last()->IsJump()) {
hydrogen.cc     [all...]
  /external/v8/src/mips/
assembler-mips.h     [all...]
assembler-mips.cc 572 bool Assembler::IsJump(Instr instr) {
    [all...]
  /external/v8/src/mips64/
assembler-mips64.h     [all...]
assembler-mips64.cc 549 bool Assembler::IsJump(Instr instr) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 43 isJump bool // Instruction being assembled is a jump.
201 p.isJump = p.arch.IsJump(word)
204 if !p.isJump && addr.Reg < 0 { // Jumps refer to PC, a pseudo.
209 if p.isJump {
579 if prefix == 0 && p.isJump {
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 43 isJump bool // Instruction being assembled is a jump.
201 p.isJump = p.arch.IsJump(word)
204 if !p.isJump && addr.Reg < 0 { // Jumps refer to PC, a pseudo.
209 if p.isJump {
579 if prefix == 0 && p.isJump {
  /external/v8/src/
objects.cc     [all...]

Completed in 1452 milliseconds