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

1 2 3

  /art/compiler/optimizing/
instruction_simplifier_shared.cc 76 ArenaAllocator* arena = mul->GetBlock()->GetGraph()->GetArena();
80 mul->GetBlock()->ReplaceAndRemoveInstructionWith(mul, mulacc);
81 input_binop->GetBlock()->RemoveInstruction(input_binop);
106 ArenaAllocator* arena = mul->GetBlock()->GetGraph()->GetArena();
144 binop->GetBlock()->ReplaceAndRemoveInstructionWith(binop, mulacc);
146 mul->GetBlock()->RemoveInstruction(mul);
153 mul->GetBlock()->GetGraph()->GetConstant(type, 0),
157 use->GetBlock()->ReplaceAndRemoveInstructionWith(use, mulacc);
159 mul->GetBlock()->RemoveInstruction(mul);
217 HBitwiseNegatedRight* neg_op = new (hnot->GetBlock()->GetGraph()->GetArena()
    [all...]
licm_test.cc 127 EXPECT_EQ(get_field->GetBlock(), loop_body_);
128 EXPECT_EQ(set_field->GetBlock(), loop_body_);
130 EXPECT_EQ(get_field->GetBlock(), loop_preheader_);
131 EXPECT_EQ(set_field->GetBlock(), loop_body_);
161 EXPECT_EQ(get_field->GetBlock(), loop_body_);
162 EXPECT_EQ(set_field->GetBlock(), loop_body_);
164 EXPECT_EQ(get_field->GetBlock(), loop_body_);
165 EXPECT_EQ(set_field->GetBlock(), loop_body_);
181 EXPECT_EQ(get_array->GetBlock(), loop_body_);
182 EXPECT_EQ(set_array->GetBlock(), loop_body_)
    [all...]
constant_folding.cc 93 inst->GetBlock()->RemoveInstruction(inst);
103 inst->GetBlock()->RemoveInstruction(inst);
116 inst->GetBlock()->RemoveInstruction(inst);
125 inst->GetBlock()->RemoveInstruction(inst);
139 instruction->GetBlock()->RemoveInstruction(instruction);
151 instruction->GetBlock()->RemoveInstruction(instruction);
163 instruction->GetBlock()->RemoveInstruction(instruction);
175 instruction->GetBlock()->RemoveInstruction(instruction);
187 instruction->GetBlock()->RemoveInstruction(instruction);
199 instruction->GetBlock()->RemoveInstruction(instruction)
    [all...]
instruction_simplifier.cc 173 left_neg->GetBlock()->RemoveInstruction(left_neg);
174 right_neg->GetBlock()->RemoveInstruction(right_neg);
176 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext());
208 left->GetBlock()->RemoveInstruction(left);
209 right->GetBlock()->RemoveInstruction(right);
225 op->GetBlock()->InsertInstructionBefore(hbin, op);
226 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, hnot);
251 instruction->GetBlock()->RemoveInstruction(instruction);
267 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, ror);
269 ushr->GetBlock()->RemoveInstruction(ushr)
    [all...]
gvn_test.cc 99 ASSERT_EQ(to_remove->GetBlock(), block);
100 ASSERT_EQ(different_offset->GetBlock(), block);
101 ASSERT_EQ(use_after_kill->GetBlock(), block);
108 ASSERT_TRUE(to_remove->GetBlock() == nullptr);
109 ASSERT_EQ(different_offset->GetBlock(), block);
110 ASSERT_EQ(use_after_kill->GetBlock(), block);
287 ASSERT_EQ(field_get_in_loop_header->GetBlock(), loop_header);
288 ASSERT_EQ(field_get_in_loop_body->GetBlock(), loop_body);
289 ASSERT_EQ(field_get_in_exit->GetBlock(), exit);
299 ASSERT_EQ(field_get_in_loop_header->GetBlock(), loop_header)
    [all...]
graph_checker.cc 302 if (!load->GetBlock()->IsCatchBlock()) {
306 load->GetBlock()->GetBlockId()));
307 } else if (load->GetBlock()->GetFirstInstruction() != load) {
311 load->GetBlock()->GetBlockId()));
324 if (instruction->GetBlock() == nullptr) {
329 } else if (instruction->GetBlock() != current_block_) {
334 instruction->GetBlock()->GetBlockId()));
342 ? input->GetBlock()->GetPhis()
343 : input->GetBlock()->GetInstructions();
357 ? user->GetBlock()->GetPhis(
    [all...]
prepare_for_register_allocation.cc 47 bound_type->GetBlock()->RemoveInstruction(bound_type);
108 check->GetBlock()->RemoveInstruction(check);
111 load_class->GetBlock()->RemoveInstruction(load_class);
117 check->GetBlock()->RemoveInstruction(check);
143 load_class->GetBlock()->RemoveInstruction(load_class);
223 if (user->GetBlock() != input->GetBlock()) {
locations.cc 28 instruction->GetBlock()->GetGraph()->GetArena()->Adapter(kArenaAllocLocationSummary)),
29 temps_(instruction->GetBlock()->GetGraph()->GetArena()->Adapter(kArenaAllocLocationSummary)),
39 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetArena();
licm.cc 23 return instruction->IsPhi() && instruction->GetBlock() == block;
32 HLoopInformation* info = instruction->GetBlock()->GetLoopInformation();
34 HLoopInformation* input_loop = it.Current()->GetBlock()->GetLoopInformation();
48 HLoopInformation* input_loop = input->GetBlock()->GetLoopInformation();
bounds_check_elimination.cc 401 DCHECK(induction_variable_->GetBlock()->IsLoopHeader());
402 return induction_variable_->GetBlock();
629 if (instruction->GetBlock() != basic_block) {
646 if (instruction->GetBlock() != left->GetBlock()) {
687 ApplyRangeFromComparison(left, instruction->GetBlock(), successor,
696 ApplyRangeFromComparison(right, instruction->GetBlock(), successor,
705 HBasicBlock* block = instruction->GetBlock();
721 if (instruction->GetBlock() != loop_head) {
807 HBasicBlock* block = bounds_check->GetBlock();
    [all...]
nodes_shared.h 87 return GetBlock()->GetGraph()->GetIntConstant(
91 return GetBlock()->GetGraph()->GetLongConstant(
optimizing_unit_test.h 70 current->GetBlock()->RemoveInstruction(current);
121 return instruction->GetBlock() == nullptr;
nodes_x86.h 105 return GetBlock()->GetSuccessors()[num_entries_];
ssa_builder.cc 297 HArrayGet* equivalent = new (aget->GetBlock()->GetGraph()->GetArena()) HArrayGet(
302 aget->GetBlock()->InsertInstructionAfter(equivalent, aget);
343 aget_float->GetBlock()->RemoveInstruction(aget_float);
357 aget_int->GetBlock()->RemoveInstruction(aget_int);
452 new_instance->GetBlock()->RemoveInstruction(new_instance);
465 input->GetBlock()->RemoveInstruction(input);
475 load_class->GetBlock()->RemoveInstruction(load_class);
563 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext());
585 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext());
624 phi->GetBlock()->InsertPhiAfter(new_phi, phi)
    [all...]
nodes.cc 507 if ((cached_null_constant_ == nullptr) || (cached_null_constant_->GetBlock() == nullptr)) {
523 if ((cached_current_method_ == nullptr) || (cached_current_method_->GetBlock() == nullptr)) {
716 return !blocks_.IsBitSet(instruction->GetBlock()->GetBlockId());
769 DCHECK(initial->GetBlock() == this);
775 DCHECK_EQ(initial->GetBlock(), this);
797 HBasicBlock* from_block = insn->GetBlock();
798 HBasicBlock* to_block = cursor->GetBlock();
809 DCHECK(instruction->GetBlock() == nullptr);
830 DCHECK_EQ(cursor->GetBlock(), this);
843 DCHECK_EQ(cursor->GetBlock(), this)
    [all...]
instruction_simplifier_arm64.cc 63 access->GetBlock()->InsertInstructionBefore(address, access);
142 use->GetBlock()->ReplaceAndRemoveInstructionWith(use, alu_with_op);
144 bitfield_op->GetBlock()->RemoveInstruction(bitfield_op);
pc_relative_fixups_x86.cc 128 HBasicBlock* block = neg->GetBlock();
147 HBasicBlock* block = switch_insn->GetBlock();
177 insn->GetBlock()->InsertInstructionBefore(load_constant, insn);
reference_type_propagation.cc 221 DCHECK(!dominator_block->Dominates(user->GetBlock())
275 if (notNullBlock->Dominates(user->GetBlock())) {
415 if (instanceOfTrueBlock->Dominates(user->GetBlock())) {
468 instr->SetReferenceTypeInfo(instr->GetBlock()->GetGraph()->GetInexactObjectRti());
549 instr->SetReferenceTypeInfo(instr->GetBlock()->GetGraph()->GetInexactObjectRti());
557 instr->SetReferenceTypeInfo(instr->GetBlock()->GetGraph()->GetInexactObjectRti());
586 DCHECK(instr->GetBlock()->IsCatchBlock());
587 TryCatchInformation* catch_info = instr->GetBlock()->GetTryCatchInformation();
636 instr->GetBlock()->RemoveInstruction(instr);
668 if (phi->GetBlock()->IsLoopHeader())
    [all...]
load_store_elimination.cc 423 if (instruction->GetBlock()->GetLoopInformation() != nullptr) {
558 load->GetBlock()->RemoveInstruction(load);
566 store->GetBlock()->RemoveInstruction(store);
684 prev->GetBlock()->RemoveInstruction(prev);
720 heap_values_for_[instruction->GetBlock()->GetBlockId()];
784 heap_values_for_[instruction->GetBlock()->GetBlockId()];
808 HLoopInformation* loop_info = instruction->GetBlock()->GetLoopInformation();
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_sync_test.cc 24 MBlock *mb = m->GetBlock((uptr)&block[0]);
30 mb = m->GetBlock((uptr)&block[0]);
40 MBlock *mb1 = m->GetBlock((uptr)&block[0]);
42 MBlock *mb2 = m->GetBlock((uptr)&block[1]);
45 mb1 = m->GetBlock((uptr)&block[0]);
47 mb2 = m->GetBlock((uptr)&block[1]);
86 MBlock *mb1 = m->GetBlock((uptr)&block1[0]);
88 MBlock *mb2 = m->GetBlock((uptr)&block1[3]);
90 mb1 = m->GetBlock((uptr)&block2[0]);
93 mb2 = m->GetBlock((uptr)&block2[3])
    [all...]
  /external/boringssl/src/crypto/test/
file_test.h 103 // GetBlock returns the optional block of the current test, or the empty
105 const std::string &GetBlock();
  /external/pdfium/testing/
test_support.h 56 static int GetBlock(void* param,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 138 virtual const Block* GetBlock() const = 0;
160 const Block* GetBlock() const;
186 const Block* GetBlock() const;
368 const Block* GetBlock() const;
672 const BlockEntry* GetBlock(
880 const BlockEntry* GetBlock(
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.h 78 MBlock* GetBlock(uptr p);
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 158 void GetBlock( int* block, int c );

Completed in 450 milliseconds

1 2 3