Searched refs:info (Results 76 - 100 of 145) sorted by relevance

123456

/art/sigchainlib/
H A Dsigchain.cc123 static void sigchainlib_managed_handler_sigaction(int sig, siginfo_t* info, void* context) { argument
124 InvokeUserSignalHandler(sig, info, context);
141 extern "C" void InvokeUserSignalHandler(int sig, siginfo_t* info, void* context) { argument
157 if (managed(sig, info, context)) {
176 action.sa_sigaction(sig, info, context);
H A Dsigchain_dummy.cc64 siginfo_t* info ATTRIBUTE_UNUSED,
/art/build/
H A DAndroid.common_build.mk58 $(info Disabling ART_BUILD_TARGET_NDEBUG)
61 $(info Disabling ART_BUILD_TARGET_DEBUG)
64 $(info Disabling ART_BUILD_HOST_NDEBUG)
67 $(info Disabling ART_BUILD_HOST_DEBUG)
70 $(info Enabling ART_BUILD_HOST_STATIC)
83 $(info Enabling ART_JIT because of existence of art/JIT_ART)
/art/compiler/optimizing/
H A Doptimizing_compiler.cc944 debug::MethodDebugInfo info = debug::MethodDebugInfo(); local
945 info.trampoline_name = nullptr;
946 info.dex_file = dex_file;
947 info.class_def_index = class_def_idx;
948 info.dex_method_index = method_idx;
949 info.access_flags = access_flags;
950 info.code_item = code_item;
951 info.isa = codegen->GetInstructionSet();
952 info.deduped = false;
953 info
[all...]
H A Dfind_loops_test.cc122 HLoopInformation* info = block->GetLoopInformation(); local
123 const BitVector& blocks = info->GetBlocks();
340 HLoopInformation* info = graph->GetBlocks()[3]->GetLoopInformation(); local
341 ASSERT_EQ(1u, info->NumberOfBackEdges());
342 ASSERT_FALSE(info->GetHeader()->Dominates(info->GetBackEdges()[0]));
H A Dinduction_var_range_test.cc170 /** Constructs a wrap-around induction consisting of a constant, followed info */
173 HInductionVarAnalysis::InductionInfo* info) {
175 HInductionVarAnalysis::kWrapAround, CreateConst(initial), info, Primitive::kPrimInt);
187 bool NeedsTripCount(HInductionVarAnalysis::InductionInfo* info) { argument
188 return range_.NeedsTripCount(info);
199 Value GetMin(HInductionVarAnalysis::InductionInfo* info, argument
201 return range_.GetVal(info, induc, /* in_body */ true, /* is_min */ true);
204 Value GetMax(HInductionVarAnalysis::InductionInfo* info, argument
206 return range_.GetVal(info, induc, /* in_body */ true, /* is_min */ false);
221 bool IsExact(HInductionVarAnalysis::InductionInfo* info, int64_ argument
171 CreateWrapAround( int32_t initial, HInductionVarAnalysis::InductionInfo* info) argument
225 IsAtMost(HInductionVarAnalysis::InductionInfo* info, int64_t* value) argument
229 IsAtLeast(HInductionVarAnalysis::InductionInfo* info, int64_t* value) argument
[all...]
H A Dgraph_visualizer.cc570 ReferenceTypeInfo info = instruction->IsLoadClass() local
574 if (info.IsValid()) {
575 StartAttributeStream("klass") << PrettyDescriptor(info.GetTypeHandle().Get());
578 StartAttributeStream("exact") << std::boolalpha << info.IsExact() << std::noboolalpha;
676 for (SlowPathCodeInfo info : disasm_info_->GetSlowPathIntervals()) {
677 output_ << " 0 0 disasm " << info.slow_path->GetDescription() << "\n";
678 disassembler_->Disassemble(output_, info.code_interval.start, info.code_interval.end);
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DInstructionSwapper.java151 Log.info("Swapping " + toBeSwapped + " with " + swappedWith);
157 Log.info("Now " + swappedWith + " is swapped with " + toBeSwapped);
H A DArithOpChanger.java111 OpcodeInfo oldOpcodeInfo = randomInsn.insn.info;
140 randomInsn.insn.info = newOpcodeInfo;
142 Log.info("Changed " + oldInsnString + " to " + randomInsn);
151 Opcode opcode = mInsn.insn.info.opcode;
159 Opcode opcode = mInsn.insn.info.opcode;
H A DBranchShifter.java163 Log.info("Shifted the target of " + branchInsn + " to point to " + newTargetInsn);
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc49 void FaultManager::HandleNestedSignal(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
110 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
138 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
208 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
/art/runtime/gc/space/
H A Dlarge_object_space.h181 size_t GetSlotIndexForAllocationInfo(const AllocationInfo* info) const;
187 uintptr_t GetAddressForAllocationInfo(const AllocationInfo* info) const {
188 return GetAllocationAddressForSlot(GetSlotIndexForAllocationInfo(info));
191 void RemoveFreePrev(AllocationInfo* info) REQUIRES(lock_);
205 // Side table for allocation info, one per page.
/art/runtime/
H A Dprofiler.cc756 // Bad summary info. It should be count/nullcount/bootcount
768 std::vector<std::string> info; local
769 Split(line, '/', &info);
770 if (info.size() != 3 && info.size() != 4) {
774 std::string methodname = info[0];
775 uint32_t total_count = strtoul(info[1].c_str(), nullptr, 10);
776 uint32_t size = strtoul(info[2].c_str(), nullptr, 10);
778 if (type == kProfilerBoundedStack && info.size() == 4) {
780 std::string context_counts_str = info[
848 std::vector<std::string> info; local
[all...]
H A Doat_file.cc575 static int callback(struct dl_phdr_info *info ATTRIBUTE_UNUSED,
691 static int callback(struct dl_phdr_info *info, size_t /* size */, void *data) {
703 for (int i = 0; i < info->dlpi_phnum; i++) {
704 if (info->dlpi_phdr[i].p_type == PT_LOAD) {
705 uint8_t* vaddr = reinterpret_cast<uint8_t*>(info->dlpi_addr +
706 info->dlpi_phdr[i].p_vaddr);
707 size_t memsz = info->dlpi_phdr[i].p_memsz;
716 for (int i = 0; i < info->dlpi_phnum; i++) {
717 if (info->dlpi_phdr[i].p_type == PT_LOAD) {
718 uint8_t* vaddr = reinterpret_cast<uint8_t*>(info
[all...]
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java64 public OpcodeInfo info; field in class:Instruction
104 newInsn.info = info;
121 info = getOpcodeInfo(opcodeValue);
122 if (info == null) {
131 vregA = info.format.getA(rawBytes);
132 vregB = info.format.getB(rawBytes);
133 vregC = info.format.getC(rawBytes);
136 if (info.format.needsInvokeFormatInfo()) {
152 info
[all...]
H A DOffsetTracker.java390 Log.info("Updating offset in MapItem (type: " + mapItem.type + ") after "
415 Log.info("Calling insertNewOffsettableAsFirstEverTypeList()");
436 Log.info("Calling insertNewOffsettableAsFirstEverField()");
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DFormat51l.java27 file.writeByte((byte) insn.info.value);
/art/tools/dexfuzz/src/dexfuzz/program/
H A DCodeTranslator.java112 ContainsTarget containsTarget = (ContainsTarget) mInsn.insn.info.format;
119 ContainsTarget containsTarget = (ContainsTarget) mInsn.insn.info.format;
179 ContainsTarget containsTarget = (ContainsTarget) mInsn.insn.info.format;
184 ContainsTarget containsTarget = (ContainsTarget) mInsn.insn.info.format;
385 ContainsTarget containsTarget = (ContainsTarget) switchInsn.insn.info.format;
452 ContainsTarget containsTarget = (ContainsTarget) switchInsn.insn.info.format;
554 nop.insn.info = Instruction.getOpcodeInfo(Opcode.NOP);
570 Opcode opcode = insn.info.opcode;
582 Opcode opcode = insn.info.opcode;
590 return (insn.info
[all...]
H A DIdCreator.java207 Log.info(String.format("Created new MethodIdItem for %s %s %s, index: 0x%04x",
281 Log.info(String.format("Created new ClassIdItem for %s, index: 0x%04x",
368 Log.info(String.format("Created new StringIdItem and StringDataItem for %s, index: 0x%04x",
444 Log.info(String.format("Created new FieldIdItem for %s %s %s, index: 0x%04x",
637 Log.info("Need to create first type list.");
742 Log.info(String.format("Created new ProtoIdItem for %s, index: 0x%04x",
/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java180 Log.info("Executing: " + command);
201 Log.info("Return value: " + result.returnValue);
/art/test/004-SignalTest/
H A Dsignaltest.cc50 static void signalhandler(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
/art/compiler/dex/
H A Ddex_to_dex_compiler.cc349 for (QuickenedInfo info : dex_compiler.GetQuickenedInfo()) {
350 builder.PushBackUnsigned(info.dex_pc);
351 builder.PushBackUnsigned(info.dex_member_index);
/art/profman/
H A Dprofman.cc84 UsageError(" --dump-output-to-fd=<number>: redirects --dump-info-for output to a file");
215 ProfileCompilationInfo info; local
216 if (!info.Load(fd)) {
217 std::cerr << "Cannot load profile info from fd=" << fd << "\n";
220 std::string this_dump = banner + "\n" + info.DumpInfo(dex_files) + "\n";
/art/runtime/gc/collector/
H A Dmark_compact.h117 virtual void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info)
121 const RootInfo& info)
H A Dsemi_space.h148 virtual void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info) OVERRIDE
152 const RootInfo& info) OVERRIDE

Completed in 465 milliseconds

123456