/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 | 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 | 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 | 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 | 38 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SetUp() 46 HBasicBlock* successor = new (GetAllocator()) HBasicBlock(graph); in CreateSuccessor() 58 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F() 63 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F() 65 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 78 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F() 80 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F() 82 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F() 84 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F() 86 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F() [all …]
|
D | select_generator_test.cc | 30 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph_); in ConstructBasicGraphForSelect() 31 HBasicBlock* then_block = new (GetAllocator()) HBasicBlock(graph_); in ConstructBasicGraphForSelect() 32 HBasicBlock* else_block = new (GetAllocator()) HBasicBlock(graph_); in ConstructBasicGraphForSelect() 45 HParameterValue* bool_param = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in ConstructBasicGraphForSelect() 52 if_block->AddInstruction(new (GetAllocator()) HIf(bool_param)); in ConstructBasicGraphForSelect() 55 then_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect() 57 else_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect() 59 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in ConstructBasicGraphForSelect() 78 HDivZeroCheck* instr = new (GetAllocator()) HDivZeroCheck(parameter_, 0); in TEST_F() 82 GetAllocator()->Adapter(kArenaAllocInstruction)); 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() 112 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 124 HInstruction* object = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in TEST_F() 128 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( in LoopOptimizationTest() 42 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 43 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 44 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph() 50 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph() 55 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildGraph() 56 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildGraph() 63 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() 64 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() [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 | 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 | 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 | 423 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 426 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 428 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 433 HEqual* equal = new (GetAllocator()) HEqual(constant0, constant0); in TEST_F() 435 first_block->AddInstruction(new (GetAllocator()) HIf(equal)); in TEST_F() 437 HBasicBlock* then_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 438 HBasicBlock* else_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 439 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F() 450 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F() 451 then_block->AddInstruction(new (GetAllocator()) HReturn(constant0)); in TEST_F() [all …]
|
D | register_allocator_test.cc | 473 register_allocator.registers_array_ = GetAllocator()->AllocArray<size_t>(1); in TEST_F() 490 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 493 HInstruction* parameter = new (GetAllocator()) HParameterValue( in BuildIfElseWithPhi() 497 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 501 HInstruction* test = new (GetAllocator()) HInstanceFieldGet(parameter, in BuildIfElseWithPhi() 511 block->AddInstruction(new (GetAllocator()) HIf(test)); in BuildIfElseWithPhi() 512 HBasicBlock* then = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 513 HBasicBlock* else_ = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 514 HBasicBlock* join = new (GetAllocator()) HBasicBlock(graph); in BuildIfElseWithPhi() 523 then->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi() [all …]
|
D | optimizing_unit_test.h | 97 ArenaAllocator* GetAllocator() { return &allocator_; } in GetAllocator() function 114 ArenaAllocator* GetAllocator() { return pool_and_allocator_->GetAllocator(); } in GetAllocator() function 124 ArenaAllocator* const allocator = pool_and_allocator_->GetAllocator(); in CreateGraph() 155 void* aligned_data = GetAllocator()->Alloc(code_item_size); 166 new (graph->GetAllocator()) DexCompilationUnit( 203 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in InitGraph() 207 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in InitGraph() 210 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in InitGraph() 217 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in InitGraph() 222 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in InitGraph() [all …]
|
D | constant_folding_test.cc | 737 HBasicBlock* entry_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 740 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 742 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() 749 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() 752 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() 757 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F() 758 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 759 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F() 760 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 761 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F() [all …]
|
D | superblock_cloner_test.cc | 39 HBasicBlock* loop_preheader = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 40 HBasicBlock* loop_header = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 41 HBasicBlock* loop_body = new (GetAllocator()) HBasicBlock(graph_); in CreateBasicLoopControlFlow() 68 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in CreateBasicLoopDataFlow() 69 HInstruction* suspend_check = new (GetAllocator()) HSuspendCheck(); in CreateBasicLoopDataFlow() 70 HInstruction* loop_check = new (GetAllocator()) HGreaterThanOrEqual(phi, const_128); in CreateBasicLoopDataFlow() 75 loop_header->AddInstruction(new (GetAllocator()) HIf(loop_check)); in CreateBasicLoopDataFlow() 78 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter_, dex_pc); in CreateBasicLoopDataFlow() 79 HInstruction* array_length = new (GetAllocator()) HArrayLength(null_check, dex_pc); in CreateBasicLoopDataFlow() 80 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(phi, array_length, dex_pc); in CreateBasicLoopDataFlow() [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 | 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 VisitVecSaturationAdd() 333 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() [all …]
|
D | codegen_test_utils.h | 327 return new (graph->GetAllocator()) TestCodeGeneratorARMVIXL(graph, compiler_options); in create_codegen_arm_vixl32() 333 return new (graph->GetAllocator()) TestCodeGeneratorARM64(graph, compiler_options); in create_codegen_arm64() 339 return new (graph->GetAllocator()) TestCodeGeneratorX86(graph, compiler_options); in create_codegen_x86() 345 return new (graph->GetAllocator()) x86_64::CodeGeneratorX86_64(graph, compiler_options); in create_codegen_x86_64() 351 return new (graph->GetAllocator()) mips::CodeGeneratorMIPS(graph, compiler_options); in create_codegen_mips() 357 return new (graph->GetAllocator()) mips64::CodeGeneratorMIPS64(graph, compiler_options); in create_codegen_mips64()
|
D | instruction_simplifier_x86_shared.cc | 43 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetAllocator(); in TryCombineAndNot() 79 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetAllocator(); in TryGenerateResetLeastSetBit() 112 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetAllocator(); in TryGenerateMaskUptoLeastSetBit()
|
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() 257 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 275 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 322 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 363 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 435 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 477 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationAdd() 509 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() [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() 240 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecCnv() 258 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNeg() 305 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAbs() 346 CreateVecUnOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecNot() 418 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecAdd() 460 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecSaturationAdd() 492 CreateVecBinOpLocations(GetGraph()->GetAllocator(), instruction); in VisitVecHalvingAdd() [all …]
|
D | pc_relative_fixups_x86.cc | 134 HX86FPNeg* x86_fp_neg = new (graph->GetAllocator()) HX86FPNeg( in VisitNeg() 153 HX86PackedSwitch* x86_switch = new (graph->GetAllocator()) HX86PackedSwitch( in VisitPackedSwitch() 173 new (GetGraph()->GetAllocator()) HX86ComputeBaseMethodAddress(); in GetPCRelativeBasePointer() 187 new (GetGraph()->GetAllocator()) HX86LoadFromConstantTable(method_address, value); in ReplaceInput()
|