Home
last modified time | relevance | path

Searched refs:PtrAddr (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DOrcABISupport.cpp522 uint64_t PtrAddr = reinterpret_cast<uint64_t>(PtrsBlock.base()); in emitIndirectStubsBlock() local
523 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 4) in emitIndirectStubsBlock()
524 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16); in emitIndirectStubsBlock()
708 uint64_t PtrAddr = reinterpret_cast<uint64_t>(Stub) + NumPages * PageSize; in emitIndirectStubsBlock() local
711 uint32_t HiAddr = ((PtrAddr + 0x8000) >> 16); in emitIndirectStubsBlock()
716 PtrAddr += 4; in emitIndirectStubsBlock()
954 uint64_t PtrAddr = reinterpret_cast<uint64_t>(PtrsBlock.base()); in emitIndirectStubsBlock() local
956 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 8) { in emitIndirectStubsBlock()
957 uint64_t HeighestAddr = ((PtrAddr + 0x800080008000) >> 48); in emitIndirectStubsBlock()
958 uint64_t HeigherAddr = ((PtrAddr + 0x80008000) >> 32); in emitIndirectStubsBlock()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h341 void *PtrAddr = IndirectStubsInfos[Key.first].getPtr(Key.second); in findPointer() local
342 assert(PtrAddr && "Missing pointer address"); in findPointer()
344 static_cast<JITTargetAddress>(reinterpret_cast<uintptr_t>(PtrAddr)); in findPointer()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp3062 Address PtrAddr = in emitAddrOfVarFromArray() local
3064 llvm::Value *Ptr = CGF.Builder.CreateLoad(PtrAddr); in emitAddrOfVarFromArray()
5971 Address PtrAddr = CGF.EmitLoadOfPointer( in emitReduceCombFunction() local
5975 PtrAddr, CGF.ConvertTypeForMem(LHSVD->getType())); in emitReduceCombFunction()
5979 Address PtrAddr = CGF.EmitLoadOfPointer( in emitReduceCombFunction() local
5983 PtrAddr, CGF.ConvertTypeForMem(RHSVD->getType())); in emitReduceCombFunction()
H A DCGExpr.cpp2332 LValue CodeGenFunction::EmitLoadOfPointerLValue(Address PtrAddr, in EmitLoadOfPointerLValue() argument
2336 Address Addr = EmitLoadOfPointer(PtrAddr, PtrTy, &BaseInfo, &TBAAInfo); in EmitLoadOfPointerLValue()