Searched refs:BranchIf (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/compiler/ |
D | code-assembler.h | 358 void BranchIf(Node* condition, Label* if_true, Label* if_false); 361 void BranchIf##name(Node* a, Node* b, Label* if_true, Label* if_false) { \ 362 BranchIf(name(a, b), if_true, if_false); \
|
D | code-assembler.cc | 302 void CodeAssembler::BranchIf(Node* condition, Label* if_true, Label* if_false) { in BranchIf() function in v8::internal::compiler::CodeAssembler
|
/external/v8/src/ |
D | code-stub-assembler.h | 94 BranchIf(SmiLessThan(a, b), if_true, if_false); in BranchIfSmiLessThan() 99 BranchIf(SmiLessThanOrEqual(a, b), if_true, if_false); in BranchIfSmiLessThanOrEqual()
|
D | code-stubs.cc | 3285 assembler->BranchIf(assembler->Uint32LessThan(lhs_value, rhs_value), in GenerateStringRelationalComparison()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 525 BranchIf(condition, &match, &no_match); in JumpConditional() 681 BranchIf(counter_reached_max, &counter_saturated, &counter_ok); in TraceBytecodeDispatch()
|
D | interpreter.cc | 1457 __ BranchIf(fast_clone_properties_count, &if_fast_clone, &if_not_fast_clone); in DoCreateObjectLiteral() local 1529 __ BranchIf(compare, &if_duplicate_parameters, &if_not_duplicate_parameters); in DoCreateMappedArguments() local 1585 __ BranchIf(interrupt, &stack_check_interrupt, &ok); in DoStackCheck() local 1695 __ BranchIf(condition, &if_fast, &if_slow); in DoForInNext() local
|