Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DOrcABISupport.cpp504 uint64_t PtrAddr = PointersBlockTargetAddress; in writeIndirectStubsBlock() local
505 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 4) in writeIndirectStubsBlock()
506 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16); in writeIndirectStubsBlock()
674 uint64_t PtrAddr = PointersBlockTargetAddress; in writeIndirectStubsBlock() local
677 uint32_t HiAddr = ((PtrAddr + 0x8000) >> 16); in writeIndirectStubsBlock()
679 Stub[4 * I + 1] = 0x8f390000 | (PtrAddr & 0xFFFF); // lw $t9,%lo(ptr1)($t9) in writeIndirectStubsBlock()
682 PtrAddr += 4; in writeIndirectStubsBlock()
893 uint64_t PtrAddr = PointersBlockTargetAddress; in writeIndirectStubsBlock() local
895 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 8) { in writeIndirectStubsBlock()
896 uint64_t HeighestAddr = ((PtrAddr + 0x800080008000) >> 48); in writeIndirectStubsBlock()
[all …]
DTPCIndirectionUtils.cpp203 JITTargetAddress PtrAddr = 0; in updatePointer() local
210 PtrAddr = I->second.first.PointerAddress; in updatePointer()
216 tpctypes::UInt32Write PUpdate(PtrAddr, NewAddr); in updatePointer()
220 tpctypes::UInt64Write PUpdate(PtrAddr, NewAddr); in updatePointer()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcABISupport.cpp521 uint64_t PtrAddr = reinterpret_cast<uint64_t>(PtrsBlock.base()); in emitIndirectStubsBlock() local
522 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 4) in emitIndirectStubsBlock()
523 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16); in emitIndirectStubsBlock()
707 uint64_t PtrAddr = reinterpret_cast<uint64_t>(Stub) + NumPages * PageSize; in emitIndirectStubsBlock() local
710 uint32_t HiAddr = ((PtrAddr + 0x8000) >> 16); in emitIndirectStubsBlock()
712 Stub[4 * I + 1] = 0x8f390000 | (PtrAddr & 0xFFFF); // lw $t9,%lo(ptr1)($t9) in emitIndirectStubsBlock()
715 PtrAddr += 4; in emitIndirectStubsBlock()
953 uint64_t PtrAddr = reinterpret_cast<uint64_t>(PtrsBlock.base()); in emitIndirectStubsBlock() local
955 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 8) { in emitIndirectStubsBlock()
956 uint64_t HeighestAddr = ((PtrAddr + 0x800080008000) >> 48); in emitIndirectStubsBlock()
[all …]
/external/llvm/lib/ExecutionEngine/Orc/
DOrcABISupport.cpp523 uint64_t PtrAddr = reinterpret_cast<uint64_t>(PtrsBlock.base()); in emitIndirectStubsBlock() local
524 for (unsigned I = 0; I < NumStubs; ++I, PtrAddr += 4) in emitIndirectStubsBlock()
525 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16); in emitIndirectStubsBlock()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DIndirectionUtils.h283 void *PtrAddr = IndirectStubsInfos[Key.first].getPtr(Key.second); in findPointer() local
284 assert(PtrAddr && "Missing pointer address"); in findPointer()
286 static_cast<TargetAddress>(reinterpret_cast<uintptr_t>(PtrAddr)); in findPointer()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DIndirectionUtils.h340 void *PtrAddr = IndirectStubsInfos[Key.first].getPtr(Key.second); in findPointer() local
341 assert(PtrAddr && "Missing pointer address"); in findPointer()
343 static_cast<JITTargetAddress>(reinterpret_cast<uintptr_t>(PtrAddr)); in findPointer()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DIndirectionUtils.h410 void *PtrAddr = IndirectStubsInfos[Key.first].getPtr(Key.second); in findPointer() local
411 assert(PtrAddr && "Missing pointer address"); in findPointer()
413 static_cast<JITTargetAddress>(reinterpret_cast<uintptr_t>(PtrAddr)); in findPointer()
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp2155 Address PtrAddr = in emitAddrOfVarFromArray() local
2157 llvm::Value *Ptr = CGF.Builder.CreateLoad(PtrAddr); in emitAddrOfVarFromArray()
5277 auto PtrAddr = CGF.MakeNaturalAlignAddrLValue( in generateInfoForComponentList() local
5279 BP = CGF.EmitLoadOfPointerLValue(PtrAddr.getAddress(), in generateInfoForComponentList()
DCGExpr.cpp1982 LValue CodeGenFunction::EmitLoadOfPointerLValue(Address PtrAddr, in EmitLoadOfPointerLValue() argument
1985 Address Addr = EmitLoadOfPointer(PtrAddr, PtrTy, &Source); in EmitLoadOfPointerLValue()
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp2303 Address PtrAddr = CGF.Builder.CreateConstArrayGEP(Array, Index); in emitAddrOfVarFromArray() local
2304 llvm::Value *Ptr = CGF.Builder.CreateLoad(PtrAddr); in emitAddrOfVarFromArray()
5927 Address PtrAddr = CGF.EmitLoadOfPointer( in emitReduceCombFunction() local
5931 PtrAddr, CGF.ConvertTypeForMem(LHSVD->getType())); in emitReduceCombFunction()
5935 Address PtrAddr = CGF.EmitLoadOfPointer( in emitReduceCombFunction() local
5939 PtrAddr, CGF.ConvertTypeForMem(RHSVD->getType())); in emitReduceCombFunction()
9017 Address PtrAddr = CGF.EmitLoadOfReference(CGF.MakeAddrLValue( in generateDefaultMapInfo() local
9020 CombinedInfo.Pointers.push_back(PtrAddr.getPointer()); in generateDefaultMapInfo()
DCGExpr.cpp2509 LValue CodeGenFunction::EmitLoadOfPointerLValue(Address PtrAddr, in EmitLoadOfPointerLValue() argument
2513 Address Addr = EmitLoadOfPointer(PtrAddr, PtrTy, &BaseInfo, &TBAAInfo); in EmitLoadOfPointerLValue()