HomeSort by relevance Sort by last modified time
    Searched refs:true_block (Results 1 - 25 of 35) sorted by null

1 2

  /art/compiler/optimizing/
select_generator.cc 97 HBasicBlock* true_block = if_instruction->IfTrueSuccessor(); local
99 DCHECK_NE(true_block, false_block);
100 if (!IsSimpleBlock(true_block) ||
102 !BlocksMergeTogether(true_block, false_block)) {
105 HBasicBlock* merge_block = true_block->GetSingleSuccessor();
110 if (!true_block->IsSingleGoto() && !true_block->IsSingleReturn()) {
111 true_block->GetFirstInstruction()->MoveBefore(if_instruction);
116 DCHECK(true_block->IsSingleGoto() || true_block->IsSingleReturn())
    [all...]
graph_test.cc 135 HBasicBlock* true_block = if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(); local
136 ASSERT_NE(true_block, return_block);
139 ASSERT_EQ(true_block->GetSuccessors()[0], return_block);
bounds_check_elimination.cc 1788 HBasicBlock* true_block = if_block->GetSuccessors()[0]; \/\/ True successor. local
1825 HBasicBlock* true_block = entry.second; local
    [all...]
nodes.cc 2629 HBasicBlock* true_block = new (allocator_) HBasicBlock(this, header->GetDexPc()); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 391 /* create/insert true_block before merge_block */
392 ifthen->true_block =
398 LLVMPositionBuilderAtEnd(gallivm->builder, ifthen->true_block);
410 /* Append an unconditional Br(anch) instruction on the true_block */
444 ifthen->true_block, ifthen->false_block);
449 ifthen->true_block, ifthen->merge_block);
lp_bld_flow.h 173 LLVMBasicBlockRef true_block; member in struct:lp_build_if_state
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
parallel_loop_emitter.cc 118 llvm_ir::SetToFirstInsertPoint(if_in_bounds.true_block, ir_builder_);
ir_emitter_unnested.cc     [all...]
elemental_ir_emitter.cc 401 SetToFirstInsertPoint(if_data.true_block, ir_builder_);
  /external/v8/src/compiler/
instruction-selector-impl.h 341 FlagsContinuation(FlagsCondition condition, BasicBlock* true_block,
345 true_block_(true_block),
347 DCHECK_NOT_NULL(true_block);
399 BasicBlock* true_block() const { function in class:v8::internal::compiler::final
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.cc 60 ir_builder_->SetInsertPoint(&if_data.true_block->back());
llvm_util.h 190 llvm::BasicBlock* true_block; member in struct:xla::llvm_ir::LlvmIfData
195 // The block that follows after both the true_block and the
llvm_util.cc 415 if_data.true_block = CreateBasicBlock(
441 condition, if_data.true_block,
444 ir_builder->SetInsertPoint(if_data.true_block);
  /external/tensorflow/tensorflow/compiler/xla/service/
elemental_ir_emitter.cc     [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 479 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 457 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 566 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/s390/
instruction-selector-s390.cc 467 inputs[input_count++] = g.Label(cont->true_block());
601 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 273 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_emitter.cc 598 SetToFirstInsertPoint(if_data.true_block, &ir_builder_);
721 SetToFirstInsertPoint(if_in_bounds.true_block, &ir_builder_);
748 SetToFirstInsertPoint(if_initialized.true_block, &ir_builder_)
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 540 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 188 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 133 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 284 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 5375 int true_block = instr->TrueDestination(chunk_); local
    [all...]

Completed in 847 milliseconds

1 2