Home
last modified time | relevance | path

Searched refs:while_block (Results 1 – 5 of 5) sorted by relevance

/external/llvm/test/Transforms/SimplifyCFG/
Dunreachable-blocks.ll11 while_block: ; preds = %and_if_cont2, %and_if_cont
17 and_if1: ; preds = %while_block
22 and_if_cont2: ; preds = %and_if1, %while_block
23 %a18 = phi i1 [ %test, %while_block ], [ %test2, %and_if1 ]
24 br i1 %a18, label %while_block, label %return
/external/llvm-project/llvm/test/Transforms/SimplifyCFG/X86/
Dunreachable-blocks.ll11 while_block: ; preds = %and_if_cont2, %and_if_cont
17 and_if1: ; preds = %while_block
22 and_if_cont2: ; preds = %and_if1, %while_block
23 %a18 = phi i1 [ %test, %while_block ], [ %test2, %and_if1 ]
24 br i1 %a18, label %while_block, label %return
/external/mesa3d/src/intel/compiler/
Dbrw_predicated_break.cpp123 bblock_t *while_block = earlier_block->next(); in opt_predicated_break() local
124 backend_instruction *while_inst = while_block->start(); in opt_predicated_break()
133 assert(earlier_block->can_combine_with(while_block)); in opt_predicated_break()
134 earlier_block->combine_with(while_block); in opt_predicated_break()
/external/rust/crates/protobuf-codegen/src/
Dcode_writer.rs313 pub fn while_block<S: AsRef<str>, F>(&mut self, cond: S, cb: F) in while_block() method
Dmessage.rs272 w.while_block("!is.eof()?", |w| { in write_merge_from()