HomeSort by relevance Sort by last modified time
    Searched full:getblock (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /external/lldb/test/python_api/default-constructor/
sb_symbolcontext.py 12 obj.GetBlock()
sb_address.py 19 obj.GetBlock()
sb_frame.py 20 obj.GetBlock()
  /art/compiler/optimizing/
instruction_simplifier.cc 126 left_neg->GetBlock()->RemoveInstruction(left_neg);
127 right_neg->GetBlock()->RemoveInstruction(right_neg);
129 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext());
147 instruction->GetBlock()->RemoveInstruction(instruction);
156 instruction->GetBlock()->ReplaceAndRemoveInstructionWith(instruction, add);
166 null_check->GetBlock()->RemoveInstruction(null_check);
189 check_cast->GetBlock()->RemoveInstruction(check_cast);
203 HBasicBlock* block = check->GetBlock();
223 HBasicBlock* block = equal->GetBlock();
246 HBasicBlock* block = not_equal->GetBlock();
    [all...]
gvn_test.cc 63 ASSERT_EQ(to_remove->GetBlock(), block);
64 ASSERT_EQ(different_offset->GetBlock(), block);
65 ASSERT_EQ(use_after_kill->GetBlock(), block);
72 ASSERT_TRUE(to_remove->GetBlock() == nullptr);
73 ASSERT_EQ(different_offset->GetBlock(), block);
74 ASSERT_EQ(use_after_kill->GetBlock(), block);
187 ASSERT_EQ(field_get_in_loop_header->GetBlock(), loop_header);
188 ASSERT_EQ(field_get_in_loop_body->GetBlock(), loop_body);
189 ASSERT_EQ(field_get_in_exit->GetBlock(), exit);
199 ASSERT_EQ(field_get_in_loop_header->GetBlock(), loop_header)
    [all...]
constant_folding.cc 61 inst->GetBlock()->RemoveInstruction(inst);
71 inst->GetBlock()->RemoveInstruction(inst);
79 check->GetBlock()->RemoveInstruction(check);
95 instruction->GetBlock()->RemoveInstruction(instruction);
107 instruction->GetBlock()->RemoveInstruction(instruction);
124 instruction->GetBlock()->RemoveInstruction(instruction);
141 instruction->GetBlock()->RemoveInstruction(instruction);
152 HBasicBlock* block = instruction->GetBlock();
196 HBasicBlock* block = instruction->GetBlock();
225 HBasicBlock* block = instruction->GetBlock();
    [all...]
locations.cc 26 : inputs_(instruction->GetBlock()->GetGraph()->GetArena(), instruction->InputCount()),
27 temps_(instruction->GetBlock()->GetGraph()->GetArena(), 0),
41 ArenaAllocator* arena = instruction->GetBlock()->GetGraph()->GetArena();
bounds_check_elimination.cc 299 HLoopInformation* loop_info = induction_variable_->GetBlock()->GetLoopInformation();
302 DCHECK(block == induction_variable_->GetBlock());
354 if (loop_info->Contains(*array->GetBlock())) {
516 DCHECK(induction_variable_->GetBlock()->IsLoopHeader());
517 return induction_variable_->GetBlock();
700 HBasicBlock* header = induction_variable_->GetBlock();
703 if (!initial_->GetBlock()->Dominates(pre_header) ||
704 !end_->GetBlock()->Dominates(pre_header)) {
733 HBasicBlock* header = induction_variable_->GetBlock();
736 DCHECK(value->GetBlock()->Dominates(pre_header))
    [all...]
prepare_for_register_allocation.cc 47 bound_type->GetBlock()->RemoveInstruction(bound_type);
57 check->GetBlock()->RemoveInstruction(check);
99 last_input->GetBlock()->RemoveInstruction(last_input);
graph_checker.cc 145 if (instruction->GetBlock() == nullptr) {
150 } else if (instruction->GetBlock() != current_block_) {
155 instruction->GetBlock()->GetBlockId()));
163 ? input->GetBlock()->GetPhis()
164 : input->GetBlock()->GetInstructions();
179 ? use->GetBlock()->GetPhis()
180 : use->GetBlock()->GetInstructions();
407 use->GetId(), use->GetBlock()->GetBlockId()));
451 phi->GetBlock()->GetBlockId()));
457 phi->GetBlock()->GetPredecessors()
    [all...]
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();
nodes.cc 309 if ((cached_null_constant_ == nullptr) || (cached_null_constant_->GetBlock() == nullptr)) {
466 DCHECK(initial->GetBlock() == this);
475 DCHECK(instruction->GetBlock() == nullptr);
496 DCHECK_EQ(cursor->GetBlock(), this);
509 DCHECK_EQ(cursor->GetBlock(), this);
521 DCHECK_EQ(cursor->GetBlock(), this);
532 DCHECK_EQ(block, instruction->GetBlock());
588 if (instruction->IsLoopHeaderPhi() && (instruction->GetBlock() == loop_header)) {
592 DCHECK(initial->GetBlock()->Dominates(loop_header));
687 DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock())
    [all...]
optimizing_unit_test.h 69 current->GetBlock()->RemoveInstruction(current);
113 return instruction->GetBlock() == nullptr;
boolean_simplifier.cc 37 boolean_not->GetBlock()->RemoveInstruction(boolean_not);
66 HGraph* graph = cond->GetBlock()->GetGraph();
125 if (replacement->GetBlock() == nullptr) {
  /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/clang/include/clang/Analysis/
CFGStmtMap.h 44 CFGBlock *getBlock(Stmt * S);
46 const CFGBlock *getBlock(const Stmt * S) const {
47 return const_cast<CFGStmtMap*>(this)->getBlock(const_cast<Stmt*>(S));
  /external/llvm/lib/CodeGen/
BranchFolding.h 46 MachineBasicBlock *getBlock() const { return Block; }
77 MachineBasicBlock *getBlock() const {
78 return getMergePotentialsElt().getBlock();
81 return TailStartPos == getBlock()->begin();
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 160 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
198 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
200 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 52 getBlock().getParent().onSourcesChanged(this, oldSources);
80 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
177 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 161 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
199 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
201 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 47 getBlock().getParent().onSourcesChanged(this, oldSources);
75 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
172 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
  /external/lldb/scripts/Python/interface/
SBFunction.i 84 GetBlock ();
105 __swig_getmethods__["block"] = GetBlock
106 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
SBSymbolContext.i 64 lldb::SBBlock GetBlock ();
97 __swig_getmethods__["block"] = GetBlock
99 if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')

Completed in 1365 milliseconds

1 2 3 4 5 6 7 8 9