[Mono-list] a way to find all classes, and methods for certain application domain?

2006-08-24 Thread Okehee Goh
Hello,Is there a way to find all classes, and methods for certain application domain?My test application hosts multiple application domain for different assemblies.I'd like to check the classes loaded for certain assembly of a certain domain. The classes' list should show all system class

[Mono-dev] JIT: translate a method two times : one with hook and the other without hook function?

2006-04-19 Thread Okehee Goh
Hello, I am trying to do a small experiment by extending MONO internal. the first requirement I'd like to add a certain hook function in front of some methods. There were some approaches discussed before about it like using pre-processor to manipulate C# source code or assembly file. But,

[Mono-dev] good IDE tool to work with MONO source codes in Linux?

2005-12-09 Thread Okehee Goh
Hello, My question is quite off from this list. I'm sorry about that. When work with Mono's windows version using Visual studio in windows, the working environment was quite good. After switching to Linux version for some experiment , it becomes quite difficult because only tool i use is vi

[Mono-dev] segmentation fault error always invokes exception?

2005-12-09 Thread Okehee Goh
Hello, I was doing some experiment by modifying mono source. What bothering me is that whenvere there is segmentation fault error (it comes my modified mono part rather than from managed application) , the generated core file examined through gdb doesn't point out the place where the error

[Mono-list] segmentation fault error is alwayes appeared as exception?

2005-12-09 Thread Okehee Goh
Hello, I was doing some experiment by modifying mono source. What bothering me is that whenvere there is segmentation fault error (it comes my modified mono part rather than from managed application) , the generated core file examined through gdb doesn't point out the place where the error

[Mono-dev] using internal calls in mono1.1.9 is allowed just in mscorlib.dll?

2005-11-09 Thread Okehee Goh
I tried to add a few internal calls to expose certain features to classes. With older mono version, i did it by adding them at icall.c With same approach in mono1.1.9, I got runtime error myapp.dll contains native code and mono can't run it. 1) Is it because mono doesn't allow internal calls

[Mono-dev] [EMAIL PROTECTED]

2005-11-02 Thread Okehee Goh
never mind. I justed added new ones into Makefile.in and ran configure. It generated a new Makefile. Sorry about this kind of question.. For my research, I added several new modules under mono/metadata folder ( not to checkin into CVS..) In order to make Makefile aware of the new modules, I

[Mono-devel-list] MONO_PARSE_PARAM in metadata.c???

2005-06-28 Thread Okehee Goh
There is a function mono_metadata_parse_type_full() at metadata.c. It include the following part: /* FIXME: remove the != MONO_PARSE_PARAM condition, this accounts for * almost 10k (about 2/3rds) of all MonoType's we create. */ if (mode != MONO_PARSE_PARAM

[Mono-devel-list] Trigger some internal action based on attributes for a method?

2005-06-27 Thread Okehee Goh
I wonder how I can support this: When a method is entered and starts executing , I'd like to implicitly call another method or an internal function defined inside of CLR (What I'd like to do is to notify CLR certain information telling that the method being executed now is the one CLR

[Mono-devel-list] Is native codes for C# methods and CLI internal calls different?

2005-02-25 Thread Okehee Goh
I'm using mono1.1.4 with JIT in Linux on X86. I'd like to check native codes generated for C# applications with JIT. I want to see how C# methods and Mono Internal calls are translated into native codes, and also how stack frames for them are different? Ultimately I'd like to know that we could

[Mono-list] Abort .._wapi_daemon_request_response_internal): should not be reached

2003-11-10 Thread Okehee Goh
Hello, I'm using Mono0.25. Mono is aborted with a following error. It happened very occasionally. I saw that the same error was reported on Mono list a long time ago. Wondering whether it's already fixed. Okehee === Error Message ** (GCTest_1.exe:6896): WARNING **:

[Mono-list] VarPush for CEE_CALL: how to make CEE_CALL push back multiple valuesinto a stack?

2003-08-29 Thread Okehee Goh
Hello, I have a question regarding implementing an internal call correspondent to a class API. The class API has an attribute [MethodImplAttribute(MethodImplOptions.InternalCall)], so that its correspondent API is implemented as ves_icall_System_Someting in Mono. The internal API (called as

[Mono-list] code size of each IL instruction?

2003-08-28 Thread Okehee Goh
Hello, I'd like to manipulate CIL codes manually. Each instruction's code size seems to be different. Could you tell me where I can refer the code size information for all IL instructions? For instance, the following codes are a part of IL codes generated by using monodis tool. The first

[Mono-list] using AOT of mono-0.25

2003-07-16 Thread Okehee Goh
Hello, I'm using mono-0.25. It seems to support AOT. When used the option --aot for AOT, the statistics is as follows. One test gives Compile 3 out of 4 methods (75%) Does it mean that one of 4 methods is not compiled ahead and has be jitted?? Any suggestion will be appreciated. Thanks,