Home
last modified time | relevance | path

Searched refs:body (Results 1 – 23 of 23) sorted by relevance

/art/tools/
Dstream-trace-converter.py78 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/
Dstruct.py53 def __init__(self, parent, name, body, start_line_no): argument
56 self.body = body
61 if not self.body:
73 and self.body == other.body)
/art/compiler/optimizing/
Dloop_optimization_test.cc81 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop() local
83 graph_->AddBlock(body); in AddLoop()
86 header->AddSuccessor(body); in AddLoop()
89 body->AddSuccessor(header); in AddLoop()
90 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop()
220 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in TEST_F() local
222 graph_->AddBlock(body); in TEST_F()
226 body->AddSuccessor(header); in TEST_F()
228 header->AddSuccessor(body); in TEST_F()
234 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
[all …]
Dload_store_analysis_test.cc223 HBasicBlock* body = blks.Get("body"); in TEST_F() local
253 body->AddInstruction(array); in TEST_F()
254 body->AddInstruction(index); in TEST_F()
255 body->AddInstruction(add0); in TEST_F()
256 body->AddInstruction(add1); in TEST_F()
257 body->AddInstruction(sub0); in TEST_F()
258 body->AddInstruction(sub1); in TEST_F()
259 body->AddInstruction(sub_neg1); in TEST_F()
260 body->AddInstruction(rev_sub1); in TEST_F()
262 body->AddInstruction(arr_set1); // array[0] = c0 in TEST_F()
[all …]
Dinduction_var_analysis.cc167 HBasicBlock* body, in RewriteBreakLoopBody() argument
183 m->MoveBefore(body->GetFirstInstruction(), false); in RewriteBreakLoopBody()
1029 HBasicBlock* body, in VisitCondition() argument
1037 case kCondLT: VisitCondition(context, loop, body, b, a, type, kCondGT); break; in VisitCondition()
1038 case kCondLE: VisitCondition(context, loop, body, b, a, type, kCondGE); break; in VisitCondition()
1039 case kCondGT: VisitCondition(context, loop, body, b, a, type, kCondLT); break; in VisitCondition()
1040 case kCondGE: VisitCondition(context, loop, body, b, a, type, kCondLE); break; in VisitCondition()
1041 case kCondNE: VisitCondition(context, loop, body, b, a, type, kCondNE); break; in VisitCondition()
1059 if (cmp == kCondNE && RewriteBreakLoop(context, loop, body, stride_value, type)) { in VisitCondition()
1247 HBasicBlock* body, in RewriteBreakLoop() argument
[all …]
Dblock_builder.cc459 HBasicBlock* body = MaybeCreateBlockAt(/* semantic_dex_pc= */ kNoDexPc, /* store_dex_pc= */ 0u); in BuildIntrinsic() local
463 graph_->AddBlock(body); in BuildIntrinsic()
469 entry_block->AddSuccessor(body); in BuildIntrinsic()
470 body->AddSuccessor(exit_block); in BuildIntrinsic()
Dloop_optimization.h317 HBasicBlock* body,
323 HBasicBlock* body,
Dinduction_var_analysis.h237 HBasicBlock* body,
270 HBasicBlock* body,
Dload_store_elimination_test.cc1568 GET_BLOCK(body); in TEST_F()
1599 CHECK(loop_if->IfTrueSuccessor() == body); in TEST_F()
1607 body->AddInstruction(body_set); in TEST_F()
1608 body->AddInstruction(body_add); in TEST_F()
1609 body->AddInstruction(body_goto); in TEST_F()
1662 GET_BLOCK(body); in TEST_F()
1693 CHECK(loop_if->IfTrueSuccessor() == body); in TEST_F()
1701 body->AddInstruction(body_set); in TEST_F()
1702 body->AddInstruction(body_add); in TEST_F()
1703 body->AddInstruction(body_goto); in TEST_F()
Dloop_optimization.cc899 HBasicBlock* body = (header->GetSuccessors()[0] == exit) in TryOptimizeInnerLoopFinite() local
909 bool is_empty = IsEmptyBody(body); in TryOptimizeInnerLoopFinite()
916 preheader->MergeInstructionsWith(body); in TryOptimizeInnerLoopFinite()
918 body->DisconnectAndDelete(); in TryOptimizeInnerLoopFinite()
942 return TryVectorizePredicated(node, body, exit, main_phi, trip_count); in TryOptimizeInnerLoopFinite()
944 return TryVectorizedTraditional(node, body, exit, main_phi, trip_count); in TryOptimizeInnerLoopFinite()
949 HBasicBlock* body, in TryVectorizePredicated() argument
966 VectorizePredicated(node, body, exit); in TryVectorizePredicated()
973 HBasicBlock* body, in TryVectorizedTraditional() argument
983 VectorizeTraditional(node, body, exit, trip_count); in TryVectorizedTraditional()
Dnodes.cc2712 HBasicBlock* body = GetBlocks()[1]; in InlineInto() local
2715 DCHECK(!body->IsExitBlock()); in InlineInto()
2716 DCHECK(!body->IsInLoop()); in InlineInto()
2717 HInstruction* last = body->GetLastInstruction(); in InlineInto()
2720 invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions()); in InlineInto()
2721 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock()); in InlineInto()
3025 HBasicBlock* body, in TransformLoopForVectorization() argument
3060 size_t index_of_body = IndexOfElement(reverse_post_order_, body); in TransformLoopForVectorization()
Dnodes.h505 HBasicBlock* body,
/art/test/702-LargeBranchOffset/
Dgenerate43 body = " ".join(["synchronized(lock) { value++; }"] * 512) variable
44 dst.write(TEMPLATE.strip().replace("BODY", body))
/art/test/800-smali/smali/
Db_22881413.smali76 # 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/
Dchecker.py62 max_line_no = compiler_pass.start_line_no + len(compiler_pass.body)
65 for line in compiler_pass.body:
DREADME41 curly brackets need to be used inside the body of the regex, they need to be
/art/tools/checker/match/
Dfile.py177 new_variables = match_lines(statement, c1_pass.body[i], variables)
187 self.c1_length = len(c1_pass.body)
241 if match_lines(statement, self.c1_pass.body[i], self.variables) is not None:
/art/tools/checker/file_format/checker/
Dparser.py204 body = var[colon_pos + 1:-2]
205 statement.add_expression(TestExpression.create_variable_definition(name, body))
/art/tools/luci/config/
Dmain.star107 body = io.read_file("luci-notify.template"),
/art/test/559-checker-irreducible-loop/smali/
DIrreducibleLoop.smali500 # back edge, and not the body.
/art/runtime/
DAndroid.bp20 // (empty) body is called.
/art/build/boot/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt153 Lcom/android/okhttp/Cache$CacheRequestImpl;->body()Lcom/android/okhttp/okio/Sink;
154 Lcom/android/okhttp/Cache$CacheRequestImpl;->body:Lcom/android/okhttp/okio/Sink;
646 Lcom/android/okhttp/internal/http/CacheRequest;->body()Lcom/android/okhttp/okio/Sink;
1127 Lcom/android/okhttp/Request$Builder;->body:Lcom/android/okhttp/RequestBody;
1150 Lcom/android/okhttp/Request;->body()Lcom/android/okhttp/RequestBody;
1151 Lcom/android/okhttp/Request;->body:Lcom/android/okhttp/RequestBody;
1180 Lcom/android/okhttp/Response$Builder;->body(Lcom/android/okhttp/ResponseBody;)Lcom/android/okhttp/R…
1181 Lcom/android/okhttp/Response$Builder;->body:Lcom/android/okhttp/ResponseBody;
1206 Lcom/android/okhttp/Response;->body()Lcom/android/okhttp/ResponseBody;
1207 Lcom/android/okhttp/Response;->body:Lcom/android/okhttp/ResponseBody;
/art/build/boot/
Dboot-image-profile.txt310 HSPLcom/android/okhttp/Response$Builder;->body(Lcom/android/okhttp/ResponseBody;)Lcom/android/okhtt…
335 HSPLcom/android/okhttp/Response;->body()Lcom/android/okhttp/ResponseBody;