Searched refs:EmitJump (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/interpreter/ |
D | control-flow-builders.h | 45 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()
|
D | control-flow-builders.cc | 22 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/ |
D | instruction-sequence-unittest.cc | 122 result = EmitJump(); in EndBlock() 126 result = EmitJump(); in EndBlock() 313 Instruction* InstructionSequenceTest::EmitJump() { in EmitJump() function in v8::internal::compiler::InstructionSequenceTest
|
D | instruction-sequence-unittest.h | 191 Instruction* EmitJump();
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 39 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/ |
D | full-codegen-ia32.cc | 39 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/ |
D | full-codegen-x64.cc | 38 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
|