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

1 2 3 4 5 6 7 891011>>

  /frameworks/compile/libbcc/lib/ExecutionEngine/
MCCacheReader.cpp 411 if (void *Addr = FindRuntimeFunction(name)) {
412 return Addr;
416 if (void *Addr =
418 return Addr;
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 101 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
102 addGlobalMapping(F, Addr);
103 return Addr;
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 47 int readByte(uint64_t Addr, uint8_t *Byte) const {
48 if (Addr >= getExtent())
50 *Byte = Bytes[Addr].first;
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 194 Addr last_address;
198 Addr address;
345 Addr adr;
396 adr = *((Addr *)data);
400 (Int)op_code, (Addr)adr);
887 (Int)adv, (Addr)state_machine_regs.address);
    [all...]
readxcoff.c 371 Addr first; /* first address; always known */
372 Addr last; /* last address; may be an overestimate */
524 /* Now in di->data_avma: Addr data_avma, */
530 Addr toc_avma,
687 cand.last = (Addr)csect_last;
1485 Addr addr = s->first; local
    [all...]
readdwarf3.c 396 Addr cu_svma;
447 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
474 Addr* pA;
488 pA = (Addr*)p;
490 p += sizeof(Addr);
492 pA = (Addr*)p;
494 p += sizeof(Addr);
508 vg_assert(sizeof(UWord) == sizeof(Addr));
524 * ((Addr*)p) = 0; /*aMin*/ p += sizeof(Addr)
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
priv_syswrap-aix5.h 45 extern Addr ML_(allocstack)(ThreadId tid);
64 extern void ML_(aix5debugstuff_show_tstate) ( Addr, HChar* who );
66 extern HChar* ML_(aix5debugstuff_pc_to_fnname) ( Addr pc );
priv_syswrap-linux.h 38 extern Addr ML_(allocstack) ( ThreadId tid );
39 extern void ML_(call_on_new_stack_0_1) ( Addr stack, Addr retaddr,
  /external/valgrind/main/exp-ptrcheck/
pc_common.c 105 XE_Heap, // h: mismatched ptr/addr segments on load/store
125 Addr addr; member in struct:__anon12657::__anon12658::__anon12659
131 Addr addr; member in struct:__anon12657::__anon12658::__anon12660
146 Addr lo;
147 Addr hi;
157 Addr addr, SSizeT sszB,
163 xe.XE.SorG.addr = addr
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 234 Addr guest;
235 Addr host;
242 #define TRANSTAB_BOGUS_GUEST_ADDR ((Addr)1)
675 VG_(tt_fast)[cno].guest = (Addr)key;
676 VG_(tt_fast)[cno].host = (Addr)tcptr;
873 Addr startaddr = (Addr) ptr;
874 Addr endaddr = startaddr + nbytes;
875 Addr cls;
876 Addr addr local
    [all...]
m_errormgr.c 136 Addr addr; // Used frequently member in struct:_Error
152 Addr VG_(get_error_address) ( Error* err )
154 return err->addr;
306 static void printSuppForIp_XML(UInt n, Addr ip, void* uu_opaque)
319 static void printSuppForIp_nonXML(UInt n, Addr ip, void* textV)
523 Addr ip = ips[i];
625 void construct_error ( Error* err, ThreadId tid, ErrorKind ekind, Addr a,
646 err->addr = a;
662 ErrorKind ekind, Addr a, Char* s, void* extra
    [all...]
  /external/valgrind/main/drd/
drd_clientreq.c 80 DRD_(malloclike_block)(vg_tid, arg[1]/*addr*/, arg[2]/*size*/);
84 if (arg[1] && ! DRD_(freelike_block)(vg_tid, arg[1]/*addr*/))
88 .addr = 0,
182 DRD_(pthread_cond_initializer) = (Addr)arg[1];
333 const Addr cond = arg[1];
334 const Addr mutex = arg[2];
344 const Addr cond = arg[1];
345 const Addr mutex = arg[2];
  /external/valgrind/main/drd/tests/
unit_bitmap.c 55 Bool DRD_(is_suppressed)(const Addr a1, const Addr a2)
64 struct { Addr address; SizeT size; BmAccessTypeT access_type; }
189 const Addr lb = make_address(2, 0) - 2 * BITS_PER_UWORD;
190 const Addr ub = make_address(2, 0) + 2 * BITS_PER_UWORD;
  /external/valgrind/main/lackey/
lk_main.c 401 IRAtom* addr; member in struct:__anon12790
442 static VG_REGPARM(2) void trace_instr(Addr addr, SizeT size)
444 VG_(printf)("I %08lx,%lu\n", addr, size);
447 static VG_REGPARM(2) void trace_load(Addr addr, SizeT size)
449 VG_(printf)(" L %08lx,%lu\n", addr, size);
452 static VG_REGPARM(2) void trace_store(Addr addr, SizeT size)
454 VG_(printf)(" S %08lx,%lu\n", addr, size)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 108 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
715 bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr,
717 Value *Repl = Addr;
723 worklist.push_back(Addr);
793 // Check to see if any of the instructions supersumed by this addr mode are
818 Value *&SunkAddr = SunkAddrs[Addr];
822 if (SunkAddr->getType() != Addr->getType())
823 SunkAddr = Builder.CreateBitCast(SunkAddr, Addr->getType());
887 SunkAddr = Constant::getNullValue(Addr->getType());
889 SunkAddr = Builder.CreateIntToPtr(Result, Addr->getType(), "sunkaddr")
    [all...]
  /external/valgrind/main/callgrind/
sim.c 62 Addr memline, iaddr;
109 * - Addr CLG_(bb_base) (instruction start address of original BB)
113 Addr CLG_(bb_base);
142 typedef CacheModelResult (*simcall_type)(Addr, UChar);
238 * CacheModelResult cachesim_I1_ref(Addr a, UChar size)
239 * CacheModelResult cachesim_D1_ref(Addr a, UChar size)
277 static CacheResult cachesim_ref(cache_t2* c, Addr a, UChar size)
298 VG_(printf)("addr: %lx size: %u sets: %d %d", a, size, set1, set2);
305 CacheModelResult cachesim_I1_ref(Addr a, UChar size)
313 CacheModelResult cachesim_D1_ref(Addr a, UChar size
    [all...]
debug.c 374 void CLG_(print_addr)(Addr addr)
382 if (addr == 0) {
383 VG_(printf)("%08lx", addr);
387 CLG_(get_debug_info)(addr, fl_buf, fn_buf, &ln, &di);
390 VG_(printf)("%#lx", addr);
392 VG_(printf)("%#lx %s", addr, fn_buf);
410 void CLG_(print_addr_ln)(Addr addr)
412 CLG_(print_addr)(addr);
    [all...]
main.c 786 Addr IRConst2Addr(IRConst* con)
788 Addr addr; local
790 if (sizeof(Addr) == 4) {
792 addr = con->Ico.U32;
794 else if (sizeof(Addr) == 8) {
796 addr = con->Ico.U64;
799 VG_(tool_panic)("Callgrind: invalid Addr type");
801 return addr;
816 Addr instrAddr =0, jumpDst
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 337 llvm::Value *Addr =
341 CGF.EmitCXXDestructorCall(D, Dtor_Base, BaseIsVirtual, Addr);
    [all...]
  /external/llvm/include/llvm-c/
ExecutionEngine.h 124 void* Addr);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 492 void RuntimeDyldMachO::reassignSymbolAddress(StringRef Name, uint8_t *Addr) {
494 SymbolTable[Name] = Addr;
506 << " from '" << Name << " (" << format("%p", Addr) << ")"
510 resolveRelocation(Target, Addr, isPCRel, Type, Size);
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 396 SDValue Addr = N->getOperand(1);
400 if (Addr.getOpcode() == AlphaISD::GPRelLo) {
405 MVT::Glue, Addr.getOperand(0),
408 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R27, Addr, InFlag);
  /external/valgrind/main/exp-bbv/
bbv_main.c 82 Addr last_rep_addr; /* rep counting values */
93 Addr BB_addr; /* used as key, must be first */
229 static VG_REGPARM(1) void per_instruction_BBV_rep(Addr addr)
232 if (bbv_thread[current_thread].last_rep_addr!=addr) {
238 bbv_thread[current_thread].last_rep_addr=addr;
272 static Int get_inst_type(Int len, Addr addr)
289 inst_pointer=(unsigned char *)addr;
325 inst_pointer=(unsigned char *)addr;
    [all...]
  /external/valgrind/main/cachegrind/
cg_main.c 145 Addr instr_addr;
152 Addr SB_addr; // key; MUST BE FIRST
209 static void get_debug_info(Addr instr_addr, Char file[FILE_LEN],
249 static LineCC* get_lineCC(Addr origAddr)
362 void log_1I_1Dr_cache_access(InstrInfo* n, Addr data_addr, Word data_size)
377 void log_1I_1Dw_cache_access(InstrInfo* n, Addr data_addr, Word data_size)
392 void log_0I_1Dr_cache_access(InstrInfo* n, Addr data_addr, Word data_size)
402 void log_0I_1Dw_cache_access(InstrInfo* n, Addr data_addr, Word data_size)
571 SB_info* get_SB_info(IRSB* sbIn, Addr origAddr)
643 InstrInfo* setup_InstrInfo ( CgState* cgs, Addr instr_addr, UInt instr_len
    [all...]
  /external/valgrind/main/helgrind/
hg_errors.c 177 Addr data_addr;
184 /* halloc/haddr/hszB describe the addr if it is a heap block. */
186 Addr haddr;
209 Addr lock_ga; /* purported address of the lock */
219 Addr before_ga; /* always locked first in prog. history */
220 Addr after_ga;
329 Addr acc_addr = xe->XE.Race.data_addr;
360 Addr data_addr, Int szB, Bool isWrite,
454 void HG_(record_error_UnlockBogus) ( Thread* thr, Addr lock_ga )
470 Thread* thr, Addr before_ga, Addr after_ga
    [all...]

Completed in 1571 milliseconds

1 2 3 4 5 6 7 891011>>