Searched refs:Address (Results 276 - 300 of 649) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp89 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
201 void EmitInitializationToLValue(Expr *E, LValue Address);
202 void EmitNullInitializationToLValue(LValue Address);
263 Address RetAddr = Address::invalid();
264 Address RetAllocaAddr = Address::invalid();
389 Address ArrayPtr = Array.getAddress(CGF);
469 void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType,
517 Address endOfIni
[all...]
H A DCGObjC.cpp40 static llvm::Constant *getNullForVariable(Address addr) {
91 Address Temporary = CreateMemTemp(SubExpr->getType());
93 Address BitCast = Builder.CreateBitCast(Temporary, ConvertType(ArgQT));
151 Address Objects = CreateMemTemp(ElementArrayType, "objects");
152 Address Keys = Address::invalid();
605 Address selfAddr =
633 Address selfAddr =
748 Address src =
756 Address des
[all...]
H A DItaniumCXXABI.cpp123 Address This,
130 Address Base,
159 Address Ptr, QualType ElementType,
182 Address ThisPtr,
188 llvm::Value *EmitDynamicCastCall(CodeGenFunction &CGF, Address Value,
193 llvm::Value *EmitDynamicCastToVoid(CodeGenFunction &CGF, Address Value,
200 GetVirtualBaseClassOffset(CodeGenFunction &CGF, Address This,
232 bool Delegating, Address This,
265 Address This, llvm::Type *Ty,
270 CXXDtorType DtorType, Address Thi
[all...]
H A DCGOpenMPRuntime.cpp807 Address Private, Address Original,
857 /// \param DestAddr Address of the array.
860 /// \param SrcAddr Address of the original array.
861 static void EmitOMPAggregateInit(CodeGenFunction &CGF, Address DestAddr, argument
865 Address SrcAddr = Address::invalid()) {
898 Address SrcElementCurrent = Address::invalid();
904 Address(SrcElementPH
[all...]
H A DCodeGenFunction.cpp213 return LValue::MakeAddr(Address(V, Alignment), T, getContext(), BaseInfo,
225 return MakeAddrLValue(Address(V, Align), T, BaseInfo, TBAAInfo);
483 NormalCleanupDest = Address::invalid();
515 ReturnValue = Address::invalid();
587 return Builder.CreateLoad(Address(GOTAddr, getPointerAlign()),
741 if (mask & SanitizerKind::Address)
744 SanOpts.set(SanitizerKind::Address, false);
753 if (SanOpts.hasOneOf(SanitizerKind::Address | SanitizerKind::KernelAddress))
1001 ReturnValue = Address::invalid();
1012 ReturnValue = Address(
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp71 const Address &addr, bool show_fullpaths,
87 Address inline_parent_addr;
177 addr.Dump(s, exe_scope, Address::DumpStyleModuleWithFileAddress);
326 function->GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress,
327 Address::DumpStyleModuleWithFileAddress);
344 line_entry.Dump(s, target, true, Address::DumpStyleLoadAddress,
345 Address::DumpStyleModuleWithFileAddress, true);
434 bool SymbolContext::GetParentOfInlinedScope(const Address &curr_frame_pc,
436 Address &next_frame_pc) const {
674 Address start_add
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp108 uint64_t Address = Target.getConstant(); local
110 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout);
112 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout);
113 return Address;
345 uint64_t Address = 0; local
381 Address = AliaseeInfo->StringIndex;
383 Address = getSymbolAddress(OrigSymbol, Layout);
387 Address = Symbol->getCommonSize();
402 W.write<uint64_t>(Address);
404 W.write<uint32_t>(Address);
820 uint64_t Address = getSectionAddress(&Sec); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DSanitizerArgs.cpp39 SanitizerKind::Address | SanitizerKind::HWAddress | SanitizerKind::Thread |
42 SanitizerKind::Address | SanitizerKind::HWAddress |
126 } Blacklists[] = {{"asan_blacklist.txt", SanitizerKind::Address},
399 std::make_pair(SanitizerKind::Address,
405 SanitizerKind::Address | SanitizerKind::Leak |
408 SanitizerKind::Address | SanitizerKind::Thread |
411 SanitizerKind::Address | SanitizerKind::HWAddress |
415 SanitizerKind::Address | SanitizerKind::HWAddress |
419 SanitizerKind::Address | SanitizerKind::HWAddress |
424 SanitizerKind::Address | SanitizerKin
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.cpp1039 unsigned Address = calculateIndirectAddress(RegIndex, Channel);
1043 getIndirectAddrRegClass()->getRegister(Address));
1045 buildIndirectRead(MBB, MI, MI.getOperand(DstOpIdx).getReg(), Address,
1053 unsigned Address = calculateIndirectAddress(RegIndex, Channel);
1056 buildMovInstr(MBB, MI, getIndirectAddrRegClass()->getRegister(Address),
1073 RI.getHWRegIndex(MI.getOperand(1).getReg()), // Address
1080 RI.getHWRegIndex(MI.getOperand(1).getReg()), // Address
1115 unsigned ValueReg, unsigned Address,
1117 return buildIndirectWrite(MBB, I, ValueReg, Address, OffsetReg, 0);
1122 unsigned ValueReg, unsigned Address,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp66 typedef struct Address { struct in namespace:__anon2354
80 Address() function in struct:__anon2354::Address
84 } Address; typedef in namespace:__anon2354
165 bool PPCEmitLoad(MVT VT, Register &ResultReg, Address &Addr,
168 bool PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr);
169 bool PPCComputeAddress(const Value *Obj, Address &Addr);
170 void PPCSimplifyAddress(Address &Addr, bool &UseOffset,
308 // Given a value Obj, create an Address object Addr that represents its
310 bool PPCFastISel::PPCComputeAddress(const Value *Obj, Address &Addr) {
344 Address SavedAdd
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp107 static void ResolveAddress(const ExecutionContext &exe_ctx, const Address &addr,
108 Address &resolved_addr) {
218 const char *flavor, const Address &start,
273 const Address &start_address,
286 Address addr;
401 const Address *pc_addr_ptr = nullptr;
441 const Address &addr = inst->GetAddress();
492 const Address &addr = inst->GetAddress();
683 Instruction::Instruction(const Address &address, AddressClass addr_class)
1165 InstructionList::GetIndexOfInstructionAtAddress(const Address
[all...]
/freebsd-11-stable/sys/dev/mps/mpi/
H A Dmpi2.h428 /* Address Reply Descriptor */
760 U32 Address; member in struct:_MPI2_SGE_SIMPLE32
767 U64 Address; member in struct:_MPI2_SGE_SIMPLE64
792 U32 Address; member in struct:_MPI2_SGE_CHAIN32
801 U64 Address; member in struct:_MPI2_SGE_CHAIN64
957 /* Address location */
969 /* Address Size */
1019 U32 Address; member in struct:_MPI2_IEEE_SGE_SIMPLE32
1026 U64 Address; member in struct:_MPI2_IEEE_SGE_SIMPLE64
1090 /* Data Location Address Spac
[all...]
/freebsd-11-stable/sys/dev/mpt/
H A Dmpt_debug.c766 "=0x%0x\n", se64, se64->Address.High,
767 se64->Address.Low, se64->FlagsLength);
771 "\n", se, se->Address, se->FlagsLength);
780 ce64->Address.High, ce64->Address.Low,
787 " Flgs=0x%x Len=0x%0x\n", ce, ce->Address,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallFunction.cpp12 #include "lldb/Core/Address.h"
67 llvm::Expected<Address> start_address = GetTarget().GetEntryPointAddress();
97 Thread &thread, const Address &function, const CompilerType &return_type,
127 Thread &thread, const Address &function,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp20 #include "lldb/Core/Address.h"
35 const char *BreakpointResolver::g_ty_to_name[] = {"FileAndLine", "Address",
296 Address line_start = sc.line_entry.range.GetBaseAddress();
315 Address prologue_addr(sc.function->GetAddressRange().GetBaseAddress());
338 BreakpointLocationSP BreakpointResolver::AddLocation(Address loc_addr,
/freebsd-11-stable/sys/dev/mpt/mpilib/
H A Dmpi.h387 U32 Address; member in struct:_SGE_SIMPLE32
394 U64 Address; member in struct:_SGE_SIMPLE64
418 U32 Address; member in struct:_SGE_CHAIN32
427 U64 Address; member in struct:_SGE_CHAIN64
581 /* Address location */
590 /* Address Size */
/freebsd-11-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c1188 * Isr - Address of the ACPI interrupt handler
1373 * PARAMETERS: Address - Address of I/O port/register to read
1385 ACPI_IO_ADDRESS Address,
1420 * PARAMETERS: Address - Address of I/O port/register to write
1432 ACPI_IO_ADDRESS Address,
1445 * PARAMETERS: Address - Physical Memory Address to read
1458 ACPI_PHYSICAL_ADDRESS Address,
1384 AcpiOsReadPort( ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) argument
1431 AcpiOsWritePort( ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) argument
1457 AcpiOsReadMemory( ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width) argument
1496 AcpiOsWriteMemory( ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbnames.c1021 ACPI_SIZE Address; local
1026 Address = strtoul (ObjectArg, NULL, 16);
1027 ObjDesc = ACPI_TO_POINTER (Address);
1117 ACPI_FORMAT_UINT64 (Info->Address));
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c581 ObjDesc->Region.Address = (ACPI_PHYSICAL_ADDRESS)
586 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
693 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
697 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectDynamicValue.h12 #include "lldb/Core/Address.h"
119 Address m_address; ///< The variable that this value object is based upon
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DWithColor.cpp26 case HighlightColor::Address:
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h68 dw_addr_t Address() const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h81 uint32_t ResolveSymbolContext(const lldb_private::Address &so_addr,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h162 virtual void emitFDE(uint32_t CIEOffset, uint32_t AddreSize, uint32_t Address,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h50 /// Address - address in the linker's memory where the section resides.
51 uint8_t *Address; member in class:llvm::SectionEntry
59 /// space where it was JIT-ed, this just equals Address.
77 : Name(name), Address(address), Size(size),
87 uint8_t *getAddress() const { return Address; }
92 return Address + OffsetBytes;

Completed in 179 milliseconds

<<11121314151617181920>>