search for: getstackbottom

Displaying 1 result from an estimated 1 matches for "getstackbottom".

2014 Jan 27
2
[LLVMdev] Is addrspacecast implemented on Windows?
...address space 257 and gs: in address space 256. (BTW: are there constants for these magic values?) How can I use this in IR? I want to express this assembler code in IR: mov RAX, 8; mov RAX, GS:[RAX]; ret; I tried the following: define i64 @getStackBottom(i64 %addr) { entry: %ptr = inttoptr i64 %addr to i64* %fs_ptr = addrspacecast i64* %ptr to i64 addrspace(256)* %bottom = load i64 addrspace(256)* %fs_ptr, align 1 ret i64 %bottom } but this results in LLVM ERROR: Cannot select: 0xcc6c60: i64 = addrspacecast 0xcc6b60[0 -> 256] [ORD...