HomeSort by relevance Sort by last modified time
    Searched refs:Addr (Results 51 - 75 of 312) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/x86/
smc1.c 34 typedef unsigned int Addr;
51 void set_dest ( Addr dest )
87 set_dest ( (Addr)&p );
90 set_dest ( (Addr)&q );
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 124 void addConstantPoolEntryAddr(unsigned CPI, intptr_t Addr) {
126 ConstPoolId2AddrMap[CPI] = Addr;
141 void addJumpTableBaseAddr(unsigned JTI, intptr_t Addr) {
143 JumpTableId2AddrMap[JTI] = Addr;
155 void addPCLabelAddr(unsigned Id, intptr_t Addr) {
156 PCLabelMap.insert(std::make_pair(Id, Addr));
162 intptr_t getIndirectSymAddr(void *Addr) const {
163 DenseMap<void*,intptr_t>::const_iterator I= Sym2IndirectSymMap.find(Addr);
ARMJITInfo.cpp 125 // <addr>
162 void *Addr;
166 // Branch to the corresponding function addr.
181 Addr = (void*)JCE.getCurrentPCValue();
182 if (!sys::Memory::setRangeWritable(Addr, 16)) {
188 JCE.emitWordLE(LazyPtr - (intptr_t(Addr)+4+8)); // func - (L_func$scv+8)
189 sys::Memory::InvalidateInstructionCache(Addr, 16);
190 if (!sys::Memory::setRangeExecutable(Addr, 16)) {
196 Addr = (void*)JCE.getCurrentPCValue();
197 if (!sys::Memory::setRangeWritable(Addr, 8))
    [all...]
  /external/valgrind/main/include/
pub_tool_replacemalloc.h 52 extern Bool VG_(addr_is_in_block)( Addr a, Addr start,
pub_tool_libcbase.h 120 if (LIKELY(0 == (((Addr)sz) & (Addr)(sizeof(UWord)-1)))
121 && LIKELY(0 == (((Addr)s) & (Addr)(sizeof(UWord)-1)))) {
148 #define VG_IS_2_ALIGNED(aaa_p) (0 == (((Addr)(aaa_p)) & ((Addr)0x1)))
149 #define VG_IS_4_ALIGNED(aaa_p) (0 == (((Addr)(aaa_p)) & ((Addr)0x3)))
150 #define VG_IS_8_ALIGNED(aaa_p) (0 == (((Addr)(aaa_p)) & ((Addr)0x7))
    [all...]
pub_tool_execontext.h 75 extern void VG_(apply_ExeContext)( void(*action)(UInt n, Addr ip),
101 ExeContext* VG_(make_depth_1_ExeContext_from_Addr)( Addr a );
111 ExeContext* VG_(make_ExeContext_from_StackTrace)( Addr* ips, UInt n_ips );
pub_tool_machine.h 104 Addr VG_(get_IP) ( ThreadId tid );
105 Addr VG_(get_SP) ( ThreadId tid );
142 /*OUT*/Addr* stack_min,
143 /*OUT*/Addr* stack_max );
146 extern Addr VG_(thread_get_stack_max) ( ThreadId tid );
153 extern Addr VG_(thread_get_altstack_min) ( ThreadId tid );
pub_tool_stacktrace.h 35 typedef Addr* StackTrace;
71 void(*action)(UInt n, Addr ip, void* opaque),
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 70 bool SelectADDRspii(SDValue Addr, SDValue &Base, SDValue &Offset);
71 bool SelectADDRdpii(SDValue Addr, SDValue &Base, SDValue &Offset);
72 bool SelectADDRcpii(SDValue Addr, SDValue &Base, SDValue &Offset);
90 bool XCoreDAGToDAGISel::SelectADDRspii(SDValue Addr, SDValue &Base,
93 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr))) {
98 if (Addr.getOpcode() == ISD::ADD) {
100 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr.getOperand(0)))
101 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
112 bool XCoreDAGToDAGISel::SelectADDRdpii(SDValue Addr, SDValue &Base,
114 if (Addr.getOpcode() == XCoreISD::DPRelativeWrapper)
    [all...]
  /external/valgrind/main/coregrind/m_aspacemgr/
priv_aspacemgr.h 91 extern SysRes ML_(am_do_munmap_NO_NOTIFY)(Addr start, SizeT length);
95 Addr old_addr,
101 Addr old_addr, Addr old_len,
102 Addr new_addr, Addr new_len
112 extern Int ML_(am_fcntl) ( Int fd, Int cmd, Addr arg );
  /external/valgrind/main/none/tests/amd64/
smc1.c 36 typedef unsigned long long int Addr;
55 void set_dest ( Addr dest )
57 assert(sizeof(Addr) == 8);
107 set_dest ( (Addr)&p );
110 set_dest ( (Addr)&q );
  /external/llvm/include/llvm/Support/
Memory.h 31 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
73 static void InvalidateInstructionCache(const void *Addr, size_t Len);
87 static bool setRangeExecutable(const void *Addr, size_t Size);
91 static bool setRangeWritable(const void *Addr, size_t Size);
  /external/valgrind/main/drd/
drd_thread_bitmap.h 36 Bool bm_access_load_1_triggers_conflict(const Addr a1)
44 Bool bm_access_load_2_triggers_conflict(const Addr a1)
62 Bool bm_access_load_4_triggers_conflict(const Addr a1)
80 Bool bm_access_load_8_triggers_conflict(const Addr a1)
105 Bool bm_access_load_triggers_conflict(const Addr a1, const Addr a2)
113 Bool bm_access_store_1_triggers_conflict(const Addr a1)
121 Bool bm_access_store_2_triggers_conflict(const Addr a1)
139 Bool bm_access_store_4_triggers_conflict(const Addr a1)
157 Bool bm_access_store_8_triggers_conflict(const Addr a1
    [all...]
  /external/valgrind/main/helgrind/
hg_errors.h 52 Addr data_addr, Int szB, Bool isWrite,
58 void HG_(record_error_UnlockBogus) ( Thread*, Addr );
60 void HG_(record_error_LockOrder) ( Thread*, Addr, Addr,
81 /*OUT*/Addr* payload,
83 Addr data_addr );
  /external/valgrind/main/exp-ptrcheck/
h_main.h 49 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n);
53 Addr Seg__addr(Seg* seg);
70 void h_new_mem_startup( Addr a, SizeT len,
72 void h_new_mem_mmap( Addr a, SizeT len,
74 void h_die_mem_munmap( Addr a, SizeT len );
76 Addr base, SizeT size );
78 Char* s, Addr lo );
83 SizeT size, Addr f );
pc_common.h 40 Addr addr, SSizeT sszB,
43 void h_record_heap_error( Addr a, SizeT size, Seg* vseg, Bool is_write );
48 Addr lo, Addr hi, Seg* seglo, Seg* seghi );
sg_main.h 41 void sg_die_mem_stack ( Addr old_SP, SizeT len );
45 void sg_new_mem_mmap( Addr a, SizeT len,
47 void sg_new_mem_startup( Addr a, SizeT len,
49 void sg_die_mem_munmap ( Addr a, SizeT len );
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc32-linux.c 143 (Addr)mc, sizeof(struct vki_pt_regs) );
165 (Addr)mc, sizeof(struct vki_pt_regs) );
179 (Addr)&mc->mc_pad, sizeof(mc->mc_pad));
183 (Addr)&mc->mc_pad, sizeof(mc->mc_pad) );
185 VG_(discard_translations)( (Addr64)(Addr)&mc->mc_pad,
189 SET_SIGNAL_LR(tst, (Addr)(use_rt_sigreturn
190 ? (Addr)&VG_(ppc32_linux_SUBST_FOR_rt_sigreturn)
191 : (Addr)&VG_(ppc32_linux_SUBST_FOR_sigreturn)
226 //:: Addr retaddr;
238 //:: Addr retaddr
    [all...]
  /external/chromium/net/disk_cache/
addr.h 50 class Addr {
52 Addr() : value_(0) {}
53 explicit Addr(CacheAddr address) : value_(address) {}
54 Addr(FileType file_type, int max_blocks, int block_file, int index) {
block_files.h 16 #include "net/disk_cache/addr.h"
36 MappedFile* GetFile(Addr address);
41 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
46 void DeleteBlock(Addr address, bool deep);
57 bool IsValid(Addr address);
  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 35 /// Addr - The actual address we're analyzing.
36 Value *Addr;
44 PHITransAddr(Value *addr, const TargetData *td) : Addr(addr), TD(td) {
46 if (Instruction *I = dyn_cast<Instruction>(Addr))
50 Value *getAddr() const { return Addr; }
71 /// PredBB. This returns true on failure and sets Addr to null.
  /external/valgrind/main/cachegrind/
cg_branchpred.c 89 static ULong do_cond_branch_predict ( Addr instr_addr, Word takenW )
136 static Addr btac[N_BTAC]; /* BTAC; presumably auto-zeroed */
138 static ULong do_ind_branch_predict ( Addr instr_addr, Addr actual )
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readpdb.h 43 Addr obj_avma,
  /external/valgrind/main/coregrind/
pub_core_sigframe.h 48 Addr sp_top_of_frame,
pub_core_signals.h 72 extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
73 extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
74 extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
78 /* Extend the stack to cover addr, if possible */
79 extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);

Completed in 593 milliseconds

1 23 4 5 6 7 8 91011>>