Tagged Questions
The translation lookaside buffer (TLB) enables modern CPUs to quickly map virtual memory addresses to physical memory addresses and vice versa. Operations that flush the TLB cause a performance hit until it is repopulated.
19
votes
1answer
310 views
Memory barriers and the TLB
Memory barriers guarantee that the data cache will be consistent. However, does it guarantee that the TLB will be consistent?
I am seeing a problem where the JVM (java 7 update 1) sometimes crashes ...
7
votes
3answers
160 views
In what circumstances can large pages produce a speedup?
Modern x86 CPUs have the ability to support larger page sizes than the legacy 4K (ie 2MB or 4MB), and there are OS facilities (Linux, Windows) to access this functionality.
The Microsoft link above ...
5
votes
1answer
159 views
COM problem c# to VB6
I have a C# .Net 4.0 Application on the one hand and on the other a VB6 App. I created a COM Interface by making the Project COM Visible and actived register COM Interop.
I Tested the COM interface ...
4
votes
2answers
366 views
Importing .net dll to Delphi 6 loses information
I have a .net dll which I could import to Delphi 6. But it loses some information.
I have a demo application in VB.net to use this dll which shows 2 interfaces called
IRedeemTransactionItemBundle and ...
4
votes
1answer
239 views
Is it possible that C# has problems calling VB6 methods that have optional parameters?
I added 3 optional boolean parameters to a method found within a VB6 DLL. The class that houses it is MultiUse (public), and the method itself is Private. The class implements a specific interface ...
3
votes
2answers
74 views
kernel memory(virtual address entries) in TLB?
Linux is the OS and ARM is the processor referred in this context.
Is the TLB contains both kernel and user space virtual addresses?
Kernel memory starts at 0xc000_0000 to 0xFFFF_FFFF
where first 3 ...
3
votes
1answer
99 views
Linux Kernel Invalidating TLB Entries
In the linux kernel, I wrote code that resembles copy_page_range (mm/memory.c) so copy memory from one process to another with COW optimization. The destination and source addresses can be offset by ...
3
votes
2answers
127 views
Handeling NULL pointer out argument in C# COM
I am working with a COM plugin interface that has the following function definition:
HRESULT foo ( [out, ref] VARIANT* a, [out, ref] VARIANT* b );
When using tlbimp (tlbimp2.exe from codeplex) the ...
3
votes
2answers
480 views
Using a managed c# dll inside an unmanaged c++ dll
How does an unmanaged c++ .dll know where the location of a managed c# .dll is?
Some context:
I have a c++ .dll that imports a type library (.tlb) and inside one of the c++ functions, I instantiate a ...
3
votes
1answer
123 views
How to cause a TLB thrashing with a user process?
My current work needs to generate a specified number of TLB misses on CPU of Intel Core series, while it's not going on well. I've tried many methods but all of them have a very high rate of TLB hit. ...
3
votes
1answer
149 views
Why Exception occured getting address of COM function?
I am getting the address of a COM function by loading type library (TLB) and iterating over types using ITypeLib and ITypeInfo.
After calling the AddressOfMember function of ITypeInfo I am facing the ...
3
votes
2answers
207 views
MIDL changes case of identifier when compiling IDL file
I've got a snippet of IDL that looks like this:
[ object, uuid(...), pointer_default(unique) ]
interface IVirtualMachine { /* ... */ }
[ object, uuid(...), pointer_default(unique) ]
interface ...
3
votes
2answers
2k views
Where is the Wrapper Assembly Key File setting in VS 2008?
I'm trying to build an application that is strongly named. It is referencing a COM interop library that I add via the Add References dialog. It's been a while, but I seem to recall that in older ...
2
votes
1answer
46 views
ARM11 Translation Lookaside Buffer (TLB) usage?
Is there a decent guide explaining how to use the TLB (Translation Lookaside Buffers) tables on an ARM1176JZF-S core?
Having looked over the technical documentation for the that ARM platform I still ...
2
votes
3answers
127 views
.Net DLL referencing another DLL
I have one .Net 4.0 dll project that references third party PDF converter DLL. I have exposed this dll for COM. Now when I am trying to add my .tlb file to VB6 project it comes up with runtime error. ...
2
votes
2answers
178 views
Handling TLB Misses
I want to see which pages are being accessed by my program. Now one way is to use mprotect with SIGSEGV handler to note down pages which are being accessed. However, this involves the overhead of ...
2
votes
1answer
103 views
MIDL CoClass derived from Interface defined in the same file
Why can't I define an Interface in an idl file and then have a CoClass derive it in a library block within the same file when I am deriving said Interface from an Interface that I have defined in ...
2
votes
1answer
200 views
Help needed with “The type library importer could not convert the signature for the member” warning in a trivial setup
Observe this most trivial IDL file:
import "unknwn.idl";
typedef struct _MyStruct
{
DWORD len;
[size_is(len)] BYTE *buffer;
} MyStruct;
[
object,
...
2
votes
1answer
162 views
How do I convert a .tlb file to headers and implementation files?
I'm trying to convert mscorlib.tlb.
It normally used in C++ like this:
#import "mscorlib.tlb" raw_interfaces_only \
high_property_prefixes("_get","_put","_putref") \
...
2
votes
1answer
133 views
Get IDL code from TypeLibrary programmatically
I am writing code to perform the following steps;
Register a .net .dll and generate a .tlb using regasm.exe
Register a .net .dll and generate a .tlb using regasm.exe
Generate the IDL code from the ...
2
votes
2answers
3k views
How to register a legacy typelib (.tlb) on Windows 7?
I have a new PC running Windows 7 and Visual Studio 2010, and need to register a legacy typelib (.tlb) to interface with an existing legacy application. However, regtlib.exe does not seem to be part ...
2
votes
1answer
182 views
Problem with QueryInterface of out-of-proc COM server on interface imported from TLB
I define my interfaces in an A.idl file, which I compile to A.tlb
In a VS2005 ATL project "B" I use importlib(A.tlb) in B.idl and #import "A.tlb" in stdafx.h and implement an interface IA from A.tlb ...
2
votes
2answers
336 views
Calling an old OLE component from C#
I have a very old (VC++ 5.0) proprietary DLL which I need to use from C# (Visual Studio 2010). The example specifies that to access this component I need to call CreateDispatch("application") which ...
2
votes
1answer
840 views
A registered tlb file on Windows 7 (64bit) isn't usable
I have a (VS 2008) C# project that needs to use a 3rd-party COM object. For that, I'm told, I need to register the COM objects's tlb file. So I do
...
2
votes
1answer
475 views
A .tlb file must be registered?
I have a com interop c++ dll that is loaded in c++ throught the .tlb file generated in c#.
When I run in my computer it works fine but when I run in a computer that just got formated it gives:
...
2
votes
1answer
833 views
How to get IDL from a .NET assembly (or how to to convert TLB to IDL) in a command line?
We have a .NET assembly (Aspose.Words actually) and we want clients to use it from COM clients without much hassle.
So we ship a .TLB with the assembly so the client can use it from languages such ...
2
votes
3answers
88 views
Can a memory page be moved by modifying the page table?
Is it possible (on any reasonable OS, preferably Linux) to swap the contents of two memory pages by only modifying the page table and not actually moving any data?
The motivation is a dense matrix ...
2
votes
2answers
505 views
Why is the type library in my dll corrupt (registering returns TYPE_E_CANTLOADLIBRARY)?
We have a mature c++ COM codebase that has been building, registering and running for many years. This includes numerous developer machines and autobuild machines.
The codebase builds several dlls ...
2
votes
4answers
3k views
Register type library x64 regtlib)
I'm running Windows 7 x64, and need to register a type library file (.tlb). I've done this previosuly (on a vista x64 machine) but neglected to take notes as to how I acheived it...
There is no ...
2
votes
3answers
4k views
COM automation using tlb file
Consider me a novice to windows environment and COM programming.
I have to automate an application (CANoe) access. CANoe exposes itself as a COM server and provides CANoe.h , CANoe_i.c and CANoe.tlb ...
2
votes
3answers
595 views
.tlh generated on 2 machines is different
I have a .NET dll which has some interfaces\classes which are exposed to com. during the build procedure a .tlb file is generated and this tlb is referenced by some c++ code. As a result the ...
1
vote
0answers
27 views
Command to measure TLB misses on LINUX
Could some one direct me to a command to measure TLB misses on LINUX, please? Is it okay to consider minor page faults as TLB misses?
1
vote
2answers
87 views
How to keep the generated TLB file neat?
Hi I use interop to call C# code in Delphi.
C# code has a binary and in Delphi 5 Menu: Project-->Import Type Library
Click Add to add the tlb file: XXXX.tlb
Unit dir name: input the path where the ...
1
vote
1answer
51 views
How to learn the associativity (number of way) of the TLB?
I have a task to learn the number of ways in TLB-cache. Which algorithm should I use?
1
vote
1answer
79 views
How to access sub object in CANoe COM Server Interface
I have one big and difficult to understand problem with COM Server. I’m trying write client application to CANoe (application by Vector). They gave CANoe.tlb, CANoe.h and CANoe_i.cpp files but I use ...
1
vote
0answers
46 views
Asynchronous calls from C++ into COM component imported via TLB
I have an #imported external component that provides methods that are rather expensive to call (typical execution takes from a few seconds to several minutes). So far, I've been calling the component ...
1
vote
1answer
226 views
How to autogenerate *_TLB.pas in Delphi XE?
We have been updated our project to Delphi XE. There's .ridl files instead .tlb. But what's about *_TLB.pas files? How to migrate changes in .ridl file to *_TLB.pas file?
Delphi XE doesn't modify ...
1
vote
0answers
47 views
Can Intel processors delay TLB invalidations?
This in reference to InteI's Software Developer’s Manual (Order Number: 325384-039US May 2011), the section 4.10.4.4 "Delayed Invalidation" describes a potential delay in invalidation of TLB entries ...
1
vote
1answer
86 views
Dump the contents of TLB buffer of x86 CPU
Is it possible to get list of translations (from virtual pages into physical pages) from TLB (Translation lookaside buffer, this is a special cache in the CPU). I mean modern x86 or x86_64; and I want ...
1
vote
2answers
60 views
Committing a TLB file to repository
I'm importing a TLB file into my project since I'm using a COM DLL. A TLB file is a binary file, which I need to compile my source code and so I was wondering if it's good programming practice to ...
1
vote
1answer
788 views
Import TLB into C#
i want to import a Type Library (tlb) into C#.
How do i import a .tlb into a .cs code file?
Borland Delphi can import a .tlb into .pas by using the command line tool tlibimp.exe:
...
1
vote
2answers
948 views
Visual Studio 2010 - TYPE_E_REGISTRYACCESS
I'm building my VS2010 solution and in output window there is an error just for one project.
In error tab:
Error 161 Cannot register type library ...
1
vote
1answer
754 views
How to Extract TypeLib from a COM exe on Command Line
I've recently had need to produce an interop assembly. After some googling I discovered tlbimp.exe. My next problem was that my COM library did not come with a .tlb file. Further googling revealed ...
1
vote
1answer
219 views
How to get Imported type libraries from an OCX or TLB file?
I was convinced that there is no way to find COM dependencies of an ActiveX but to my surprise OLEVIEW shows some comments Like:
// TLib : // TLib : OLE Automation : ...
1
vote
1answer
244 views
Any way to resolve C4772 errors without having to register DLLs?
I am maintaining a VS2010 project which has a number of cross-referenced COM libraries. I am trying to configure the project in such a way that it is buildable from a random workstation which has ...
1
vote
1answer
478 views
Use C# DLL as COM under Delphi
We got a DLL written by C# programmers, compiled to usable as COM object.
We consult these developers to get the function names, and syntaxes, and we can use it after we registered it with regasm.
...
1
vote
1answer
206 views
How to make .NET not to use registered TLB to marshal calls to COM methods?
Current configuration is:
The main application is unmanaged.
It contains DLL, containing TLB, which describes functions, exposed to COM model.
To support ASMX web services, it loads .NET ...
1
vote
1answer
452 views
Why does visual studio ignore the tlb filename specified in the project file
I'm in the process of upgrading a Visual C++ 6 project to Visual Studio 2010, and I've been replacing the post-compile steps of copying files to a common location with having the output file put ...
1
vote
3answers
557 views
Merging two .IDL files or two .tlb files into one file
I have 2 .net dll's which I expose to COM using REGASM. In order to simplify referencing within a COM client I would like to make these into one file.
I have tried converting both files to IDL and ...
1
vote
1answer
152 views
Using records as property types in Delphi COM Wizard
I am trying to design a COM library that uses a property to return a record. The Delphi COM Wizard allows me to create the property, but when it is compiled, I get
[GENTLB Error] Project1.ridl(1): ...