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

1 2

  /art/compiler/optimizing/
select_generator.cc 85 HBasicBlock* true_block = if_instruction->IfTrueSuccessor(); local
87 DCHECK_NE(true_block, false_block);
88 if (!IsSimpleBlock(true_block) ||
90 !BlocksMergeTogether(true_block, false_block)) {
93 HBasicBlock* merge_block = true_block->GetSingleSuccessor();
98 if (!true_block->IsSingleGoto()) {
99 true_block->MoveInstructionBefore(true_block->GetFirstInstruction(), if_instruction);
104 DCHECK(true_block->IsSingleGoto());
108 size_t predecessor_index_true = merge_block->GetPredecessorIndexOf(true_block);
    [all...]
graph_test.cc 133 HBasicBlock* true_block = if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(); local
134 ASSERT_NE(true_block, return_block);
137 ASSERT_EQ(true_block->GetSuccessors()[0], return_block);
bounds_check_elimination.cc 1597 HBasicBlock* true_block = if_block->GetSuccessors()[0]; \/\/ True successor. local
1637 HBasicBlock* true_block = it1->second; local
    [all...]
nodes.cc 2204 HBasicBlock* true_block = new (arena_) 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 170 LLVMBasicBlockRef true_block; member in struct:lp_build_if_state
  /external/v8/src/compiler/
instruction-selector-impl.h 301 FlagsContinuation(FlagsCondition condition, BasicBlock* true_block,
305 true_block_(true_block),
307 DCHECK_NOT_NULL(true_block);
338 BasicBlock* true_block() const { function in class:v8::internal::compiler::final
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 440 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 251 inputs[input_count++] = g.Label(cont->true_block());
743 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 479 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 418 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 103 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 379 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 108 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/s390/
instruction-selector-s390.cc 127 inputs[input_count++] = g.Label(cont->true_block());
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 5508 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 1044 HBasicBlock* true_block = NULL; local
1060 HBasicBlock* true_block = NULL; local
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 1801 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 2078 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 2004 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 1870 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 1989 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 2038 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 2041 int true_block = instr->TrueDestination(chunk_); local
    [all...]

Completed in 663 milliseconds

1 2