Searched refs:Addr (Results 1 - 25 of 399) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DValgrind.cpp26 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
27 VALGRIND_DISCARD_TRANSLATIONS(Addr, Len);
36 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { argument
H A Draw_socket_stream.cpp82 struct sockaddr_un Addr; local
83 memset(&Addr, 0, sizeof(Addr));
84 Addr.sun_family = AF_UNIX;
85 strncpy(Addr.sun_path, SocketPath.str().c_str(), sizeof(Addr.sun_path) - 1);
87 if (bind(MaybeWinsocket, (struct sockaddr *)&Addr, sizeof(Addr)) == -1) {
140 struct sockaddr_un Addr; local
141 memset(&Addr,
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelDAGToDAG.cpp79 bool VEDAGToDAGISel::selectADDRrri(SDValue Addr, SDValue &Base, SDValue &Index, argument
81 if (Addr.getOpcode() == ISD::FrameIndex)
83 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
84 Addr.getOpcode() == ISD::TargetGlobalAddress ||
85 Addr.getOpcode() == ISD::TargetGlobalTLSAddress)
89 if (matchADDRri(Addr, LHS, RHS)) {
97 if (matchADDRrr(Addr, LHS, RHS)) {
116 Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
122 bool VEDAGToDAGISel::selectADDRrii(SDValue Addr, SDValue &Base, SDValue &Index, argument
124 if (matchADDRri(Addr, Bas
135 selectADDRzri(SDValue Addr, SDValue &Base, SDValue &Index, SDValue &Offset) argument
141 selectADDRzii(SDValue Addr, SDValue &Base, SDValue &Index, SDValue &Offset) argument
162 selectADDRri(SDValue Addr, SDValue &Base, SDValue &Offset) argument
172 selectADDRzi(SDValue Addr, SDValue &Base, SDValue &Offset) argument
192 matchADDRrr(SDValue Addr, SDValue &Base, SDValue &Index) argument
220 matchADDRri(SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineEntry.h23 uint64_t Addr; ///< Start address of this line entry. member in struct:llvm::gsym::LineEntry
27 : Addr(A), File(F), Line(L) {}
32 return OS << "addr=" << HEX64(LE.Addr) << ", file=" << format("%3u", LE.File)
37 return LHS.Addr == RHS.Addr && LHS.File == RHS.File && LHS.Line == RHS.Line;
43 return LHS.Addr < RHS.Addr;
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuilder.h71 llvm::LoadInst *CreateLoad(Address Addr, const llvm::Twine &Name = "") { argument
72 return CreateAlignedLoad(Addr.getElementType(), Addr.getPointer(),
73 Addr.getAlignment().getAsAlign(), Name);
75 llvm::LoadInst *CreateLoad(Address Addr, const char *Name) { argument
78 return CreateAlignedLoad(Addr.getElementType(), Addr.getPointer(),
79 Addr.getAlignment().getAsAlign(), Name);
81 llvm::LoadInst *CreateLoad(Address Addr, bool IsVolatile, argument
83 return CreateAlignedLoad(Addr
89 CreateAlignedLoad(llvm::Type *Ty, llvm::Value *Addr, CharUnits Align, const llvm::Twine &Name = �) argument
97 CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile = false) argument
104 CreateAlignedStore(llvm::Value *Val, llvm::Value *Addr, CharUnits Align, bool IsVolatile = false) argument
112 CreateDefaultAlignedStore(llvm::Value *Val, llvm::Value *Addr, bool IsVolatile = false) argument
119 CreateFlagLoad(llvm::Value *Addr, const llvm::Twine &Name = �) argument
125 CreateFlagStore(bool Value, llvm::Value *Addr) argument
130 CreateAtomicCmpXchg(Address Addr, llvm::Value *Cmp, llvm::Value *New, llvm::AtomicOrdering SuccessOrdering, llvm::AtomicOrdering FailureOrdering, llvm::SyncScope::ID SSID = llvm::SyncScope::System) argument
140 CreateAtomicRMW(llvm::AtomicRMWInst::BinOp Op, Address Addr, llvm::Value *Val, llvm::AtomicOrdering Ordering, llvm::SyncScope::ID SSID = llvm::SyncScope::System) argument
149 CreateAddrSpaceCast(Address Addr, llvm::Type *Ty, const llvm::Twine &Name = �) argument
156 CreatePointerBitCastOrAddrSpaceCast(Address Addr, llvm::Type *Ty, llvm::Type *ElementTy, const llvm::Twine &Name = �) argument
172 CreateStructGEP(Address Addr, unsigned Index, const llvm::Twine &Name = �) argument
193 CreateConstArrayGEP(Address Addr, uint64_t Index, const llvm::Twine &Name = �) argument
213 CreateConstInBoundsGEP(Address Addr, uint64_t Index, const llvm::Twine &Name = �) argument
230 CreateConstGEP(Address Addr, uint64_t Index, const llvm::Twine &Name = �) argument
246 CreateGEP(Address Addr, llvm::Value *Index, const llvm::Twine &Name = �) argument
259 CreateConstInBoundsByteGEP(Address Addr, CharUnits Offset, const llvm::Twine &Name = �) argument
268 CreateConstByteGEP(Address Addr, CharUnits Offset, const llvm::Twine &Name = �) argument
279 CreateConstInBoundsGEP2_32(Address Addr, unsigned Idx0, unsigned Idx1, const llvm::Twine &Name = �) argument
341 CreatePreserveStructAccessIndex(Address Addr, unsigned Index, unsigned FieldIndex, llvm::MDNode *DbgInfo) argument
356 CreateLaunderInvariantGroup(Address Addr) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp54 bool SelectFrameADDR_ri(SDValue Addr, SDValue &Base, SDValue &Offset);
55 bool SelectAddrModeS9(SDValue Addr, SDValue &Base, SDValue &Offset);
56 bool SelectAddrModeImm(SDValue Addr, SDValue &Base, SDValue &Offset);
57 bool SelectAddrModeFar(SDValue Addr, SDValue &Base, SDValue &Offset);
76 bool ARCDAGToDAGISel::SelectAddrModeImm(SDValue Addr, SDValue &Base, argument
78 if (Addr.getOpcode() == ARCISD::GAWRAPPER) {
79 Base = Addr.getOperand(0);
80 Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), MVT::i32);
86 bool ARCDAGToDAGISel::SelectAddrModeS9(SDValue Addr, SDValue &Base, argument
88 if (Addr
128 SelectAddrModeFar(SDValue Addr, SDValue &Base, SDValue &Offset) argument
147 SelectFrameADDR_ri(SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DValgrind.h25 // Discard valgrind's translation of code in the range [Addr .. Addr + Len).
27 void ValgrindDiscardTranslations(const void *Addr, size_t Len);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport_linux.cpp37 void NORETURN reportUnmapError(uptr Addr, uptr Size) { argument
40 "Scudo ERROR: internal unmap failure (error desc=%s) Addr 0x%zx "
42 strerror(errno), Addr, Size);
46 void NORETURN reportProtectError(uptr Addr, uptr Size, int Prot) { argument
50 "Scudo ERROR: internal protect failure (error desc=%s) Addr 0x%zx "
52 strerror(errno), Addr, Size, Prot);
H A Dmem_map_linux.cpp46 static void *mmapWrapper(uptr Addr, uptr Size, const char *Name, uptr Flags) { argument
62 if (Addr)
65 mmap(reinterpret_cast<void *>(Addr), Size, MmapProt, MmapFlags, -1, 0);
81 bool MemMapLinux::mapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags) { argument
82 void *P = mmapWrapper(Addr, Size, Name, Flags);
91 void MemMapLinux::unmapImpl(uptr Addr, uptr Size) { argument
99 if (MapBase == Addr)
100 MapBase = Addr + Size;
104 if (munmap(reinterpret_cast<void *>(Addr), Size) != 0)
105 reportUnmapError(Addr, Siz
108 remapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags) argument
116 setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags) argument
123 void *Addr = reinterpret_cast<void *>(From); local
129 createImpl(uptr Addr, uptr Size, const char *Name, uptr Flags) argument
146 dispatchImpl(uptr Addr, uptr Size) argument
[all...]
H A Dmem_map.cpp15 bool MemMapDefault::mapImpl(uptr Addr, uptr Size, const char *Name, argument
18 ::scudo::map(reinterpret_cast<void *>(Addr), Size, Name, Flags, &Data);
27 void MemMapDefault::unmapImpl(uptr Addr, uptr Size) { argument
31 if (Base == Addr) {
32 Base = Addr + Size;
38 ::scudo::unmap(reinterpret_cast<void *>(Addr), Size, UNMAP_ALL, &Data);
41 bool MemMapDefault::remapImpl(uptr Addr, uptr Size, const char *Name, argument
44 ::scudo::map(reinterpret_cast<void *>(Addr), Size, Name, Flags, &Data);
47 return RemappedAddr == Addr;
56 void MemMapDefault::setMemoryPermissionImpl(uptr Addr, upt argument
64 createImpl(uptr Addr, uptr Size, const char *Name, uptr Flags) argument
77 dispatchImpl(uptr Addr, uptr Size) argument
[all...]
H A Dreport_linux.h25 void NORETURN reportUnmapError(uptr Addr, uptr Size);
28 void NORETURN reportProtectError(uptr Addr, uptr Size, int Prot);
H A Dmem_map_base.h24 // This is used to map a new set of contiguous pages. Note that the `Addr` is
26 bool map(uptr Addr, uptr Size, const char *Name, uptr Flags = 0) { argument
28 return invokeImpl(&Derived::mapImpl, Addr, Size, Name, Flags);
33 void unmap(uptr Addr, uptr Size) { argument
35 DCHECK((Addr == getBase()) || (Addr + Size == getBase() + getCapacity()));
36 invokeImpl(&Derived::unmapImpl, Addr, Size);
42 bool remap(uptr Addr, uptr Size, const char *Name, uptr Flags = 0) { argument
44 DCHECK((Addr >= getBase()) && (Addr
50 setMemoryPermission(uptr Addr, uptr Size, uptr Flags) argument
96 create(uptr Addr, uptr Size, const char *Name, uptr Flags = 0) argument
109 dispatch(uptr Addr, uptr Size) argument
[all...]
H A Dmem_map_fuchsia.h26 bool mapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
27 void unmapImpl(uptr Addr, uptr Size);
28 bool remapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
29 void setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags);
60 bool createImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
62 MemMapT dispatchImpl(uptr Addr, uptr Size);
H A Dmem_map_linux.h28 bool mapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags = 0);
29 void unmapImpl(uptr Addr, uptr Size);
30 bool remapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags = 0);
31 void setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags);
54 bool createImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
56 MemMapT dispatchImpl(uptr Addr, uptr Size);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelDAGToDAG.cpp26 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue &IntPtr);
27 bool SelectGlobalValueVariableOffset(SDValue Addr, SDValue &BaseReg,
38 bool SelectADDRIndirect(SDValue Addr, SDValue &Base,
40 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base,
68 bool R600DAGToDAGISel::SelectGlobalValueConstantOffset(SDValue Addr, argument
70 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
72 CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, SDLoc(Addr), true);
78 bool R600DAGToDAGISel::SelectGlobalValueVariableOffset(SDValue Addr, argument
81 if (!isa<ConstantSDNode>(Addr)) {
82 BaseReg = Addr;
130 SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset) argument
154 SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DExecutorAddress.h75 explicit constexpr ExecutorAddr(uint64_t Addr) : Addr(Addr) {} argument
90 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
91 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
100 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
101 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
105 uint64_t getValue() const { return Addr; }
106 void setValue(uint64_t Addr) { this->Addr argument
157 uint64_t Addr = 0; member in class:llvm::orc::ExecutorAddr
307 getHashValue(const orc::ExecutorAddr &Addr) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Dexecutor_address.h72 explicit ExecutorAddr(uint64_t Addr) : Addr(Addr) {} argument
85 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
86 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
94 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
95 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
99 uint64_t getValue() const { return Addr; }
100 void setValue(uint64_t Addr) { this->Addr argument
151 uint64_t Addr = 0; member in class:__orc_rt::ExecutorAddr
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h45 bool selectAddrFrameIndex(SDValue Addr, SDValue &Base, SDValue &Offset) const;
46 bool selectAddrFrameIndexOffset(SDValue Addr, SDValue &Base, SDValue &Offset,
50 bool selectAddrRegImm(SDValue Addr, SDValue &Base,
53 bool selectAddrDefault(SDValue Addr, SDValue &Base,
56 bool selectIntAddr(SDValue Addr, SDValue &Base,
59 bool selectAddrRegImm9(SDValue Addr, SDValue &Base,
62 bool selectAddrRegImm11(SDValue Addr, SDValue &Base,
65 bool selectAddrRegImm12(SDValue Addr, SDValue &Base,
68 bool selectAddrRegImm16(SDValue Addr, SDValue &Base,
71 bool selectIntAddr11MM(SDValue Addr, SDValu
[all...]
H A DMips16ISelDAGToDAG.cpp98 bool Mips16DAGToDAGISel::selectAddr(bool SPAllowed, SDValue Addr, SDValue &Base, argument
100 SDLoc DL(Addr);
101 EVT ValTy = Addr.getValueType();
105 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
112 if (Addr.getOpcode() == MipsISD::Wrapper) {
113 Base = Addr.getOperand(0);
114 Offset = Addr.getOperand(1);
118 if ((Addr.getOpcode() == ISD::TargetExternalSymbol ||
119 Addr.getOpcode() == ISD::TargetGlobalAddress))
123 if (CurDAG->isBaseWithConstantOffset(Addr)) {
167 selectAddr16(SDValue Addr, SDValue &Base, SDValue &Offset) argument
172 selectAddr16SP(SDValue Addr, SDValue &Base, SDValue &Offset) argument
[all...]
H A DMipsISelDAGToDAG.h57 virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base,
61 virtual bool selectAddrDefault(SDValue Addr, SDValue &Base,
65 virtual bool selectIntAddr(SDValue Addr, SDValue &Base,
68 virtual bool selectIntAddr11MM(SDValue Addr, SDValue &Base,
71 virtual bool selectIntAddr12MM(SDValue Addr, SDValue &Base,
74 virtual bool selectIntAddr16MM(SDValue Addr, SDValue &Base,
77 virtual bool selectIntAddrLSL2MM(SDValue Addr, SDValue &Base,
81 virtual bool selectIntAddrSImm10(SDValue Addr, SDValue &Base,
84 virtual bool selectIntAddrSImm10Lsl1(SDValue Addr, SDValue &Base,
87 virtual bool selectIntAddrSImm10Lsl2(SDValue Addr, SDValu
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv6remote.pl53 my %Addr;
72 $Addr{$interf} = $addr;
89 $local = $Addr{$interf};
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPHITransAddr.h36 /// Addr - The actual address we're analyzing.
37 Value *Addr; member in class:llvm::PHITransAddr
52 PHITransAddr(Value *Addr, const DataLayout &DL, AssumptionCache *AC) argument
53 : Addr(Addr), DL(DL), AC(AC) {
55 addAsInput(Addr);
58 Value *getAddr() const { return Addr; }
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelDAGToDAG.cpp78 bool selectAddrRi(SDValue Addr, SDValue &Base, SDValue &Offset,
80 bool selectAddrRr(SDValue Addr, SDValue &R1, SDValue &R2, SDValue &AluOp);
81 bool selectAddrSls(SDValue Addr, SDValue &Offset);
82 bool selectAddrSpls(SDValue Addr, SDValue &Base, SDValue &Offset,
91 bool selectAddrRiSpls(SDValue Addr, SDValue &Base, SDValue &Offset,
108 bool LanaiDAGToDAGISel::selectAddrSls(SDValue Addr, SDValue &Offset) { argument
109 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr)) {
110 SDLoc DL(Addr);
118 if (Addr.getOpcode() == ISD::OR &&
119 Addr
126 selectAddrRiSpls(SDValue Addr, SDValue &Base, SDValue &Offset, SDValue &AluOp, bool RiMode) argument
206 selectAddrRi(SDValue Addr, SDValue &Base, SDValue &Offset, SDValue &AluOp) argument
211 selectAddrSpls(SDValue Addr, SDValue &Base, SDValue &Offset, SDValue &AluOp) argument
247 selectAddrRr(SDValue Addr, SDValue &R1, SDValue &R2, SDValue &AluOp) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/
H A DMCDisassembler.h29 uint64_t Addr; member in struct:llvm::SymbolInfoTy
42 SymbolInfoTy(std::optional<XCOFF::StorageMappingClass> Smc, uint64_t Addr, argument
44 : Addr(Addr), Name(Name), XCOFFSymInfo{Smc, Idx, Label}, Type(0),
46 SymbolInfoTy(uint64_t Addr, StringRef Name, uint8_t Type, argument
48 : Addr(Addr), Name(Name), Type(Type), IsMappingSymbol(IsMappingSymbol),
59 return std::tie(P1.Addr, P1.Type, P1.Name) <
60 std::tie(P2.Addr, P2.Type, P2.Name);
63 return std::tie(P1.Addr, P
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp241 uint64_t Addr,
244 uint64_t Addr,
247 uint64_t Addr,
250 uint64_t Addr,
253 uint64_t Addr,
256 uint64_t Addr,
259 uint64_t Addr,
262 uint64_t Addr,
265 uint64_t Addr,
268 uint64_t Addr,
426 DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
439 DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
447 DecodeFPR128_0to7RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
454 DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
466 DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
478 DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
490 DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
503 DecodeGPR64commonRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
515 DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
542 DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
554 DecodeMatrixIndexGPR32_8_11RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
567 DecodeMatrixIndexGPR32_12_15RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
580 DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
592 DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
744 DecodePPRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
756 DecodePNRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
768 DecodePPR_3bRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
779 DecodePNR_p8to15RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
811 DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
822 DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
833 DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
844 DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
855 DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
866 DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
877 DecodeFixedPointScaleImm32(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
886 DecodeFixedPointScaleImm64(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
893 DecodePCRelLabel16(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
908 DecodePCRelLabel19(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
984 DecodeVecShiftR64Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
990 DecodeVecShiftR64ImmNarrow(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
996 DecodeVecShiftR32Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1002 DecodeVecShiftR32ImmNarrow(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1008 DecodeVecShiftR16Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1014 DecodeVecShiftR16ImmNarrow(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1020 DecodeVecShiftR8Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1026 DecodeVecShiftL64Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1032 DecodeVecShiftL32Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1038 DecodeVecShiftL16Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1044 DecodeVecShiftL8Imm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
1051 DecodeThreeAddrSRegInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1112 DecodeMoveImmInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1146 DecodeUnsignedLdStInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1204 DecodeSignedLdStInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1403 DecodeExclusiveLdStInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1485 DecodePairLdStInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1619 DecodeAuthLoadInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1652 DecodeAddSubERegInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1709 DecodeLogicalImmInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1740 DecodeModImmInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1779 DecodeModImmTiedInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1797 DecodeAdrInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1815 DecodeAddSubImmShift(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1850 DecodeUnconditionalBranch(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1872 DecodeSystemPStateImm0_15Instruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1893 DecodeSystemPStateImm0_1Instruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1914 DecodeTestAndBranch(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1938 DecodeGPRSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegClassID, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
1951 DecodeWSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
1959 DecodeXSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const MCDisassembler *Decoder) argument
1966 DecodeSyspXzrInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
1987 DecodeSVELogicalImmInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
2018 DecodeImm8OptLsl(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
2030 DecodeSVEIncDecImm(MCInst &Inst, unsigned Imm, uint64_t Addr, const MCDisassembler *Decoder) argument
2046 DecodeCPYMemOpInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
2071 DecodeSETMemOpInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
2095 DecodePRFMRegInstruction(MCInst &Inst, uint32_t insn, uint64_t Addr, const MCDisassembler *Decoder) argument
[all...]

Completed in 327 milliseconds

1234567891011>>