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

1 23 4 5 6 7 8

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ScheduleDAGInstrs.h 152 const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
155 assert((Addr == 0 || Addr == &SUnits[0]) &&
ELF.h 172 uint64_t Addr; // sh_addr - The mem addr this section is in.
194 : BinaryObject(name, isLittleEndian, is64Bit), Type(0), Flags(0), Addr(0),
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 248 void* Addr) {
249 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr);
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCJITInfo.cpp 360 extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
369 void *Addr = (void*)JCE.getCurrentPCValue();
377 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit);
378 sys::Memory::InvalidateInstructionCache(Addr, 7*4);
379 return Addr;
382 void *Addr = (void*)JCE.getCurrentPCValue();
405 sys::Memory::InvalidateInstructionCache(Addr, 10*4);
406 return Addr;
  /external/swiftshader/third_party/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/VEX/pub/
libvex_basictypes.h 136 typedef unsigned long Addr;
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 45 typedef llvm::ELF::Elf32_Addr Addr; // Program address
63 typedef llvm::ELF::Elf64_Addr Addr;
  /prebuilts/go/darwin-x86/src/syscall/
dll_windows.go 101 addr: a,
124 addr uintptr
127 // Addr returns the address of the procedure represented by p.
129 func (p *Proc) Addr() uintptr {
130 return p.addr
145 return Syscall(p.Addr(), uintptr(len(a)), 0, 0, 0)
147 return Syscall(p.Addr(), uintptr(len(a)), a[0], 0, 0)
149 return Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], 0)
151 return Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], a[2])
153 return Syscall6(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], 0, 0
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
dll_windows.go 101 addr: a,
124 addr uintptr
127 // Addr returns the address of the procedure represented by p.
129 func (p *Proc) Addr() uintptr {
130 return p.addr
145 return Syscall(p.Addr(), uintptr(len(a)), 0, 0, 0)
147 return Syscall(p.Addr(), uintptr(len(a)), a[0], 0, 0)
149 return Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], 0)
151 return Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], a[2])
153 return Syscall6(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], 0, 0
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/
EbcSupport.c 93 UINTN Addr;
117 Addr = EbcLLGetEbcEntryPoint ();
145 VmContext.Ip = (VMIP) Addr;
252 UINTN Addr;
261 Addr = EbcLLGetEbcEntryPoint ();
277 VmContext.Ip = (VMIP) Addr;
374 UINT64 Addr;
463 Addr = (UINT64) 0xCA112EBCCA112EBC;
471 // Next is simply Addr[62:22] (41 bits) of the address
473 Code[1] = RShiftU64 (Addr, 22) & 0x1ffffffffff;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/Ping6/
Ping6.c 600 EFI_IPv6_ADDRESS *Addr;
709 Addr = &(IfInfo->AddressInfo[AddrIndex].Address);
710 if (EFI_IP6_EQUAL (&Private->SrcAddress, Addr)) {
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Pei/PlatformInit/
PlatformEarlyInit.c 115 UINT32 Addr;
150 Addr = Bar0 + R_IOH_MAC_GMAC_REG_8;
151 MacVer = *((volatile UINT32 *) (UINTN)(Addr));
153 DEBUG ((EFI_D_INFO, "Ioh MAC [B:%d, D:%d, F:%d] VER:%04x ADDR:",
163 Addr = Bar0 + R_IOH_MAC_GMAC_REG_17;
165 *((volatile UINT32 *) (UINTN)(Addr)) = Data32;
166 Wrote = (volatile UINT8 *) (UINTN)(Addr);
178 Addr = Bar0 + R_IOH_MAC_GMAC_REG_16;
183 *((volatile UINT32 *) (UINTN)(Addr)) = Data32;
184 Wrote = (volatile UINT8 *) (UINTN)(Addr);
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 343 const SUnit *Addr = SUnits.empty() ? nullptr : &SUnits[0];
346 assert((Addr == nullptr || Addr == &SUnits[0]) &&
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 39 CompileCallbackInfo(TargetAddress Addr, CompileFtor &Compile)
40 : Addr(Addr), Compile(Compile) {}
42 TargetAddress getAddress() const { return Addr; }
48 TargetAddress Addr;
81 if (auto Addr = Compile())
82 return Addr;
351 Constant *createIRTypedAddress(FunctionType &FT, TargetAddress Addr);
OrcRemoteTargetRPCAPI.h 58 char *Addr = reinterpret_cast<char *>(static_cast<uintptr_t>(Dst));
62 return C.readBytes(Addr, Size);
123 typedef Function<CallIntVoidId, int32_t(TargetAddress Addr)> CallIntVoid;
126 int32_t(TargetAddress Addr, std::vector<std::string> Args)>
140 void(TargetAddress Addr, uint32_t Size)>
177 typedef Function<RegisterEHFramesId, void(TargetAddress Addr, uint32_t Size)>
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 291 void* Addr) {
292 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 139 uint64_t Addr = *AddrOrErr;
143 Functions.push_back((void*)Addr);
147 FunctionDescToIntelJITFormat(*Wrapper, Name->data(), Addr, Size);
148 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
153 DILineInfoToIntelJITFormat((uintptr_t)Addr, It->first, It->second));
181 MethodIDs[(void*)Addr] = FunctionMessage.method_id;
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.h 41 uint8_t *Addr =
44 M.SectionsAllocatedSinceLastLoad.insert(Addr);
45 return Addr;
51 uint8_t *Addr = ClientMM->allocateDataSection(Size, Alignment, SectionID,
53 M.SectionsAllocatedSinceLastLoad.insert(Addr);
54 return Addr;
70 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
72 return ClientMM->registerEHFrames(Addr, LoadAddr, Size);
75 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr,
77 return ClientMM->deregisterEHFrames(Addr, LoadAddr, Size)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 194 uint8_t *Addr;
196 Addr = Section.getAddressWithOffset(i->second);
209 Addr = Section.getAddressWithOffset(Section.getStubOffset());
214 resolveRelocation(TargetRE, (uint64_t)Addr);
  /external/llvm/lib/Target/AMDGPU/
SILoadStoreOptimizer.cpp 171 int AddrIdx = AMDGPU::getNamedOperandIdx(I->getOpcode(), AMDGPU::OpName::addr);
200 const MachineOperand *AddrReg = TII->getNamedOperand(*I, AMDGPU::OpName::addr);
236 .addOperand(*AddrReg) // addr
295 const MachineOperand *Addr = TII->getNamedOperand(*I, AMDGPU::OpName::addr);
335 .addOperand(*Addr) // addr
345 unsigned OrigRegs[] = { Data0->getReg(), Data1->getReg(), Addr->getReg() };
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 404 uint64_t Addr = Sym.getValue();
422 CurrentObjectAddresses[*Name] = Addr;
468 uint64_t Addr = Sym.getValue();
478 MainBinarySymbolAddresses[Name] = Addr;
  /external/valgrind/coregrind/
fixup_macho_loadcmds.c 144 typedef UWord Addr;
  /prebuilts/go/darwin-x86/src/net/
net.go 104 // Addr represents a network end point address.
109 type Addr interface {
133 LocalAddr() Addr
136 RemoteAddr() Addr
183 err = &OpError{Op: "read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
195 err = &OpError{Op: "write", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
207 err = &OpError{Op: "close", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
213 // The Addr returned is shared by all invocations of LocalAddr, so
215 func (c *conn) LocalAddr() Addr {
223 // The Addr returned is shared by all invocations of RemoteAddr, s
    [all...]
  /prebuilts/go/linux-x86/src/net/
net.go 104 // Addr represents a network end point address.
109 type Addr interface {
133 LocalAddr() Addr
136 RemoteAddr() Addr
183 err = &OpError{Op: "read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
195 err = &OpError{Op: "write", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
207 err = &OpError{Op: "close", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
213 // The Addr returned is shared by all invocations of LocalAddr, so
215 func (c *conn) LocalAddr() Addr {
223 // The Addr returned is shared by all invocations of RemoteAddr, s
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiBaseTypes.h 77 UINT8 Addr[4];
81 UINT8 Addr[16];
85 UINT8 Addr[32];
89 UINT32 Addr[4];

Completed in 510 milliseconds

1 23 4 5 6 7 8