/art/tools/ |
D | stream-trace-converter.py | 78 def ProcessDataHeader(self, input, body): argument 83 WriteIntLE(body, magic) 93 WriteShortLE(body, version) 97 WriteShortLE(body, offsetToData + 16) 100 Copy(input, body, 8) 108 WriteShortLE(body, self._mRecordSize) 112 Copy(input, body, offsetToData) 144 def Process(self, input, body): argument 152 WriteShortLE(body, threadId) 153 Copy(input, body, self._mRecordSize - 2) [all …]
|
/art/tools/checker/file_format/c1visualizer/ |
D | struct.py | 40 def __init__(self, parent, name, body, startLineNo): argument 43 self.body = body 48 if not self.body: 60 and self.body == other.body
|
/art/compiler/optimizing/ |
D | loop_optimization_test.cc | 64 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() local 66 graph_->AddBlock(body); in AddLoop() 69 header->AddSuccessor(body); in AddLoop() 72 body->AddSuccessor(header); in AddLoop() 73 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop() 203 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() local 205 graph_->AddBlock(body); in TEST_F() 209 body->AddSuccessor(header); in TEST_F() 211 header->AddSuccessor(body); in TEST_F() 217 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F() [all …]
|
D | induction_var_analysis.cc | 201 HBasicBlock* body, in RewriteBreakLoopBody() argument 217 m->MoveBefore(body->GetFirstInstruction(), false); in RewriteBreakLoopBody() 921 HBasicBlock* body, in VisitCondition() argument 929 case kCondLT: VisitCondition(loop, body, b, a, type, kCondGT); break; in VisitCondition() 930 case kCondLE: VisitCondition(loop, body, b, a, type, kCondGE); break; in VisitCondition() 931 case kCondGT: VisitCondition(loop, body, b, a, type, kCondLT); break; in VisitCondition() 932 case kCondGE: VisitCondition(loop, body, b, a, type, kCondLE); break; in VisitCondition() 933 case kCondNE: VisitCondition(loop, body, b, a, type, kCondNE); break; in VisitCondition() 951 if (cmp == kCondNE && RewriteBreakLoop(loop, body, stride_value, type)) { in VisitCondition() 1130 HBasicBlock* body, in RewriteBreakLoop() argument [all …]
|
D | block_builder.cc | 426 HBasicBlock* body = MaybeCreateBlockAt(/* semantic_dex_pc= */ kNoDexPc, /* store_dex_pc= */ 0u); in BuildIntrinsic() local 430 graph_->AddBlock(body); in BuildIntrinsic() 436 entry_block->AddSuccessor(body); in BuildIntrinsic() 437 body->AddSuccessor(exit_block); in BuildIntrinsic()
|
D | induction_var_analysis.h | 205 HBasicBlock* body, 228 HBasicBlock* body,
|
D | loop_optimization.cc | 716 HBasicBlock* body = nullptr; in TryOptimizeInnerLoopFinite() local 719 if (body != nullptr) { in TryOptimizeInnerLoopFinite() 722 body = it.Current(); in TryOptimizeInnerLoopFinite() 725 CHECK(body != nullptr); in TryOptimizeInnerLoopFinite() 730 HBasicBlock* exit = (header->GetSuccessors()[0] == body) in TryOptimizeInnerLoopFinite() 742 bool is_empty = IsEmptyBody(body); in TryOptimizeInnerLoopFinite() 749 preheader->MergeInstructionsWith(body); in TryOptimizeInnerLoopFinite() 751 body->DisconnectAndDelete(); in TryOptimizeInnerLoopFinite() 767 ShouldVectorize(node, body, trip_count) && in TryOptimizeInnerLoopFinite() 769 Vectorize(node, body, exit, trip_count); in TryOptimizeInnerLoopFinite()
|
D | nodes.cc | 2466 HBasicBlock* body = GetBlocks()[1]; in InlineInto() local 2469 DCHECK(!body->IsExitBlock()); in InlineInto() 2470 DCHECK(!body->IsInLoop()); in InlineInto() 2471 HInstruction* last = body->GetLastInstruction(); in InlineInto() 2474 invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions()); in InlineInto() 2475 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock()); in InlineInto() 2726 HBasicBlock* body, in TransformLoopForVectorization() argument 2761 size_t index_of_body = IndexOfElement(reverse_post_order_, body); in TransformLoopForVectorization()
|
D | nodes.h | 418 HBasicBlock* body,
|
/art/test/800-smali/smali/ |
D | b_22881413.smali | 76 # to stabilization loops in the body. 245 # Loop 8 end of body. 251 # Loop 7 end of body. 257 # Loop 6 end of body. 263 # Loop 5 end of body 269 # Loop 4 end of body 275 # Loop 3 end of body 281 # Loop 2 end of body 287 # Loop 1 end of body
|
/art/tools/checker/match/ |
D | file.py | 59 newVariables = MatchLines(assertion, c1Pass.body[i], variables) 92 line = c1Pass.body[i] 112 c1Length = len(c1Pass.body)
|
/art/tools/checker/ |
D | checker.py | 57 maxLineNo = compiler_pass.startLineNo + len(compiler_pass.body) 60 for line in compiler_pass.body:
|
D | README | 40 curly brackets need to be used inside the body of the regex, they need to be
|
/art/tools/checker/file_format/checker/ |
D | parser.py | 175 body = var[colonPos+1:-2] 176 assertion.addExpression(TestExpression.createVariableDefinition(name, body))
|
/art/test/559-checker-irreducible-loop/smali/ |
D | IrreducibleLoop.smali | 501 # back edge, and not the body.
|
/art/runtime/ |
D | Android.bp | 20 // (empty) body is called.
|