/art/compiler/optimizing/ |
D | graph_visualizer.cc | 188 output_(output), in HGraphVisualizerPrinter() 206 output_ << std::flush; in Flush() 211 output_ << "begin_" << name << "\n"; in StartTag() 218 output_ << "end_" << name << "\n"; in EndTag() 223 output_ << name << " \"" << property << "\"\n"; in PrintProperty() 228 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty() 233 output_ << name << "\n"; in PrintEmptyProperty() 238 output_ << name << " " << time(nullptr) << "\n"; in PrintTime() 243 output_ << name << " " << value << "\n"; in PrintInt() 248 output_ << " "; in AddIndent() [all …]
|
D | locations.h | 528 DCHECK(output_.IsInvalid()); 530 output_ = location; 538 DCHECK(output_.IsStackSlot() || output_.IsDoubleStackSlot() || output_.IsUnallocated()); in UpdateOut() 539 output_ = location; in UpdateOut() 567 Location Out() const { return output_; } in Out() 646 && output_.IsUnallocated() in OutputUsesSameAs() 647 && (output_.GetPolicy() == Location::kSameAsFirstInput); in OutputUsesSameAs() 683 Location output_; variable
|
D | graph_visualizer.h | 111 std::ostream* const output_;
|
D | register_allocator_test.cc | 767 first_sub->InputAt(0)->GetLocations()->output_ = Location::RegisterLocation(2); in SameAsFirstInputHint()
|
/art/libelffile/stream/ |
D | error_delaying_output_stream.h | 33 output_(output), in ErrorDelayingOutputStream() 41 if (!output_->WriteFully(buffer, byte_count)) { in WriteFully() 69 off_t actual_offset = output_->Seek(offset, whence); in Seek() 85 output_good_ = output_->Flush(); in Flush() 96 OutputStream* output_;
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_thumb2_test.cc | 251 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 252 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 256 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 314 CHECK_LE(offset, output_.size()); in GetOutputInsn32() 315 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn32() 316 return (static_cast<uint32_t>(output_[offset]) << 16) | in GetOutputInsn32() 317 (static_cast<uint32_t>(output_[offset + 1]) << 24) | in GetOutputInsn32() 318 (static_cast<uint32_t>(output_[offset + 2]) << 0) | in GetOutputInsn32() 319 (static_cast<uint32_t>(output_[offset + 3]) << 8); in GetOutputInsn32() 323 CHECK_LE(offset, output_.size()); in GetOutputInsn16() [all …]
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 51 output_(), in RelativePatcherTest() 74 output_.clear(); in TearDown() 92 output_.clear(); in Reset() 93 out_.reset(new VectorOutputStream("test output stream", &output_)); in Reset() 144 output_.reserve(output_size); in Link() 147 DCHECK(output_.empty()); in Link() 213 CHECK_EQ(output_.size(), output_size); in Link() 231 CHECK_LT(offset, output_.size()); in CheckLinkedMethod() 232 CHECK_LE(offset + expected_code.size(), output_.size()); in CheckLinkedMethod() 233 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size()); in CheckLinkedMethod() [all …]
|
/art/disassembler/ |
D | disassembler_arm.cc | 205 : Disassembler(options), disasm_(std::make_unique<CustomDisassembler>(output_, options)) {} in DisassemblerArm() 226 os << output_.str(); in Dump() 227 output_.str(std::string()); in Dump() 248 os << output_.str(); in Dump() 249 output_.str(std::string()); in Dump()
|
D | disassembler_arm.h | 45 std::ostringstream output_; variable
|
/art/dex2oat/ |
D | dex2oat_test.cc | 67 output_ = ""; in TearDown() 163 << "Failed to compile odex: " << error_msg << std::endl << output_; in GenerateOdexForTest() 182 return ::testing::AssertionFailure() << "Succeeded to compile odex: " << output_; in GenerateOdexForTest() 250 ForkAndExecResult res = ForkAndExec(argv, post_fork_fn, &output_); in Dex2Oat() 259 std::string output_ = ""; member in art::Dex2oatTest 310 EXPECT_NE(output_.find("Large app, accepted running with swap."), std::string::npos) in CheckHostResult() 311 << output_; in CheckHostResult() 313 EXPECT_EQ(output_.find("Large app, accepted running with swap."), std::string::npos) in CheckHostResult() 314 << output_; in CheckHostResult() 336 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_; in CheckHostValidity() [all …]
|
/art/runtime/hprof/ |
D | hprof.cc | 433 #define __ output_-> 459 output_ = &count_output; in Dump() 463 output_ = nullptr; in Dump() 525 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime); in ProcessBody() 535 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_END, kHprofTime); in ProcessBody() 536 output_->EndRecord(); in ProcessBody() 555 output_->EndRecord(); in ProcessHeader() 563 output_->StartNewRecord(HPROF_TAG_LOAD_CLASS, kHprofTime); in WriteClassTable() 581 output_->StartNewRecord(HPROF_TAG_STRING, kHprofTime); in WriteStringTable() 594 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime); in StartNewHeapDumpSegment() [all …]
|
/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64_test.cc | 224 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 225 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 229 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 416 ASSERT_EQ(thunk_offset + thunk_size, output_.size()); in TestNopsAdrpInsn2AndUseHasThunk() 418 ArrayRef<const uint8_t> thunk_code(&output_[thunk_offset], thunk_size); in TestNopsAdrpInsn2AndUseHasThunk() 551 CHECK_LE(offset, output_.size()); in GetOutputInsn() 552 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn() 553 return (static_cast<uint32_t>(output_[offset]) << 0) | in GetOutputInsn() 554 (static_cast<uint32_t>(output_[offset + 1]) << 8) | in GetOutputInsn() 555 (static_cast<uint32_t>(output_[offset + 2]) << 16) | in GetOutputInsn() [all …]
|
/art/tools/dexanalyze/ |
D | dexanalyze_strings.cc | 73 explicit Builder(PrefixStrings* output) : output_(output) {} in Builder() 77 PrefixStrings* const output_; member in art::dexanalyze::PrefixStrings::Builder 366 CHECK_EQ(output_->dictionary_.AddOffset(0u, 0u), prefix_idx++); in Build() 373 output_->dictionary_.GetOffset(node->value_, &prefix_offset, &existing_len); in Build() 391 prefix_offset = output_->dictionary_.AddPrefixData( in Build() 396 CHECK_EQ(output_->dictionary_.AddOffset(prefix_offset, str.length()), prefix_idx); in Build() 409 output_->dictionary_.GetOffset(node->value_, &offset, &length); in Build() 418 output_->AddString(prefix_idx, str.substr(best_length)); in Build()
|
/art/openjdkjvmti/ |
D | ti_class.cc | 388 : input_(input), output_(output) {} in RootUpdater() 396 *roots[i] = output_; in VisitRoots() 407 roots[i]->Assign(output_); in VisitRoots() 414 art::mirror::Class* output_; member in openjdkjvmti::ClassCallback::RootUpdater 428 : input_(root_input), output_(root_output) {} in FixupGlobalReferenceTables() 432 return output_; in FixupGlobalReferenceTables() 439 art::mirror::Class* output_; in FixupGlobalReferenceTables() member in openjdkjvmti::ClassCallback::FixupGlobalReferenceTables::WeakGlobalUpdate 452 : input_(root_input), output_(root_output) {} in FixupLocalReferenceTables() 458 RootUpdater local_update(local->input_, local->output_); in FixupLocalReferenceTables() 465 art::mirror::Class* output_; in FixupLocalReferenceTables() member in openjdkjvmti::ClassCallback::FixupLocalReferenceTables::LocalUpdate [all …]
|