Home
last modified time | relevance | path

Searched refs:EmitJump (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/interpreter/
Dcontrol-flow-builders.h45 void Break() { EmitJump(&break_sites_); } in Break()
52 void EmitJump(ZoneVector<BytecodeLabel>* labels);
53 void EmitJump(ZoneVector<BytecodeLabel>* labels, int index);
100 void Continue() { EmitJump(&continue_sites_); } in Continue()
140 void DefaultAt(int index) { EmitJump(&case_sites_, index); } in DefaultAt()
Dcontrol-flow-builders.cc22 void BreakableControlFlowBuilder::EmitJump(ZoneVector<BytecodeLabel>* sites) { in EmitJump() function in v8::internal::interpreter::BreakableControlFlowBuilder
56 void BreakableControlFlowBuilder::EmitJump(ZoneVector<BytecodeLabel>* sites, in EmitJump() function in v8::internal::interpreter::BreakableControlFlowBuilder
/external/v8/test/unittests/compiler/
Dinstruction-sequence-unittest.cc122 result = EmitJump(); in EndBlock()
126 result = EmitJump(); in EndBlock()
313 Instruction* InstructionSequenceTest::EmitJump() { in EmitJump() function in v8::internal::compiler::InstructionSequenceTest
Dinstruction-sequence-unittest.h191 Instruction* EmitJump();
/external/v8/src/full-codegen/x87/
Dfull-codegen-x87.cc39 EmitJump(not_carry, target, distance); // Always taken before patched. in EmitJumpIfNotSmi()
46 EmitJump(carry, target, distance); // Never taken before patched. in EmitJumpIfSmi()
64 void EmitJump(Condition cc, Label* target, Label::Distance distance) { in EmitJump() function in v8::internal::BASE_EMBEDDED
/external/v8/src/full-codegen/ia32/
Dfull-codegen-ia32.cc39 EmitJump(not_carry, target, distance); // Always taken before patched. in EmitJumpIfNotSmi()
46 EmitJump(carry, target, distance); // Never taken before patched. in EmitJumpIfSmi()
64 void EmitJump(Condition cc, Label* target, Label::Distance distance) { in EmitJump() function in v8::internal::BASE_EMBEDDED
/external/v8/src/full-codegen/x64/
Dfull-codegen-x64.cc38 EmitJump(not_carry, target, near_jump); // Always taken before patched. in EmitJumpIfNotSmi()
45 EmitJump(carry, target, near_jump); // Never taken before patched. in EmitJumpIfSmi()
63 void EmitJump(Condition cc, Label* target, Label::Distance near_jump) { in EmitJump() function in v8::internal::BASE_EMBEDDED