Searched defs:Addr (Results 51 - 75 of 114) sorted by relevance

12345

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp298 uint64_t Addr = getExistingSymbolAddress(Name); local
299 if (Addr)
300 return Addr;
320 Addr = getExistingSymbolAddress(Name);
321 if (Addr)
322 return Addr;
360 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure); local
361 addGlobalMapping(F, Addr);
362 return Addr;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h256 void writeInt16BE(uint8_t *Addr, uint16_t Value) { argument
259 *Addr = (Value >> 8) & 0xFF;
260 *(Addr + 1) = Value & 0xFF;
263 void writeInt32BE(uint8_t *Addr, uint32_t Value) { argument
266 *Addr = (Value >> 24) & 0xFF;
267 *(Addr + 1) = (Value >> 16) & 0xFF;
268 *(Addr + 2) = (Value >> 8) & 0xFF;
269 *(Addr + 3) = Value & 0xFF;
272 void writeInt64BE(uint8_t *Addr, uint64_t Value) { argument
275 *Addr
339 updateGOTEntries(StringRef Name, uint64_t Addr) argument
[all...]
H A DRuntimeDyld.cpp56 uint64_t Addr = Sections[i].LoadAddress; local
58 << format("%p", (uint8_t *)Addr) << "\n");
59 resolveRelocationList(Relocations[i], Addr);
363 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *), local
365 if (!Addr)
368 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
369 memset(Addr, 0, TotalSize);
372 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
383 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
384 Addr
430 uint8_t *Addr; local
520 createStubFunction(uint8_t *Addr) argument
600 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
638 uint64_t Addr = 0; local
788 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
[all...]
H A DRuntimeDyldMachO.cpp47 uint64_t Addr; local
48 i->getAddress(Addr);
49 OldSectionAddrList[i->getRawDataRefImpl().d.a] = Addr;
75 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr) { argument
83 ((MachO::section_64 *)data)->addr = Addr;
85 ((MachO::section *)data)->addr = Addr;
95 updateSymbolAddress(*i, symAddr + Addr - oldAddr);
104 virtual void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr) { argument
108 ((MachO::nlist_64 *)data)->n_value = Addr;
110 ((MachO::nlist *)data)->n_value = Addr;
531 getSectionByAddress(const MachOObjectFile &Obj, uint64_t Addr) argument
735 uint64_t Addr = MachOObj.getOldSectionAddr(Sec); local
751 uint8_t *Addr; local
776 uint8_t *Addr; local
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp69 bool ComputeAddress(const Value *Obj, Address &Addr);
72 bool EmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
74 bool EmitStore(MVT VT, unsigned SrcReg, Address &Addr,
142 bool MipsFastISel::ComputeAddress(const Value *Obj, Address &Addr) { argument
151 Addr.Base.Reg = getRegForValue(Obj);
152 return Addr.Base.Reg != 0;
155 bool MipsFastISel::EmitLoad(MVT VT, unsigned &ResultReg, Address &Addr, argument
190 EmitInstLoad(Opc, ResultReg, Addr.Base.Reg, Addr.Offset);
214 bool MipsFastISel::EmitStore(MVT VT, unsigned SrcReg, Address &Addr, argument
[all...]
H A DMipsSEISelDAGToDAG.cpp253 bool MipsSEDAGToDAGISel::selectAddrFrameIndex(SDValue Addr, SDValue &Base, argument
255 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
256 EVT ValTy = Addr.getValueType();
266 bool MipsSEDAGToDAGISel::selectAddrFrameIndexOffset(SDValue Addr, SDValue &Base, argument
269 if (CurDAG->isBaseWithConstantOffset(Addr)) {
270 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
272 EVT ValTy = Addr.getValueType();
276 (Addr.getOperand(0)))
279 Base = Addr.getOperand(0);
290 bool MipsSEDAGToDAGISel::selectAddrRegImm(SDValue Addr, SDValu argument
340 selectAddrRegReg(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
352 selectAddrDefault(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
359 selectIntAddr(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
365 selectAddrRegImm10(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
377 selectAddrRegImm12(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
388 selectIntAddrMM(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
394 selectIntAddrMSA(SDValue Addr, SDValue &Base, SDValue &Offset) const argument
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp89 bool addrPointsToConstantData(Value *Addr);
90 int getMemoryAccessFuncIndex(Value *Addr);
239 bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) { argument
241 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr))
242 Addr = GEP->getPointerOperand();
244 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
250 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) {
283 Value *Addr = Load->getPointerOperand(); local
284 if (WriteTargets.count(Addr)) {
289 if (addrPointsToConstantData(Addr)) {
385 Value *Addr = IsWrite local
474 Value *Addr = LI->getPointerOperand(); local
489 Value *Addr = SI->getPointerOperand(); local
504 Value *Addr = RMWI->getPointerOperand(); local
521 Value *Addr = CASI->getPointerOperand(); local
552 getMemoryAccessFuncIndex(Value *Addr) argument
[all...]
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp94 std::string &Name, uint64_t &Addr,
104 if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
107 Addr = it->first.Addr;
93 getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address, std::string &Name, uint64_t &Addr, uint64_t &Size) const argument
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp330 void* Addr) {
331 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr); local
329 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
H A DExecutionEngine.cpp168 void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { argument
172 << "\' to [" << Addr << "]\n";);
174 assert((!CurVal || !Addr) && "GlobalMapping already established!");
175 CurVal = Addr;
180 EEState.getGlobalAddressReverseMap()[Addr];
203 void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) { argument
210 if (!Addr)
218 CurVal = Addr;
223 EEState.getGlobalAddressReverseMap()[Addr];
238 const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { argument
1167 InitializeMemory(const Constant *Init, void *Addr) argument
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp505 if (void *Addr = getPointerToGlobalIfAvailable(F))
506 return Addr; // Check if function already code gen'd
519 if (void *Addr = getPointerToGlobalIfAvailable(F))
520 return Addr;
524 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure); local
525 addGlobalMapping(F, Addr);
526 return Addr;
531 void *Addr = getPointerToGlobalIfAvailable(F); local
532 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
533 return Addr;
536 addPointerToBasicBlock(const BasicBlock *BB, void *Addr) argument
641 void *Addr = getPointerToGlobalIfAvailable(F); local
[all...]
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectDisassembler.cpp62 MemoryObject *MCObjectDisassembler::getRegionFor(uint64_t Addr) { argument
67 uint64_t MCObjectDisassembler::getEffectiveLoadAddr(uint64_t Addr) { argument
68 return Addr;
71 uint64_t MCObjectDisassembler::getOriginalLoadAddr(uint64_t Addr) { argument
72 return Addr;
369 for (uint64_t Addr = BeginAddr; Addr < EndAddr; Addr += InstSize) {
371 if (Dis.getInstruction(Inst, InstSize, *Region, Addr, nulls(),
374 TA = Module->createTextAtom(Addr, Add
518 getEffectiveLoadAddr(uint64_t Addr) argument
[all...]
/external/llvm/lib/Support/
H A Draw_ostream.cpp528 const void *Addr = static_cast<const void *>(Ptr); local
529 struct iovec IOV = {const_cast<void *>(Addr), Size };
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c81 typedef unsigned long int Addr; typedef
199 Addr start = (Addr)ptr;
201 Addr dsize = (Addr)dcache_line_size_;
202 Addr isize = (Addr)icache_line_size_;
205 Addr dstart = start & ~(dsize - 1);
206 Addr istart = start & ~(isize - 1);
207 Addr en
[all...]
/external/clang/lib/CodeGen/
H A DCGValue.h329 /// \param Addr - The base address of the bit-field sequence this
333 static LValue MakeBitfield(llvm::Value *Addr, argument
338 R.V = Addr;
363 llvm::Value *Addr; member in class:clang::CodeGen::AggValueSlot
429 AV.Addr = addr;
474 return Addr;
478 return Addr == nullptr;
H A DCGBlocks.cpp2212 llvm::Value *Addr; member in struct:__anon17810::CallBlockRelease
2213 CallBlockRelease(llvm::Value *Addr) : Addr(Addr) {} argument
2217 CGF.BuildBlockRelease(Addr, BLOCK_FIELD_IS_BYREF);
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1002 Value *Addr = Pointer.getAddr(); local
1005 Visited.insert(std::make_pair(I->getBB(), Addr));
1013 Addr));
1015 Result.push_back(NonLocalDepResult(I->getBB(), I->getResult(), Addr));
/external/llvm/lib/IR/
H A DDIBuilder.cpp1076 ArrayRef<Value *> Addr,
1078 assert(Addr.size() > 0 && "complex address is empty");
1089 MDNode::get(VMContext, Addr)
1072 createComplexVariable(unsigned Tag, DIDescriptor Scope, StringRef Name, DIFile F, unsigned LineNo, DITypeRef Ty, ArrayRef<Value *> Addr, unsigned ArgNo) argument
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp49 uintptr_t Addr = uintptr_t(Ptr); local
50 if (Addr + Size < Addr || Addr + Size < Size ||
51 Addr + Size > uintptr_t(M.getBufferEnd())) {
54 Obj = reinterpret_cast<const T *>(Addr);
93 const coff_symbol *Addr = reinterpret_cast<const coff_symbol*>(Ref.p); local
97 uintptr_t Offset = uintptr_t(Addr) - uintptr_t(base());
107 return Addr;
111 const coff_section *Addr local
431 getVaPtr(uint64_t Addr, uintptr_t &Res) const argument
440 getRvaPtr(uint32_t Addr, uintptr_t &Res) const argument
[all...]
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp149 uint64_t Addr, const void *Decoder);
151 uint64_t Addr,
154 uint64_t Addr, const void *Decoder);
156 uint64_t Addr,
159 uint64_t Addr, const void *Decoder);
161 uint64_t Addr,
164 uint64_t Addr, const void *Decoder);
166 uint64_t Addr, const void *Decoder);
168 uint64_t Addr, const void *Decoder);
170 uint64_t Addr, cons
266 DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
277 DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
295 DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
316 DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
337 DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
358 DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
379 DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
390 DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
412 DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
423 DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
446 DecodeVectorRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
468 DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
491 DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
514 DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
535 DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
558 DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
581 DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
591 DecodeFixedPointScaleImm32(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
600 DecodeFixedPointScaleImm64(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
607 DecodePCRelLabel19(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
699 DecodeVecShiftR64Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
704 DecodeVecShiftR64ImmNarrow(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
710 DecodeVecShiftR32Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
715 DecodeVecShiftR32ImmNarrow(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
721 DecodeVecShiftR16Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
726 DecodeVecShiftR16ImmNarrow(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
732 DecodeVecShiftR8Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
737 DecodeVecShiftL64Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
742 DecodeVecShiftL32Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
747 DecodeVecShiftL16Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
752 DecodeVecShiftL8Imm(llvm::MCInst &Inst, unsigned Imm, uint64_t Addr, const void *Decoder) argument
757 DecodeThreeAddrSRegInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
819 DecodeMoveImmInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
852 DecodeUnsignedLdStInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
913 DecodeSignedLdStInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1098 DecodeExclusiveLdStInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1173 DecodePairLdStInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1302 DecodeAddSubERegInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1359 DecodeLogicalImmInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1390 DecodeModImmInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1429 DecodeModImmTiedInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1447 DecodeAdrInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1466 DecodeBaseAddSubImm(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1502 DecodeUnconditionalBranch(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1519 DecodeSystemPStateInstruction(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
1537 DecodeTestAndBranch(llvm::MCInst &Inst, uint32_t insn, uint64_t Addr, const void *Decoder) argument
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp450 SDValue Addr; local
455 if (SelectDirectAddr(N1, Addr)) {
480 getI32Imm(fromTypeWidth), Addr, Chain };
632 SDValue Addr, Offset, Base; local
691 if (SelectDirectAddr(Op1, Addr)) {
741 getI32Imm(FromTypeWidth), Addr, Chain };
1046 SDValue Base, Offset, Addr; local
1053 if (SelectDirectAddr(Op1, Addr)) {
1192 SDValue Ops[] = { Addr, Chain };
1820 SDValue Addr; local
2001 SDValue Addr, Offset, Base; local
3495 SelectADDRsi_imp( SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) argument
3510 SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset) argument
3516 SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset) argument
3522 SelectADDRri_imp( SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset, MVT mvt) argument
3552 SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset) argument
3558 SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelDAGToDAG.cpp56 bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2);
82 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
83 bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg,
85 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset);
86 bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset);
87 bool SelectMUBUFAddr64(SDValue Addr, SDValue &Ptr, SDValue &Offset,
154 SDValue Addr, SDValue& R1, SDValue& R2) {
156 if (Addr.getOpcode() == ISD::FrameIndex) {
157 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
161 R1 = Addr;
153 SelectADDRParam( SDValue Addr, SDValue& R1, SDValue& R2) argument
174 SelectADDR(SDValue Addr, SDValue& R1, SDValue& R2) argument
183 SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) argument
390 SDValue Addr, Offset; local
406 SDValue Addr, Offset; local
591 SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr) argument
600 SelectGlobalValueVariableOffset(SDValue Addr, SDValue& BaseReg, SDValue &Offset) argument
610 SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset) argument
637 SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset) argument
733 SelectMUBUFAddr64(SDValue Addr, SDValue &Ptr, SDValue &Offset, SDValue &ImmOffset) const argument
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp159 // Try to match Addr as a FormBD address with displacement type DR.
162 bool selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
165 // Try to match Addr as a FormBDX address with displacement type DR.
168 bool selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
171 // Try to match Addr as a FormBDX* address of form Form with
175 SystemZAddressingMode::DispRange DR, SDValue Addr,
179 bool selectPCRelAddress(SDValue Addr, SDValue &Target) const { argument
180 if (SystemZISD::isPCREL(Addr.getOpcode())) {
181 Target = Addr.getOperand(0);
188 bool selectBDAddr12Only(SDValue Addr, SDValu argument
191 selectBDAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const argument
194 selectBDAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp) const argument
197 selectBDAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const argument
202 selectMVIAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const argument
205 selectMVIAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const argument
210 selectBDXAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
216 selectBDXAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
222 selectDynAlloc12Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
228 selectBDXAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
234 selectBDXAddr20Only128(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
240 selectBDXAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
246 selectLAAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
252 selectLAAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
528 selectAddress(SDValue Addr, SystemZAddressingMode &AM) const argument
612 selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp) const argument
623 selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp) const argument
634 selectBDXAddr(SystemZAddressingMode::AddrForm Form, SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp166 findSectionByAddress(const ELFFile<ELFT> *Obj, uint64_t Addr) { argument
168 if (Shdr.sh_addr == Addr)
/external/valgrind/main/memcheck/
H A Dmc_errors.c118 } Addr; member in union:_MC_Error::__anon33008
164 Addr src; // Source block
165 Addr dst; // Destination block
566 extra->Err.Addr.isWrite ? "Write" : "Read" );
568 extra->Err.Addr.isWrite ? "write" : "read",
569 extra->Err.Addr.szB );
572 &extra->Err.Addr.ai,
573 extra->Err.Addr.maybe_gcc );
576 extra->Err.Addr.isWrite ? "write" : "read",
577 extra->Err.Addr
[all...]

Completed in 8094 milliseconds

12345