search for: yahxz

Displaying 14 results from an estimated 14 matches for "yahxz".

2011 Nov 25
5
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...rosoft ; ModuleID = 'mangling.cpp' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" target triple = "i686-pc-win32" define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { entry: ret i32 42 } Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using clang or llc) I get: $ clang++ -S -O3 mangling.cpp -o - -Xclang -cxx-abi -Xclang microsoft .def __3F_heyimacxxfunction@@YAHXZ; .scl 2; .type 32;...
2011 Nov 25
2
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...rget datalayout = >> "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- >> v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" >> target triple = "i686-pc-win32" >> >> define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { >> entry: >> ret i32 42 >> } >> >> Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using >> clang or llc) I get: >> >> $ clang++ -S -O3 mangling.cpp -o - -Xclang -cxx-abi -Xclang microsoft >> ....
2011 Nov 25
0
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...ing.cpp' > target datalayout = > "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- > v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" > target triple = "i686-pc-win32" > > define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { > entry: > ret i32 42 > } > > Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using > clang or llc) I get: > > $ clang++ -S -O3 mangling.cpp -o - -Xclang -cxx-abi -Xclang microsoft > .def __3F_heyimacxxfunction@@YA...
2011 Nov 25
0
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...t;>> "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- >>> v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" >>> target triple = "i686-pc-win32" >>> >>> define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { >>> entry: >>> ret i32 42 >>> } >>> >>> Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using >>> clang or llc) I get: >>> >>> $ clang++ -S -O3 mangling.cpp -o - -Xclang -cxx-abi -X...
2011 Nov 26
1
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...t;e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- >>>> v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" >>>> target triple = "i686-pc-win32" >>>> >>>> define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { >>>> entry: >>>> ret i32 42 >>>> } >>>> >>>> Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using >>>> clang or llc) I get: >>>> >>>> $ clang++ -S -O3 manglin...
2011 Nov 25
0
[LLVMdev] Where does LLVM mangle characters from llvm-ir names while generating native code?
...ing.cpp' > target datalayout = > "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64- > v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32" > target triple = "i686-pc-win32" > > define i32 @"?heyimacxxfunction@@YAHXZ"() nounwind readnone { > entry: > ret i32 42 > } > > Note the ?heyimacxxfunction@@YAHXZ. Now if I generate assembly (using > clang or llc) I get: > > $ clang++ -S -O3 mangling.cpp -o - -Xclang -cxx-abi -Xclang microsoft > .def __3F_heyimacxxfunction@@YA...
2019 Sep 12
2
Questions after completed Kaleidoscope Chapter 1
...yed around with some things and ended with some questions. 1. What is the use of "MangleAndInterner"? I read it is used to mangle the name for the lookup search, but I seem to be not able to use it correctly. In my first attempt I used the mangled name of my function "?helloOrc@@YAHXZ" with the lookup method - that worked. Now I tried "int helloOrc()" and it failed/did not found the function. Then I tried "?helloOrc@@YAHXZ" again but removed the use of the "MangleAndInterner" instance - that worked again. What is that instance used for?...
2019 Sep 12
2
Questions after completed Kaleidoscope Chapter 1
...with some questions. > > > > > > > > What is the use of “MangleAndInterner”? > > I read it is used to mangle the name for the lookup search, but I seem > to be not able to use it correctly. In my first attempt I used the mangled > name of my function “?helloOrc@@YAHXZ” with the lookup method – that > worked. > > > > Now I tried “int helloOrc()” and it failed/did not found the function. > Then I tried “?helloOrc@@YAHXZ” again but removed the use of the > “MangleAndInterner” instance – that worked again. > > > > What is that instan...
2018 Dec 13
2
Setting a function in a module to extern
But in my module this function already exist… I first want to delete it but without also deleting the calls to it… From: Boldizsar.Palotas at esa.int <Boldizsar.Palotas at esa.int> Sent: Donnerstag, 13. Dezember 2018 10:53 To: Gaier, Bjoern <Bjoern.Gaier at horiba.com> Cc: LLVM Developers Mailing List <llvm-dev at lists.llvm.org> Subject: Re: [llvm-dev] Setting a function in a
2006 Mar 12
0
help
...oject) , the application doesn't return these errors , so i'm thinking that the problem is with the libspeex.lib file. The errors look like this: error LNK2019: unresolved external symbol speex_decoder_ctl referenced in function "int __cdecl my_decoder(void)" (?my_decoder@@YAHXZ) Please reply if there is a way to correct this error , or if there exists another libspeex.lib that works on Pocket PC Win Mobile 2005 SDK.Thanks.Bye --------------------------------- Yahoo! Mail Use Photomail to share photos without annoying attachments. -------------- next part ----...
2006 Mar 13
0
help
...the project) , the application doesn't return these errors , so i'm thinking that the problem is with the libspeex.lib file. The errors look like this: error LNK2019: unresolved external symbol speex_decoder_ctl referenced in function "int __cdecl my_decoder(void)" (?my_decoder@@YAHXZ) Please reply if there is a way to correct this error , or if there exists another libspeex.lib that works on Pocket PC Win Mobile 2005 SDK.Thanks.Bye ________________________________ Yahoo! Mail Use Photomail <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=38867/*h ttp://photomail.mail.ya...
2018 Jun 26
0
Wine release 3.0.2
...39;unique' for RPC marshalling) 44135 Olive Tree Bible Software BibleStudySetup_6.0.23.exe fails to install 44138 Native Access needs unimplemented function iphlpapi.dll.if_indextoname 44278 Multiple applications crash on unimplemented function msvcp140.dll.?uncaught_exceptions at std@@YAHXZ 44404 Several .Net apps (e.g. Remembear) throw errors/crash,caused by msctf stubs TextStoreACPSink_{OnTextChange,OnSelectionChange,OnLayoutChange} 44466 PrtSc button crashes StarCraft 44496 Custom imports resolver used by multiple kernel drivers can't cope with 'ntoskrnl.exe' l...
2018 Mar 30
0
Wine release 3.5
...25 Burnout paradise freeze or crash on multiplayer 43935 Wolfenstein 2: The new Colossus does not start, requires VK_KHR_get_physical_device_properties2 43998 treeview not drawn correctly 44278 Multiple applications crash on unimplemented function msvcp140.dll.?uncaught_exceptions at std@@YAHXZ 44496 Custom imports resolver used by multiple kernel drivers can't cope with 'ntoskrnl.exe' low-level (wc)string/copy helpers being forwarded to 'msvcrt.dll' (BattlEye 'BEDaisy', Sentinel HASP 'hardlock.sys') 44497 BattlEye 'BEDaisy' kernel service...
2009 Feb 12
1
problem when using xapian's static libs in windows
...ib(tcpclient.obj) : error LNK2001: ????????? "protected: void __thiscall RemoteDatabase::do_close(void)" (?do_close at RemoteDatabase@@IAEXXZ) libnet.lib(tcpclient.obj) : error LNK2019: ????????? __imp__WSAGetLastError at 0??????? "int __cdecl socket_errno(void)" (?socket_errno@@YAHXZ) ???? libnet.lib(tcpclient.obj) : error LNK2019: ????????? __imp__getsockopt at 20??????? "private: static int __cdecl TcpClient::open_socket(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int,int)" (?open_socket at Tc...