/art/compiler/optimizing/ |
D | graph_visualizer.cc | 185 output_(output), in HGraphVisualizerPrinter() 203 output_ << std::flush; in Flush() 208 output_ << "begin_" << name << "\n"; in StartTag() 215 output_ << "end_" << name << "\n"; in EndTag() 220 output_ << name << " \"" << property << "\"\n"; in PrintProperty() 225 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty() 230 output_ << name << "\n"; in PrintEmptyProperty() 235 output_ << name << " " << time(nullptr) << "\n"; in PrintTime() 240 output_ << name << " " << value << "\n"; in PrintInt() 245 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 | 250 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 251 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 255 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 313 CHECK_LE(offset, output_.size()); in GetOutputInsn32() 314 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn32() 315 return (static_cast<uint32_t>(output_[offset]) << 16) | in GetOutputInsn32() 316 (static_cast<uint32_t>(output_[offset + 1]) << 24) | in GetOutputInsn32() 317 (static_cast<uint32_t>(output_[offset + 2]) << 0) | in GetOutputInsn32() 318 (static_cast<uint32_t>(output_[offset + 3]) << 8); in GetOutputInsn32() 322 CHECK_LE(offset, output_.size()); in GetOutputInsn16() [all …]
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 52 output_(), in RelativePatcherTest() 75 output_.clear(); in TearDown() 93 output_.clear(); in Reset() 94 out_.reset(new VectorOutputStream("test output stream", &output_)); in Reset() 145 output_.reserve(output_size); in Link() 148 DCHECK(output_.empty()); in Link() 208 CHECK_EQ(output_.size(), output_size); in Link() 226 CHECK_LT(offset, output_.size()); in CheckLinkedMethod() 227 CHECK_LE(offset + expected_code.size(), output_.size()); in CheckLinkedMethod() 228 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 | 66 output_ = ""; in TearDown() 147 << "Failed to compile odex: " << error_msg << std::endl << output_; in GenerateOdexForTest() 167 return ::testing::AssertionFailure() << "Succeeded to compile odex: " << output_; in GenerateOdexForTest() 236 ForkAndExecResult res = ForkAndExec(argv, post_fork_fn, &output_); in Dex2Oat() 245 std::string output_ = ""; member in art::Dex2oatTest 296 EXPECT_NE(output_.find("Large app, accepted running with swap."), std::string::npos) in CheckHostResult() 297 << output_; in CheckHostResult() 299 EXPECT_EQ(output_.find("Large app, accepted running with swap."), std::string::npos) in CheckHostResult() 300 << output_; in CheckHostResult() 322 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_; in CheckHostValidity() [all …]
|
/art/runtime/hprof/ |
D | hprof.cc | 434 #define __ output_-> 460 output_ = &count_output; in Dump() 464 output_ = nullptr; in Dump() 526 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime); in ProcessBody() 536 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_END, kHprofTime); in ProcessBody() 537 output_->EndRecord(); in ProcessBody() 556 output_->EndRecord(); in ProcessHeader() 564 output_->StartNewRecord(HPROF_TAG_LOAD_CLASS, kHprofTime); in WriteClassTable() 582 output_->StartNewRecord(HPROF_TAG_STRING, kHprofTime); in WriteStringTable() 595 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime); in StartNewHeapDumpSegment() [all …]
|
/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64_test.cc | 223 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 224 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 228 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 415 ASSERT_EQ(thunk_offset + thunk_size, output_.size()); in TestNopsAdrpInsn2AndUseHasThunk() 417 ArrayRef<const uint8_t> thunk_code(&output_[thunk_offset], thunk_size); in TestNopsAdrpInsn2AndUseHasThunk() 550 CHECK_LE(offset, output_.size()); in GetOutputInsn() 551 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn() 552 return (static_cast<uint32_t>(output_[offset]) << 0) | in GetOutputInsn() 553 (static_cast<uint32_t>(output_[offset + 1]) << 8) | in GetOutputInsn() 554 (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 | 383 : input_(input), output_(output) {} in RootUpdater() 391 *roots[i] = output_; in VisitRoots() 402 roots[i]->Assign(output_); in VisitRoots() 409 art::mirror::Class* output_; member in openjdkjvmti::ClassCallback::RootUpdater 423 : input_(root_input), output_(root_output) {} in FixupGlobalReferenceTables() 427 return output_; in FixupGlobalReferenceTables() 434 art::mirror::Class* output_; in FixupGlobalReferenceTables() member in openjdkjvmti::ClassCallback::FixupGlobalReferenceTables::WeakGlobalUpdate 447 : input_(root_input), output_(root_output) {} in FixupLocalReferenceTables() 453 RootUpdater local_update(local->input_, local->output_); in FixupLocalReferenceTables() 460 art::mirror::Class* output_; in FixupLocalReferenceTables() member in openjdkjvmti::ClassCallback::FixupLocalReferenceTables::LocalUpdate [all …]
|