HomeSort by relevance Sort by last modified time
    Searched defs:Addr (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 36 /// Addr - The actual address we're analyzing.
37 Value *Addr;
48 PHITransAddr(Value *addr, const DataLayout *DL)
49 : Addr(addr), DL(DL), TLI(nullptr) {
51 if (Instruction *I = dyn_cast<Instruction>(Addr))
55 Value *getAddr() const { return Addr; }
76 /// PredBB. This returns true on failure and sets Addr to null.
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 47 uintptr_t Addr = 0;
54 Addr = (uintptr_t)MB.base();
55 uintptr_t EndOfBlock = Addr + MB.size();
57 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1);
59 MemGroup.FreeMem[i] = sys::MemoryBlock((void*)(Addr + Size),
60 EndOfBlock - Addr - Size);
61 return (uint8_t*)Addr;
89 Addr = (uintptr_t)MB.base();
90 uintptr_t EndOfBlock = Addr + MB.size()
    [all...]
  /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/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/chromium_org/third_party/android_crazy_linker/src/src/
elf_traits.h 20 typedef Elf32_Addr Addr;
44 typedef Elf64_Addr Addr;
  /ndk/sources/android/crazy_linker/src/
elf_traits.h 20 typedef Elf32_Addr Addr;
44 typedef Elf64_Addr Addr;
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 180 uint64_t Addr;
183 if (I->getAddress(Addr)) continue;
186 if (Wrapper.op_write_native_code(Name.data(), Addr, (void*)Addr, Size)
190 << (void*)Addr << "-" << ((char*)Addr + Size) << "]\n");
209 uint64_t Addr;
210 if (I->getAddress(Addr)) continue;
212 if (Wrapper.op_unload_native_code(Addr) == -1) {
215 << (void*)Addr << "\n")
    [all...]
  /external/llvm/lib/ExecutionEngine/
RTDyldMemoryManager.cpp 96 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr,
101 const char *P = (const char *)Addr;
108 void RTDyldMemoryManager::deregisterEHFrames(uint8_t *Addr,
111 const char *P = (const char *)Addr;
120 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr,
128 __register_frame(Addr);
131 void RTDyldMemoryManager::deregisterEHFrames(uint8_t *Addr,
134 __deregister_frame(Addr);
273 uint64_t Addr = getSymbolAddress(Name);
275 if (!Addr && AbortOnFailure
    [all...]
  /external/llvm/lib/Target/ARM/
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/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 30 void sendAllocationResult(uint64_t Addr);
115 uint64_t Addr;
116 RT->allocateSpace(AllocSize, Alignment, Addr);
119 sendAllocationResult(Addr);
130 uint64_t Addr;
131 rc = ReadBytes(&Addr, 8);
135 if (!RT->isAllocatedMemory(Addr, BufferSize))
139 rc = ReadBytes((void*)Addr, BufferSize);
145 sys::Memory::InvalidateInstructionCache((void *)Addr, BufferSize);
160 uint64_t Addr;
    [all...]
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 42 auto *Addr = ConstantPointerNull::get(PtrType);
44 auto *Store1 = new StoreInst(Value, Addr, BB);
45 auto *Store2 = new StoreInst(Value, Addr, BB);
  /external/llvm/unittests/ExecutionEngine/JIT/
OProfileJITEventListenerTest.cpp 22 uint64_t Addr;
27 uint64_t addr,
31 , Addr(addr)
64 uint64_t addr,
69 OprofileNativeFunction func(name, addr, code, size);
73 EXPECT_TRUE(ReportedDebugFuncs.find(addr) == ReportedDebugFuncs.end());
75 ReportedDebugFuncs[addr];
87 uint64_t addr = reinterpret_cast<uint64_t>(code); local
88 NativeCodeMap::iterator i = ReportedDebugFuncs.find(addr);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 379 unsigned Addr = Entry.getOffset();
386 Addr += CU->getDebugInfoOffset();
388 AP->EmitLabelPlusOffset(CU->getSectionSym(), Addr,
391 AP->EmitLabelOffsetDifference(CU->getSectionSym(), Addr,
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 136 Value *Addr = AI->getPointerOperand();
141 // Given: atomicrmw some_op iN* %addr, iN %incr ordering
147 // %loaded = @load.linked(%addr)
149 // %stored = @store_conditional(%new, %addr)
172 TM->getTargetLowering()->emitLoadLinked(Builder, Addr, MemOpOrder);
219 Builder, NewVal, Addr, MemOpOrder);
236 Value *Addr = CI->getPointerOperand();
241 // Given: cmpxchg some_op iN* %addr, iN %desired, iN %new success_ord fail_ord
247 // %loaded = @load.linked(%addr)
252 // %stored = @store_conditional(%new, %addr)
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCObjectSymbolizer.cpp 41 StringRef findExternalFunctionAt(uint64_t Addr) override;
76 StringRef MCMachObjectSymbolizer::findExternalFunctionAt(uint64_t Addr) {
82 uint64_t StubIdx = (Addr - StubsStart) / StubSize;
107 uint64_t Addr = Value;
108 if (const SectionRef *S = findSectionContaining(Addr)) {
114 Contents = Contents.substr(Addr - SAddr);
190 StringRef MCObjectSymbolizer::findExternalFunctionAt(uint64_t Addr) {
204 static bool SectionStartsBefore(const SectionRef &S, uint64_t Addr) {
206 return SAddr < Addr;
209 const SectionRef *MCObjectSymbolizer::findSectionContaining(uint64_t Addr) {
    [all...]
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 206 void *Addr = (void*) (JCE.getCurrentPCValue());
207 if (!sys::Memory::setRangeWritable(Addr, 16))
238 sys::Memory::InvalidateInstructionCache(Addr, 16);
239 if (!sys::Memory::setRangeExecutable(Addr, 16))
242 return Addr;
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 374 extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
383 void *Addr = (void*)JCE.getCurrentPCValue();
391 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit);
392 sys::Memory::InvalidateInstructionCache(Addr, 7*4);
393 return Addr;
396 void *Addr = (void*)JCE.getCurrentPCValue();
419 sys::Memory::InvalidateInstructionCache(Addr, 10*4);
420 return Addr;
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.cpp 122 // Emit instructions to jump to Addr and store the starting address of
124 static void emitInstrForIndirectJump(intptr_t Addr,
128 if (isInt<13>(Addr)) {
129 // Emit: jmpl %g0+Addr, <scratch>
131 Insts.push_back(JMP_INST(0, LO10(Addr), scratch));
136 if (isUInt<32>(Addr)) {
137 // Emit: sethi %hi(Addr), scratch
138 // jmpl scratch+%lo(Addr), scratch
140 Insts.push_back(SETHI_INST(HI22(Addr), scratch));
141 Insts.push_back(JMP_INST(scratch, LO10(Addr), scratch))
    [all...]
  /external/llvm/lib/Target/X86/
X86AtomicExpandPass.cpp 212 Value *Addr = AI->getPointerOperand();
217 // Given: atomicrmw some_op iN* %addr, iN %incr ordering
221 // %init_loaded = load atomic iN* %addr
226 // %pair = cmpxchg iN* %addr, iN %loaded, iN %new
243 LoadInst *InitLoaded = Builder.CreateLoad(Addr);
256 Addr, Loaded, NewVal, Order,
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 68 bool SelectADDRspii(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)))
235 // (brind (int_xcore_checkevent (addr)))
237 SDValue Addr = N->getOperand(1);
238 if (Addr->getOpcode() != ISD::INTRINSIC_W_CHAIN)
240 unsigned IntNo = cast<ConstantSDNode>(Addr->getOperand(1))->getZExtValue()
    [all...]
XCoreLowerThreadLocal.cpp 215 Value *Addr = Builder.CreateInBoundsGEP(NewGV, Indices);
216 U->replaceUsesOfWith(GV, Addr);
  /external/llvm/tools/lli/
RemoteMemoryManager.cpp 139 uint64_t Addr = RemoteAddr + Offsets[i].second;
140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr);
143 << " to remote: 0x" << format("%llx", Addr) << "\n");
145 MappedSections[Addr] = Offsets[i].first;
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 206 uint64_t Addr;
209 if (I->getAddress(Addr)) continue;
214 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
218 outs() << " Line info @ " << It->first - Addr << ": "
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 104 std::string &Name, uint64_t &Addr,
111 uint64_t Addr;
116 return s1.Addr < s2.Addr;
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 49 typedef llvm::ELF::Elf32_Addr Addr; // Program address
68 typedef llvm::ELF::Elf64_Addr Addr;

Completed in 446 milliseconds

1 2 3 4