Searched refs:pc (Results 51 - 75 of 877) sorted by relevance

1234567891011>>

/external/llvm/test/MC/X86/AlignedBundling/
H A Dlock-without-bundle-mode-error.s1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
H A Dunlock-without-lock-error.s1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
H A DProjectConverterTest.java41 ProjectConverter pc = new ProjectConverter(Constant.LOG4J_TO_SLF4J, new NopProgressListener());
43 pc.convertProject(projectFolder);
/external/ltrace/sysdeps/linux-gnu/mips/
H A Dtrace.c82 the pc points at the instruction just after the mips "syscall"
94 /* get the user's pc (plus 8) */
95 long pc = (long)get_instruction_pointer(proc); local
97 int insn = ptrace(PTRACE_PEEKTEXT, proc->pid, pc - 4, 0);
98 int num = ptrace(PTRACE_PEEKTEXT, proc->pid, pc - 8, 0);
147 int mips_next_pcs(struct process *proc, uint32_t pc, uint32_t *newpc) argument
154 inst = ptrace(PTRACE_PEEKTEXT, proc->pid, pc, 0);
167 newpc[nr++] = pc + 8;
168 newpc[nr++] = pc + 4 +
172 newpc[nr++] = pc
272 uint32_t pc = (uint32_t) get_instruction_pointer(proc); local
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_stack.h29 // Get the stack trace with the given pc and bp.
30 // The pc will be in the position 0 of the resulting stack trace.
34 uptr pc, uptr bp, void *context,
37 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast);
50 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
53 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
81 #define GET_STACK_TRACE_FATAL(pc, bp) \
83 GetStackTraceWithPcBpAndContext(&stack, kStackTraceMax, pc, bp, 0, \
89 (sig).pc, (sig).bp, (sig).context, \
33 GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, uptr pc, uptr bp, void *context, bool fast) argument
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.h49 void Init(ThreadState *thr, uptr pc, uptr addr, u64 uid);
74 void AllocBlock(ThreadState *thr, uptr pc, uptr p, uptr sz);
75 uptr FreeBlock(ThreadState *thr, uptr pc, uptr p);
76 bool FreeRange(ThreadState *thr, uptr pc, uptr p, uptr sz);
77 void ResetRange(ThreadState *thr, uptr pc, uptr p, uptr sz);
80 SyncVar* GetOrCreateAndLock(ThreadState *thr, uptr pc,
98 SyncVar* GetAndLock(ThreadState *thr, uptr pc, uptr addr, bool write_lock,
H A Dtsan_mman.cc65 static void SignalUnsafeCall(ThreadState *thr, uptr pc) { argument
70 ObtainCurrentStack(thr, pc, &stack);
79 void *user_alloc(ThreadState *thr, uptr pc, uptr sz, uptr align, bool signal) { argument
86 OnUserAlloc(thr, pc, (uptr)p, sz, true);
88 SignalUnsafeCall(thr, pc);
92 void *user_calloc(ThreadState *thr, uptr pc, uptr size, uptr n) { argument
95 void *p = user_alloc(thr, pc, n * size);
101 void user_free(ThreadState *thr, uptr pc, void *p, bool signal) { argument
103 OnUserFree(thr, pc, (uptr)p, true);
106 SignalUnsafeCall(thr, pc);
109 OnUserAlloc(ThreadState *thr, uptr pc, uptr p, uptr sz, bool write) argument
118 OnUserFree(ThreadState *thr, uptr pc, uptr p, bool write) argument
126 user_realloc(ThreadState *thr, uptr pc, void *p, uptr sz) argument
[all...]
H A Dtsan_mman.h28 void *user_alloc(ThreadState *thr, uptr pc, uptr sz,
30 void *user_calloc(ThreadState *thr, uptr pc, uptr sz, uptr n);
32 void user_free(ThreadState *thr, uptr pc, void *p, bool signal = true);
33 void *user_realloc(ThreadState *thr, uptr pc, void *p, uptr sz);
34 void *user_alloc_aligned(ThreadState *thr, uptr pc, uptr sz, uptr align);
H A Dtsan_rtl_mutex.cc26 void ReportDeadlock(ThreadState *thr, uptr pc, DDReport *r);
30 uptr pc; member in struct:__tsan::Callback
32 Callback(ThreadState *thr, uptr pc) argument
34 , pc(pc) {
39 u32 Unwind() override { return CurrentStackId(thr, pc); }
43 void DDMutexInit(ThreadState *thr, uptr pc, SyncVar *s) { argument
44 Callback cb(thr, pc);
49 static void ReportMutexMisuse(ThreadState *thr, uptr pc, ReportType typ, argument
59 ObtainCurrentStack(thr, pc,
65 MutexCreate(ThreadState *thr, uptr pc, uptr addr, bool rw, bool recursive, bool linker_init) argument
84 MutexDestroy(ThreadState *thr, uptr pc, uptr addr) argument
143 MutexLock(ThreadState *thr, uptr pc, uptr addr, int rec, bool try_lock) argument
188 MutexUnlock(ThreadState *thr, uptr pc, uptr addr, bool all) argument
231 MutexReadLock(ThreadState *thr, uptr pc, uptr addr, bool trylock) argument
266 MutexReadUnlock(ThreadState *thr, uptr pc, uptr addr) argument
298 MutexReadOrWriteUnlock(ThreadState *thr, uptr pc, uptr addr) argument
345 MutexRepair(ThreadState *thr, uptr pc, uptr addr) argument
353 Acquire(ThreadState *thr, uptr pc, uptr addr) argument
371 AcquireGlobal(ThreadState *thr, uptr pc) argument
380 Release(ThreadState *thr, uptr pc, uptr addr) argument
392 ReleaseStore(ThreadState *thr, uptr pc, uptr addr) argument
414 AfterSleep(ThreadState *thr, uptr pc) argument
425 AcquireImpl(ThreadState *thr, uptr pc, SyncClock *c) argument
433 ReleaseImpl(ThreadState *thr, uptr pc, SyncClock *c) argument
442 ReleaseStoreImpl(ThreadState *thr, uptr pc, SyncClock *c) argument
451 AcquireReleaseImpl(ThreadState *thr, uptr pc, SyncClock *c) argument
461 ReportDeadlock(ThreadState *thr, uptr pc, DDReport *r) argument
[all...]
/external/llvm/test/MC/ARM/
H A Darm-load-store-multiple-deprecated.s13 stm sp!, {r0, pc}
15 @ CHECK: stm sp!, {r0, pc}
21 stm r1!, {r0, sp, pc}
23 @ CHECK: stm r1!, {r0, sp, pc}
25 stm r2!, {sp, pc}
27 @ CHECK: stm r2!, {sp, pc}
29 stm sp!, {pc}
31 @ CHECK: stm sp!, {pc}
41 stmda sp!, {r0, pc}
43 @ CHECK: stmda sp!, {r0, pc}
[all...]
H A Dthumb-load-store-multiple.s18 ldm r0!, {lr, pc}
20 @ CHECK: ldm r0!, {lr, pc}
23 ldmeq r0!, {r1, pc}
26 @ CHECK: ldmeq r0!, {r1, pc}
34 ldmdb r0!, {lr, pc}
37 ldmeq r0!, {r1, pc}
40 @ CHECK: ldmeq r0!, {r1, pc}
48 stm r0!, {r2, pc}
50 stm r0!, {sp, pc}
58 stmdb r0!, {r2, pc}
[all...]
/external/mesa3d/src/glx/
H A Drenderpix.c72 * \param pc Pointer to end of the command header
84 GLubyte * pc, GLubyte * modes)
108 __glXSendLargeCommand(gc, gc->pc, pc - gc->pc, buf, compsize);
148 pc += hdrlen;
151 row, pc, pixelHeaderPC);
152 pc += image1len;
156 column, pc, NULL);
157 pc
81 __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid * src, GLubyte * pc, GLubyte * modes) argument
[all...]
/external/clang/test/CXX/expr/expr.mptr.oper/
H A Dp5.cpp15 const X0 *pc,
27 (pc->*pm)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attribute__\(\(thiscall\)\))?}}' drops 'const' qualifier}}
28 (pc->*pmc)();
29 (pc->*pmv)(); // expected-error-re{{call to pointer to member function of type 'void (){{( __attribute__\(\(thiscall\)\))?}} volatile' drops 'const' qualifier}}
30 (pc->*pmcv)();
10 test_object_cvquals(void (X0::*pm)(), void (X0::*pmc)() const, void (X0::*pmv)() volatile, void (X0::*pmcv)() const volatile, X0 *p, const X0 *pc, volatile X0 *pv, const volatile X0 *pcv, X0 &o, const X0 &oc, volatile X0 &ov, const volatile X0 &ocv) argument
/external/lldb/include/lldb/Target/
H A DUnwind.h59 lldb::addr_t pc; local
64 if (!DoGetFrameInfoAtIndex (idx, cfa, pc))
75 lldb::addr_t& pc)
78 return DoGetFrameInfoAtIndex (frame_idx, cfa, pc);
107 lldb::addr_t& pc) = 0;
73 GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t& cfa, lldb::addr_t& pc) argument
/external/linux-tools-perf/src/include/linux/
H A Drbtree_augmented.h90 #define __rb_parent(pc) ((struct rb_node *)(pc & ~3))
92 #define __rb_color(pc) ((pc) & 1)
93 #define __rb_is_black(pc) __rb_color(pc)
94 #define __rb_is_red(pc) (!__rb_color(pc))
132 unsigned long pc; local
142 pc
[all...]
/external/elfutils/src/libdwfl/
H A Ddwfl_frame_regs.c49 dwfl_thread_state_register_pc (Dwfl_Thread *thread, Dwarf_Word pc)
54 state->pc = pc;
/external/libogg/
H A DMakefile.am11 pkgconfig_DATA = ogg.pc
15 ogg.m4 ogg.pc.in ogg-uninstalled.pc.in \
/external/apache-harmony/luni/src/test/resources/net.resources/HTTP/html/testres231/UCL/
H A DUCL.jar ... .net.SocketPermission sp java.security.PermissionCollection pc
/external/compiler-rt/lib/builtins/arm/
H A Daeabi_dcmp.S30 pop { r4, pc } SEPARATOR \
33 pop { r4, pc } SEPARATOR \
H A Daeabi_fcmp.S30 pop { r4, pc } SEPARATOR \
33 pop { r4, pc } SEPARATOR \
H A Daeabi_idivmod.S27 pop { pc }
H A Daeabi_uidivmod.S28 pop { pc }
H A Dsync_synchronize.S29 ldmfd sp!, {r7, pc}
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc20 uptr StackTrace::GetNextInstructionPc(uptr pc) { argument
22 return pc + 8;
24 return pc + 1;
70 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top, argument
73 trace_buffer[0] = pc;
85 if (pc1 != pc) {
105 uptr BufferedStackTrace::LocatePcInTrace(uptr pc) { argument
110 if (MatchPc(pc, trace[i], kPcThreshold))
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc44 uptr pc; member in struct:__tsan::SymbolizeContext
59 ctx.pc = addr;
103 void __tsan_read(ThreadState *thr, void *addr, void *pc) { argument
104 MemoryRead(thr, (uptr)pc, (uptr)addr, kSizeLog1);
107 void __tsan_read_pc(ThreadState *thr, void *addr, uptr callpc, uptr pc) { argument
110 MemoryRead(thr, (uptr)pc, (uptr)addr, kSizeLog1);
115 void __tsan_write(ThreadState *thr, void *addr, void *pc) { argument
116 MemoryWrite(thr, (uptr)pc, (uptr)addr, kSizeLog1);
119 void __tsan_write_pc(ThreadState *thr, void *addr, uptr callpc, uptr pc) { argument
122 MemoryWrite(thr, (uptr)pc, (upt
127 __tsan_read_range(ThreadState *thr, void *addr, uptr size, uptr pc) argument
131 __tsan_write_range(ThreadState *thr, void *addr, uptr size, uptr pc) argument
135 __tsan_func_enter(ThreadState *thr, void *pc) argument
149 __tsan_go_start(ThreadState *parent, ThreadState **pthr, void *pc) argument
[all...]

Completed in 467 milliseconds

1234567891011>>