/art/compiler/optimizing/ |
D | nodes_vector_test.cc | 37 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 38 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 43 int8_parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 48 int16_parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 53 int32_parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 133 HVecOperation* v0 = new (GetAllocator()) in TEST_F() 134 HVecReplicateScalar(GetAllocator(), int32_parameter_, DataType::Type::kInt32, 4, kNoDexPc); in TEST_F() 135 HVecOperation* v1 = new (GetAllocator()) in TEST_F() 136 HVecReplicateScalar(GetAllocator(), int32_parameter_, DataType::Type::kInt32, 4, kNoDexPc); in TEST_F() 137 HVecOperation* v2 = new (GetAllocator()) in TEST_F() [all …]
|
D | bounds_check_elimination_test.cc | 67 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 70 HInstruction* parameter1 = new (GetAllocator()) HParameterValue( in TEST_F() 72 HInstruction* parameter2 = new (GetAllocator()) HParameterValue( in TEST_F() 80 HBasicBlock* block1 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 82 HInstruction* cmp = new (GetAllocator()) HGreaterThanOrEqual(parameter2, constant_0); in TEST_F() 83 HIf* if_inst = new (GetAllocator()) HIf(cmp); in TEST_F() 88 HBasicBlock* block2 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 90 HNullCheck* null_check = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F() 91 HArrayLength* array_length = new (GetAllocator()) HArrayLength(null_check, 0); in TEST_F() 92 HBoundsCheck* bounds_check2 = new (GetAllocator()) in TEST_F() [all …]
|
D | nodes_test.cc | 34 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 37 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() 40 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 42 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 45 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() 47 first_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in TEST_F() 49 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 52 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 54 HEnvironment* environment = new (GetAllocator()) HEnvironment( in TEST_F() 55 GetAllocator(), 1, graph->GetArtMethod(), 0, null_check); in TEST_F() [all …]
|
D | gvn_test.cc | 31 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 34 HInstruction* parameter = new (GetAllocator()) HParameterValue(graph->GetDexFile(), in TEST_F() 40 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 44 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F() 53 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F() 63 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F() 74 block->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F() 84 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F() 94 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 112 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() [all …]
|
D | ssa_liveness_analysis_test.cc | 45 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SsaLivenessAnalysisTest() 53 HBasicBlock* successor = new (GetAllocator()) HBasicBlock(graph); in CreateSuccessor() 68 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F() 73 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F() 75 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 88 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F() 90 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F() 92 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F() 94 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F() 96 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F() [all …]
|
D | load_store_analysis_test.cc | 33 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 47 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F() 49 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F() 54 HInstruction* array_get1 = new (GetAllocator()) HArrayGet(array, c1, DataType::Type::kInt32, 0); in TEST_F() 55 HInstruction* array_get2 = new (GetAllocator()) HArrayGet(array, c2, DataType::Type::kInt32, 0); in TEST_F() 57 new (GetAllocator()) HArraySet(array, c1, c3, DataType::Type::kInt32, 0); in TEST_F() 59 new (GetAllocator()) HArraySet(array, index, c3, DataType::Type::kInt32, 0); in TEST_F() 108 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 120 HInstruction* object = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in TEST_F() 124 HInstanceFieldSet* set_field10 = new (GetAllocator()) HInstanceFieldSet(object, in TEST_F() [all …]
|
D | loop_optimization_test.cc | 31 iva_(new (GetAllocator()) HInductionVarAnalysis(graph_)), in LoopOptimizationTest() 32 loop_opt_(new (GetAllocator()) HLoopOptimization(graph_, nullptr, iva_, nullptr)) { in LoopOptimizationTest() 41 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 42 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 43 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 49 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 54 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildGraph() 55 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildGraph() 62 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() 63 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() [all …]
|
D | induction_var_analysis_test.cc | 53 loop_preheader_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop() 55 loop_header_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop() 61 loop_body_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop() 80 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 83 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 85 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest() 94 parameter_ = new (GetAllocator()) HParameterValue( in BuildLoopNest() 104 return_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoopNest() 105 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest() 109 basic_[d] = new (GetAllocator()) HPhi(GetAllocator(), d, 0, DataType::Type::kInt32); in BuildLoopNest() [all …]
|
D | licm_test.cc | 50 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 51 loop_preheader_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 52 loop_header_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 53 loop_body_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 54 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 55 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 76 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildLoop() 83 loop_preheader_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop() 84 loop_header_->AddInstruction(new (GetAllocator()) HIf(parameter_)); in BuildLoop() 85 loop_body_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop() [all …]
|
D | superblock_cloner_test.cc | 38 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 42 HBasicBlock* loop_preheader = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 43 HBasicBlock* loop_header = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 44 HBasicBlock* loop_body = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 45 HBasicBlock* loop_exit = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 52 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 67 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in CreateBasicLoopControlFlow() 72 loop_exit->AddInstruction(new (GetAllocator()) HReturnVoid()); in CreateBasicLoopControlFlow() 73 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in CreateBasicLoopControlFlow() 85 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in CreateBasicLoopDataFlow() [all …]
|
D | scheduler_test.cc | 80 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TestBuildDependencyGraphAndSchedule() 81 HBasicBlock* block1 = new (GetAllocator()) HBasicBlock(graph_); in TestBuildDependencyGraphAndSchedule() 101 HInstruction* array = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in TestBuildDependencyGraphAndSchedule() 107 HInstruction* add1 = new (GetAllocator()) HAdd(DataType::Type::kInt32, c1, c2); in TestBuildDependencyGraphAndSchedule() 108 HInstruction* add2 = new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, c2); in TestBuildDependencyGraphAndSchedule() 109 HInstruction* mul = new (GetAllocator()) HMul(DataType::Type::kInt32, add1, add2); in TestBuildDependencyGraphAndSchedule() 110 HInstruction* div_check = new (GetAllocator()) HDivZeroCheck(add2, 0); in TestBuildDependencyGraphAndSchedule() 111 HInstruction* div = new (GetAllocator()) HDiv(DataType::Type::kInt32, add1, div_check, 0); in TestBuildDependencyGraphAndSchedule() 113 new (GetAllocator()) HArrayGet(array, add1, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() 115 new (GetAllocator()) HArraySet(array, add1, add2, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() [all …]
|
D | codegen_test.cc | 421 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 424 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 426 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 431 HEqual* equal = new (GetAllocator()) HEqual(constant0, constant0); in TEST_F() 433 first_block->AddInstruction(new (GetAllocator()) HIf(equal)); in TEST_F() 435 HBasicBlock* then_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 436 HBasicBlock* else_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 437 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 448 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 449 then_block->AddInstruction(new (GetAllocator()) HReturn(constant0)); in TEST_F() [all …]
|
D | register_allocator_test.cc | 479 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F() 496 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 499 HInstruction* parameter = new (GetAllocator()) HParameterValue( in BuildIfElseWithPhi() 503 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 507 HInstruction* test = new (GetAllocator()) HInstanceFieldGet(parameter, in BuildIfElseWithPhi() 517 block->AddInstruction(new (GetAllocator()) HIf(test)); in BuildIfElseWithPhi() 518 HBasicBlock* then = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 519 HBasicBlock* else_ = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 520 HBasicBlock* join = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 529 then->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi() [all …]
|
D | constant_folding_test.cc | 742 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 745 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 747 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 754 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() 757 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F() 763 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F() 765 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F() [all …]
|
D | graph_test.cc | 37 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph); in CreateIfBlock() 40 HInstruction* equal = new (GetAllocator()) HEqual(instr, instr); in CreateIfBlock() 42 instr = new (GetAllocator()) HIf(equal); in CreateIfBlock() 48 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateGotoBlock() 50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() 62 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateReturnBlock() 64 HInstruction* return_instr = new (GetAllocator()) HReturnVoid(); in CreateReturnBlock() 70 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in CreateExitBlock() 72 HInstruction* exit_instr = new (GetAllocator()) HExit(); in CreateExitBlock() 284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() [all …]
|
D | graph_checker_test.cc | 38 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph); in CreateSimpleCFG() 39 entry_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in CreateSimpleCFG() 42 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in CreateSimpleCFG() 43 exit_block->AddInstruction(new (GetAllocator()) HExit()); in CreateSimpleCFG()
|
D | optimizing_unit_test.h | 95 ArenaAllocator* GetAllocator() { return &allocator_; } in GetAllocator() function 112 ArenaAllocator* GetAllocator() { return pool_and_allocator_->GetAllocator(); } in GetAllocator() function 122 ArenaAllocator* const allocator = pool_and_allocator_->GetAllocator(); in CreateGraph() 153 void* aligned_data = GetAllocator()->Alloc(code_item_size); 164 new (graph->GetAllocator()) DexCompilationUnit(
|
D | side_effects_analysis.h | 32 graph->GetAllocator()->Adapter(kArenaAllocSideEffectsAnalysis)), in HOptimization() 34 graph->GetAllocator()->Adapter(kArenaAllocSideEffectsAnalysis)) {} in HOptimization()
|
D | code_generator_vector_arm_vixl.cc | 37 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecReplicateScalar() 80 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecExtractScalar() 131 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecReduce() 160 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 168 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 197 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 224 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 271 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 301 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() 341 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSub() [all …]
|
D | code_generator_vector_x86_64.cc | 29 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecReplicateScalar() 111 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecExtractScalar() 188 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecReduce() 255 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 273 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 320 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 361 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 433 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 475 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() 502 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSub() [all …]
|
D | codegen_test_utils.h | 339 return new (graph->GetAllocator()) in create_codegen_arm_vixl32() 348 return new (graph->GetAllocator()) in create_codegen_arm64() 357 return new (graph->GetAllocator()) TestCodeGeneratorX86( in create_codegen_x86() 366 return new (graph->GetAllocator()) in create_codegen_x86_64() 375 return new (graph->GetAllocator()) in create_codegen_mips() 384 return new (graph->GetAllocator()) in create_codegen_mips64()
|
D | induction_var_range_test.cc | 36 iva_(new (GetAllocator()) HInductionVarAnalysis(graph_)), in InductionVarRangeTest() 62 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 63 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 69 x_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 74 y_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 86 loop_preheader_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 88 loop_header_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 90 loop_body_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 92 HBasicBlock* return_block = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop() 101 loop_preheader_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop() [all …]
|
D | code_generator_vector_x86.cc | 29 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecReplicateScalar() 120 LocationSummary* locations = new (GetGraph()->GetAllocator()) LocationSummary(instruction); in VisitVecExtractScalar() 205 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecReduce() 272 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 290 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 337 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 378 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 450 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 492 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() 519 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSub() [all …]
|
D | instruction_simplifier.cc | 198 HNeg* neg = new (GetGraph()->GetAllocator()) HNeg(binop->GetType(), binop); in TryMoveNegOnInputsAfterBinop() 237 hbin = new (GetGraph()->GetAllocator()) HOr(type, src_left, src_right, dex_pc); in TryDeMorganNegationFactoring() 239 hbin = new (GetGraph()->GetAllocator()) HAnd(type, src_left, src_right, dex_pc); in TryDeMorganNegationFactoring() 243 hnot = new (GetGraph()->GetAllocator()) HBooleanNot(hbin, dex_pc); in TryDeMorganNegationFactoring() 245 hnot = new (GetGraph()->GetAllocator()) HNot(type, hbin, dex_pc); in TryDeMorganNegationFactoring() 286 ArenaAllocator* allocator = mul->GetBlock()->GetGraph()->GetAllocator(); in TryCombineVecMultiplyAccumulate() 420 new (GetGraph()->GetAllocator()) HRor(ushr->GetType(), ushr->GetLeft(), ushr->GetRight()); in ReplaceRotateWithRor() 680 HNotEqual* test = new (graph->GetAllocator()) HNotEqual(graph->GetNullConstant(), object); in VisitInstanceOf() 954 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), false_value, select); in VisitSelect() 961 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), true_value, select); in VisitSelect() [all …]
|
D | pc_relative_fixups_x86.cc | 140 HX86FPNeg* x86_fp_neg = new (graph->GetAllocator()) HX86FPNeg( in VisitNeg() 159 HX86PackedSwitch* x86_switch = new (graph->GetAllocator()) HX86PackedSwitch( in VisitPackedSwitch() 179 new (GetGraph()->GetAllocator()) HX86ComputeBaseMethodAddress(); in GetPCRelativeBasePointer() 193 new (GetGraph()->GetAllocator()) HX86LoadFromConstantTable(method_address, value); in ReplaceInput()
|