/art/compiler/optimizing/ |
D | graph_visualizer.cc | 182 output_(output), in HGraphVisualizerPrinter() 200 output_ << std::flush; in Flush() 205 output_ << "begin_" << name << "\n"; in StartTag() 212 output_ << "end_" << name << "\n"; in EndTag() 217 output_ << name << " \"" << property << "\"\n"; in PrintProperty() 222 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty() 227 output_ << name << "\n"; in PrintEmptyProperty() 232 output_ << name << " " << time(nullptr) << "\n"; in PrintTime() 237 output_ << name << " " << value << "\n"; in PrintInt() 242 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() 678 Location output_; variable
|
D | graph_visualizer.h | 111 std::ostream* const output_;
|
D | register_allocator_test.cc | 797 first_sub->InputAt(0)->GetLocations()->output_ = Location::RegisterLocation(2); in SameAsFirstInputHint()
|
/art/compiler/linker/ |
D | error_delaying_output_stream.h | 31 output_(output), in ErrorDelayingOutputStream() 39 if (!output_->WriteFully(buffer, byte_count)) { in WriteFully() 67 off_t actual_offset = output_->Seek(offset, whence); in Seek() 83 output_good_ = output_->Flush(); in Flush() 94 OutputStream* output_;
|
D | relative_patcher_test.h | 69 output_(), in RelativePatcherTest() 70 out_("test output stream", &output_) { in RelativePatcherTest() 127 output_.reserve(output_size); in Link() 130 DCHECK(output_.empty()); in Link() 190 CHECK_EQ(output_.size(), output_size); in Link() 209 CHECK_LT(offset, output_.size()); in CheckLinkedMethod() 210 CHECK_LE(offset + expected_code.size(), output_.size()); in CheckLinkedMethod() 211 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size()); in CheckLinkedMethod() 286 std::vector<uint8_t> output_; variable
|
/art/compiler/linker/arm/ |
D | relative_patcher_thumb2_test.cc | 201 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 202 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 206 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 253 CHECK_LE(offset, output_.size()); in GetOutputInsn32() 254 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn32() 255 return (static_cast<uint32_t>(output_[offset]) << 16) | in GetOutputInsn32() 256 (static_cast<uint32_t>(output_[offset + 1]) << 24) | in GetOutputInsn32() 257 (static_cast<uint32_t>(output_[offset + 2]) << 0) | in GetOutputInsn32() 258 (static_cast<uint32_t>(output_[offset + 3]) << 8); in GetOutputInsn32() 262 CHECK_LE(offset, output_.size()); in GetOutputInsn16() [all …]
|
/art/dex2oat/ |
D | dex2oat_test.cc | 53 output_ = ""; in TearDown() 108 ASSERT_TRUE(success) << error_msg << std::endl << output_; 124 ASSERT_FALSE(success) << output_; 234 output_ += std::string(buffer, bytes_read); 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/disassembler/ |
D | disassembler_arm.cc | 193 : Disassembler(options), disasm_(std::make_unique<CustomDisassembler>(output_, options)) {} in DisassemblerArm() 213 os << output_.str(); in Dump() 214 output_.str(std::string()); in Dump() 234 os << output_.str(); in Dump() 235 output_.str(std::string()); in Dump()
|
D | disassembler_arm.h | 45 std::ostringstream output_; variable
|
/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/compiler/linker/arm64/ |
D | relative_patcher_arm64_test.cc | 180 if (output_.size() < thunk_offset + expected_code.size()) { in CheckThunk() 181 LOG(ERROR) << "output_.size() == " << output_.size() << " < " in CheckThunk() 185 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size()); in CheckThunk() 371 ASSERT_EQ(thunk_offset + thunk_size, output_.size()); in TestNopsAdrpInsn2AndUseHasThunk() 373 ArrayRef<const uint8_t> thunk_code(&output_[thunk_offset], thunk_size); in TestNopsAdrpInsn2AndUseHasThunk() 497 CHECK_LE(offset, output_.size()); in GetOutputInsn() 498 CHECK_GE(output_.size() - offset, 4u); in GetOutputInsn() 499 return (static_cast<uint32_t>(output_[offset]) << 0) | in GetOutputInsn() 500 (static_cast<uint32_t>(output_[offset + 1]) << 8) | in GetOutputInsn() 501 (static_cast<uint32_t>(output_[offset + 2]) << 16) | in GetOutputInsn() [all …]
|
/art/runtime/openjdkjvmti/ |
D | ti_class.cc | 425 : input_(input), output_(output) {} in RootUpdater() 433 *roots[i] = output_; in VisitRoots() 444 roots[i]->Assign(output_); in VisitRoots() 451 art::mirror::Class* output_; member in openjdkjvmti::ClassCallback::RootUpdater 465 : input_(root_input), output_(root_output) {} in FixupGlobalReferenceTables() 469 return output_; in FixupGlobalReferenceTables() 476 art::mirror::Class* output_; in FixupGlobalReferenceTables() member in openjdkjvmti::ClassCallback::FixupGlobalReferenceTables::WeakGlobalUpdate 489 : input_(root_input), output_(root_output) {} in FixupLocalReferenceTables() 495 RootUpdater local_update(local->input_, local->output_); in FixupLocalReferenceTables() 502 art::mirror::Class* output_; in FixupLocalReferenceTables() member in openjdkjvmti::ClassCallback::FixupLocalReferenceTables::LocalUpdate [all …]
|