Searched defs:info (Results 1 - 25 of 60) sorted by relevance

123

/art/compiler/optimizing/
H A Dside_effects_analysis.cc83 void SideEffectsAnalysis::UpdateLoopEffects(HLoopInformation* info, SideEffects effects) { argument
84 int id = info->GetHeader()->GetBlockId();
H A Dfind_loops_test.cc130 HLoopInformation* info = block->GetLoopInformation(); local
131 const BitVector& blocks = info->GetBlocks();
348 HLoopInformation* info = graph->GetBlocks().Get(3)->GetLoopInformation(); local
349 ASSERT_FALSE(info->GetHeader()->Dominates(info->GetBackEdges().Get(0)));
H A Dlicm.cc32 HLoopInformation* info = instruction->GetBlock()->GetLoopInformation(); local
37 if (input_loop != nullptr && input_loop->IsIn(*info)) {
49 if (input_loop != nullptr && input_loop->IsIn(*info)) {
52 bool is_loop_header_phi = IsPhiOf(input, info->GetHeader());
66 static void UpdateLoopPhisIn(HEnvironment* environment, HLoopInformation* info) { argument
70 if (input != nullptr && IsPhiOf(input, info->GetHeader())) {
H A Dgraph_visualizer.cc260 HLoopInformation* info = instruction->GetBlock()->GetLoopInformation(); local
261 if (info == nullptr) {
264 output_ << "B" << info->GetHeader()->GetBlockId() << " )";
/art/runtime/arch/mips/
H A Dfault_handler_mips.cc38 void FaultManager::HandleNestedSignal(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
74 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
90 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
108 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) { argument
117 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); // BVA addr
/art/runtime/arch/mips64/
H A Dfault_handler_mips64.cc38 void FaultManager::HandleNestedSignal(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
74 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
90 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
108 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) { argument
117 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); // BVA addr
/art/runtime/
H A Druntime_android.cc34 void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) { argument
49 if (kDumpHeapObjectOnSigsevg && heap != nullptr && info != nullptr) {
51 heap->DumpObject(LOG(INTERNAL_FATAL), reinterpret_cast<mirror::Object*>(info->si_addr));
55 old_action.sa_sigaction(signal_number, info, raw_context);
H A Druntime_linux.cc55 utsname info; local
56 uname(&info);
59 os << info.sysname << " " << info.release << " (" << info.machine << ")";
304 void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) { argument
335 info->si_code,
336 GetSignalCodeName(signal_number, info->si_code))
337 << (has_address ? StringPrintf(" fault addr %p", info->si_addr) : "") << "\n"
351 if (kDumpHeapObjectOnSigsevg && heap != nullptr && info !
[all...]
H A Dfault_handler.cc81 static void art_fault_handler(int sig, siginfo_t* info, void* context) { argument
82 fault_manager.HandleFault(sig, info, context);
86 static void art_nested_signal_handler(int sig, siginfo_t* info, void* context) { argument
87 fault_manager.HandleNestedSignal(sig, info, context);
148 void FaultManager::HandleFault(int sig, siginfo_t* info, void* context) { argument
154 if (IsInGeneratedCode(info, context, true)) {
158 if (handler->Action(sig, info, context)) {
182 InvokeUserSignalHandler(sig, info, context);
239 if (handler->Action(sig, info, context)) {
272 InvokeUserSignalHandler(sig, info, contex
[all...]
H A Dstack_map.cc105 uint32_t StackMap::GetDexPc(const CodeInfo& info) const {
106 return LoadAt(region_, info.NumberOfBytesForDexPc(), info.ComputeStackMapDexPcOffset());
109 void StackMap::SetDexPc(const CodeInfo& info, uint32_t dex_pc) { argument
110 StoreAt(region_, info.NumberOfBytesForDexPc(), info.ComputeStackMapDexPcOffset(), dex_pc);
113 uint32_t StackMap::GetNativePcOffset(const CodeInfo& info) const {
114 return LoadAt(region_, info.NumberOfBytesForNativePc(), info.ComputeStackMapNativePcOffset());
117 void StackMap::SetNativePcOffset(const CodeInfo& info, uint32_ argument
128 SetDexRegisterMapOffset(const CodeInfo& info, uint32_t offset) argument
143 SetInlineDescriptorOffset(const CodeInfo& info, uint32_t offset) argument
157 SetRegisterMask(const CodeInfo& info, uint32_t mask) argument
[all...]
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DContainsPoolIndex.java40 public PoolIndexKind getPoolIndexKind(OpcodeInfo info); argument
H A DFormat3rc.java29 file.writeByte((byte) insn.info.value);
62 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
63 if (info.opcode == Opcode.FILLED_NEW_ARRAY_RANGE) {
H A DFormat21c.java29 file.writeByte((byte) insn.info.value);
66 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
67 if (info.opcode == Opcode.CONST_STRING) {
70 if (info.opcode == Opcode.CONST_CLASS
71 || info.opcode == Opcode.CHECK_CAST
72 || info.opcode == Opcode.NEW_INSTANCE) {
H A DFormat22c.java29 file.writeByte((byte) insn.info.value);
66 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
67 if (info.opcode == Opcode.INSTANCE_OF || info.opcode == Opcode.NEW_ARRAY) {
H A DFormat22cs.java30 //file.writeByte((byte) insn.info.value);
67 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
H A DFormat31c.java28 file.writeByte((byte) insn.info.value);
65 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
H A DFormat35c.java29 file.writeByte((byte) insn.info.value);
69 public PoolIndexKind getPoolIndexKind(OpcodeInfo info) { argument
70 if (info.opcode == Opcode.FILLED_NEW_ARRAY) {
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java48 public static void info(String msg) { method in class:Log
/art/compiler/dex/quick/mips/
H A Dfp_mips.cc291 bool MipsMir2Lir::GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) { argument
293 UNUSED(info, is_min, is_long);
/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...]
/art/compiler/dex/quick/arm/
H A Dfp_arm.cc171 RegisterInfo* info = GetRegInfo(rl_src.reg); local
172 RegStorage src_low = info->FindMatchingView(RegisterInfo::kLowSingleStorageMask)->GetReg();
174 RegStorage src_high = info->FindMatchingView(RegisterInfo::kHighSingleStorageMask)->GetReg();
195 RegisterInfo* info = GetRegInfo(rl_src.reg); local
196 RegStorage src_low = info->FindMatchingView(RegisterInfo::kLowSingleStorageMask)->GetReg();
198 RegStorage src_high = info->FindMatchingView(RegisterInfo::kHighSingleStorageMask)->GetReg();
388 bool ArmMir2Lir::GenInlinedAbsFloat(CallInfo* info) { argument
389 if (info->result.location == kLocInvalid) {
392 RegLocation rl_dest = info->result;
393 RegLocation rl_src = UpdateLoc(info
406 GenInlinedAbsDouble(CallInfo* info) argument
433 GenInlinedSqrt(CallInfo* info) argument
[all...]
/art/compiler/dex/quick/arm64/
H A Dfp_arm64.cc372 bool Arm64Mir2Lir::GenInlinedAbsFloat(CallInfo* info) { argument
373 if (info->result.location == kLocInvalid) {
376 RegLocation rl_dest = info->result;
377 RegLocation rl_src = UpdateLoc(info->args[0]);
391 bool Arm64Mir2Lir::GenInlinedAbsDouble(CallInfo* info) { argument
392 if (info->result.location == kLocInvalid) {
395 RegLocation rl_dest = info->result;
396 RegLocation rl_src = UpdateLocWide(info->args[0]);
410 bool Arm64Mir2Lir::GenInlinedSqrt(CallInfo* info) { argument
411 RegLocation rl_src = info
420 GenInlinedCeil(CallInfo* info) argument
430 GenInlinedFloor(CallInfo* info) argument
440 GenInlinedRint(CallInfo* info) argument
450 GenInlinedRound(CallInfo* info, bool is_double) argument
467 GenInlinedMinMaxFP(CallInfo* info, bool is_min, bool is_double) argument
[all...]
/art/compiler/dex/quick/
H A Dmir_to_lir-inl.h101 inline LIR* Mir2Lir::NewLIR2NoDest(int opcode, int src, int info) { argument
106 LIR* insn = RawLIR(current_dalvik_offset_, opcode, src, info);
121 inline LIR* Mir2Lir::NewLIR4(int opcode, int dest, int src1, int src2, int info) { argument
126 LIR* insn = RawLIR(current_dalvik_offset_, opcode, dest, src1, src2, info);
148 DCHECK(reginfo_map_[reg] != nullptr) << "No info for 0x" << reg;
158 DCHECK(reginfo_map_[reg] != nullptr) << "No info for 0x" << reg;
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc409 bool StackOverflowHandler::Action(int, siginfo_t* info, void* context) { argument
413 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr);
/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
154 if (managed(sig, info, context)) {
169 action.sa_sigaction(sig, info, context);

Completed in 407 milliseconds

123