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 84 HBasicBlock* true_block = if_instruction->IfTrueSuccessor(); local
86 DCHECK_NE(true_block, false_block);
87 if (!IsSimpleBlock(true_block) ||
89 !BlocksMergeTogether(true_block, false_block)) {
92 HBasicBlock* merge_block = true_block->GetSingleSuccessor();
97 if (!true_block->IsSingleGoto()) {
98 true_block->GetFirstInstruction()->MoveBefore(if_instruction);
103 DCHECK(true_block->IsSingleGoto());
107 size_t predecessor_index_true = merge_block->GetPredecessorIndexOf(true_block);
132 true_block->DisconnectAndDelete()
    [all...]
graph_test.cc 132 HBasicBlock* true_block = if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(); local
133 ASSERT_NE(true_block, return_block);
136 ASSERT_EQ(true_block->GetSuccessors()[0], return_block);
bounds_check_elimination.cc 1701 HBasicBlock* true_block = if_block->GetSuccessors()[0]; \/\/ True successor. local
1738 HBasicBlock* true_block = entry.second; local
    [all...]
nodes.cc 2382 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 173 LLVMBasicBlockRef true_block; member in struct:lp_build_if_state
  /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/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/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...]
  /external/v8/src/crankshaft/
hydrogen.cc 1046 HBasicBlock* true_block = NULL; local
1062 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 2077 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 1895 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 2016 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 2072 int true_block = instr->TrueDestination(chunk_); local
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 2079 int true_block = instr->TrueDestination(chunk_); local
    [all...]

Completed in 812 milliseconds

1 2