Barry Kelly

14,193
reputation
1290 views

Registered User

name Barry Kelly
member for 1 year
seen Dec 17 at 20:54
website
location GB
age 30
R&D Engineer on the Delphi compiler, formerly of Borland, now by Embarcadero Technologies.

Interested in all sorts of software language solutions to problems that don't lend themselves better to other kinds of solutions.
Dec
17
comment Delphi: Records in Classes
The workaround is not safe to use. Consider a future change to the Rec property, which so that it reads from a getter rather than a field: your hack would mean it would be modifying a temporary and would have no effect on the underlying field. That's why properties don't allow modifying returned value types.
Dec
17
comment Delphi: Records in Classes
The reason the workaround works is because you're hacking the type system. The type system is trying to prevent you from writing to the property, because a future change may mean the property returns a copy (such as the return value of a getter), rather than the underlying field.
Dec
13
comment Is it memory safe to provide an object as a function result?
Craig, my answer only relates to the term memory safety, and I didn't say GC is a silver bullet - though it's almost always better than the alternatives. You might want to dig a little deeper into who's saying what before you suggest what they write is garbage.
Dec
13
comment Is it memory safe to provide an object as a function result?
Yes really. We're talking about CS definitions here: either precise garbage collection, fat pointers (which remember allocation status), infinite memory (i.e. no deallocation), or no memory allocations is required for memory safety, in the absence of things like theorem proving (which tends to turn into the halting problem very quickly in Turing complete languages). You might find en.wikipedia.org/wiki/Memory_safety interesting.
Dec
13
answered Why use exception handling in apparently “safe” code?
Dec
13
answered Is it memory safe to provide an object as a function result?
Dec
7
accepted Expression trees for code which doesn’t type check
Dec
7
accepted Grammatica Parsing Error, Wrong Expected Encoding?
Dec
7
comment C++0x, Compiler hooks and hard coded languages features.
"You can lead a horse to water, but you can't make it drink"...
Dec
7
comment C++0x, Compiler hooks and hard coded languages features.
What would the alternative be, Dave? It would need to have a type. What would that type be? It would either be intrinsic to C++ (but of course it would still have a hidden RTL implementation, nothing comes of nothing), or it would be defined in a standard header.
Dec
7
revised C++0x, Compiler hooks and hard coded languages features.
added 397 characters in body
Dec
7
comment C++0x, Compiler hooks and hard coded languages features.
Dave, thread_local won't work without guts in the RTL either, nor will exception-dispatching support. I think you've just been living a sheltered life :) - the compiler is doing more work with the cooperation of the RTL than you've been aware of, and you've just taken it for granted. Now here comes another feature ({}) which needs RTL support (std::initializer_list) and you come off all surprised!
Dec
7
comment Why bother with strong names for private assemblies?
This is not true; people can tamper with your assembly and / or replace it with another. Of course, executables won't link at runtime unless the validation has been disabled or the executables have been modified to remove the strong linking requirement. But if you're able to tamper with an assembly, the chances are you're able to tamper with the executable too.
Dec
7
answered C++0x, Compiler hooks and hard coded languages features.
Dec
7
answered Grammatica Parsing Error, Wrong Expected Encoding?
Dec
7
comment How hard is it to tamper with a strong named assembly?
Normally the private key is not distributed with the assembly, so strong naming it will still leave it incompatible with clients of the assembly, which have the public key embedded in their assembly references. It would be easier for them to modify the clients to remove the strong name requirement.
Dec
7
comment How hard is it to tamper with a strong named assembly?
Of course, the other application(s) may also be modified to remove the strong-linking requirement.
Dec
6
awarded  Mortarboard
Dec
6
comment Interop assembly pointer length
COM is a binary standard. The COM interface cannot float between 32-bit and 64-bit depending on which .NET framework was used to execute it, but .NET code will. You should only use U/IntPtr if your executable is fixed to one or the other (i.e. not AnyCPU).
Dec
6
revised Expression trees for code which doesn’t type check
added 60 characters in body
Dec
6
answered Interop assembly pointer length
Dec
6
answered Expression trees for code which doesn’t type check
Dec
5
accepted comparing a GUID so I can sort by GUID
Dec
5
comment Does anyone recognise this unfamiliar notation?
Almost. a, b and c are terminal symbols in the language L. L is basically being defined as all strings of 'a' followed by 'b' followed by 'c', such that there are zero or more of 'a', the same or more of 'b', and the number of 'a' and 'c' together is greater or equal to the number of 'b'.
Dec
5
comment comparing a GUID so I can sort by GUID
Mike C. - a sort order is very useful for general algorithms and collections. Consider a set collection which needs guaranteed bounded performance - a balanced tree would be suitable, but it needs some arbitrary sorting order.
Dec
5
answered comparing a GUID so I can sort by GUID
Dec
5
answered How can I enable my 32-bit Delphi application to use 4gb of memory on 64-bit windows (via Wow64.exe)?
Dec
2
answered How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
Nov
28
comment Delphi 2010 inlining useless?!
Lars +1 - except that it's not that rare.
Nov
19
comment String encoding of primitive types preserving lexicographic order
What do you mean by lexicographic order with respect to integers and floats? Their lexicographic sorting depends on how you encode them, e.g. binary, octal, decimal, hex etc. (assuming leading digits removed) all will give different lexicographical sorts for a given list of numbers.
Nov
19
revised passing primitive or struct type as function argument
edited tags
Nov
17
answered Dos/Windows Batch help in setting a variable from command output
Nov
12
comment Do Generics Mess Up Interface Name Mapping?
It does not, unfortunately. I really should look into it though.
Nov
12
accepted Do Generics Mess Up Interface Name Mapping?
Nov
12
accepted What is this 1055 Delphi Error and is it Important?
Nov
12
answered What is this 1055 Delphi Error and is it Important?
Nov
12
answered Do Generics Mess Up Interface Name Mapping?
Nov
11
revised Delphi printing primer
spelling
Nov
9
comment How set dynamic array size in Delphi Prism (SetLength doesn’t work)
Array.Resize<T> is the way to go, as jamiei's answer indicates.
Nov
9
comment C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use what
The default format provider is CultureInfo.CurrentCulture; it's the one that's used if you don't specify one in one of the overloads to string.Format. I already explained what you'd use IFormatProvider for - to provide configuration info (e.g. ask for CultureInfo), for things like date formatting (e.g. to use CultureInfo.DateTimeFormat).
Nov
9
answered Is inspecting file structure and changes to the system registry considered reverse-engineering?
Nov
8
revised C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use what
added 2 characters in body
Nov
8
comment How to Syntax Highlight in a RichTextBox [C#]?
Syntax highlighting, for a text renderer designed to call you back or iteratively receive text before rendering, is actually pretty trivial: it's just a lexical analysis that classifies the text according to its token type. But RTF and other rich editors are not designed this way, with separation between model data and its presentation.
Nov
8
revised C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use what
added 774 characters in body
Nov
8
revised C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use what
added 1081 characters in body
Nov
8
answered C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use what
Nov
8
answered Correct pattern for multi-thread synchronization? (C#)
Nov
8
comment Is There A Fast GetToken Routine For Delphi?
Oops, that comment was in the wrong box.
Nov
8
revised Is There A Fast GetToken Routine For Delphi?
added 170 characters in body
Nov
8
comment Is There A Fast GetToken Routine For Delphi?
I updated my answer. End result: it depends. If your delimiter is likely to be more than one character, your original routine isn't too bad, though it may be possible to make faster using Boyer-Moore. If it is a single character, then PChar scanning will beat it. BTW, if speed is very important and your data source is not UTF-16, then you will be faster with AnsiString and PAnsiChar as well.