Searched refs:true_branch (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/ |
D | hydrogen.h | 974 HIfContinuation(HBasicBlock* true_branch, in HIfContinuation() argument 976 : continuation_captured_(true), true_branch_(true_branch), in HIfContinuation() 980 void Capture(HBasicBlock* true_branch, in Capture() argument 983 true_branch_ = true_branch; in Capture() 988 void Continue(HBasicBlock** true_branch, in Continue() argument 991 *true_branch = true_branch_; in Continue() 1002 HBasicBlock* true_branch() const { return true_branch_; } in true_branch() function
|
D | hydrogen.cc | 891 builder()->GotoNoSimulate(true_block, continuation->true_branch()); in JoinContinuation() 4063 HBasicBlock* true_branch = NULL; in ReturnContinuation() local 4065 continuation->Continue(&true_branch, &false_branch); in ReturnContinuation() 4069 owner()->set_current_block(true_branch); in ReturnContinuation() 4071 HBasicBlock* join = owner()->CreateJoin(true_branch, false_branch, ast_id); in ReturnContinuation() 4163 HBasicBlock* true_branch = NULL; in ReturnContinuation() local 4165 continuation->Continue(&true_branch, &false_branch); in ReturnContinuation() 4167 owner()->Goto(true_branch, if_true(), owner()->function_state()); in ReturnContinuation()
|
/external/v8/test/cctest/compiler/ |
D | test-scheduler.cc | 661 Node* true_branch = graph.NewNode(builder.IfTrue(), branch); in TEST() local 664 Node* ret1 = graph.NewNode(builder.Return(), p4, graph.start(), true_branch); in TEST()
|