Searched refs:EmitJump (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/interpreter/ |
D | control-flow-builders.h | 46 void Break() { EmitJump(&break_labels_); } in Break() 55 void EmitJump(BytecodeLabels* labels); 98 void Continue() { EmitJump(&continue_labels_); } in Continue()
|
D | bytecode-array-writer.h | 65 void EmitJump(BytecodeNode* node, BytecodeLabel* label); in NON_EXPORTED_BASE()
|
D | bytecode-array-writer.cc | 66 EmitJump(node, label); in WriteJump() 283 void BytecodeArrayWriter::EmitJump(BytecodeNode* node, BytecodeLabel* label) { in EmitJump() function in v8::internal::interpreter::BytecodeArrayWriter
|
D | control-flow-builders.cc | 21 void BreakableControlFlowBuilder::EmitJump(BytecodeLabels* sites) { in EmitJump() function in v8::internal::interpreter::BreakableControlFlowBuilder
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 43 EmitJump(not_carry, target, near_jump); // Always taken before patched. in EmitJumpIfNotSmi() 50 EmitJump(carry, target, near_jump); // Never taken before patched. in EmitJumpIfSmi() 68 void EmitJump(Condition cc, Label* target, Label::Distance near_jump) { in EmitJump() function in v8::internal::BASE_EMBEDDED
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 41 EmitJump(not_carry, target, distance); // Always taken before patched. in EmitJumpIfNotSmi() 48 EmitJump(carry, target, distance); // Never taken before patched. in EmitJumpIfSmi() 66 void EmitJump(Condition cc, Label* target, Label::Distance distance) { in EmitJump() function in v8::internal::BASE_EMBEDDED
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 41 EmitJump(not_carry, target, distance); // Always taken before patched. in EmitJumpIfNotSmi() 48 EmitJump(carry, target, distance); // Never taken before patched. in EmitJumpIfSmi() 66 void EmitJump(Condition cc, Label* target, Label::Distance distance) { in EmitJump() function in v8::internal::BASE_EMBEDDED
|