Richard Stallman
0924ddefb6
Renamed TREE_INLINE, TREE_NONLOCAL, TREE_REGDECL, TREE_EXTERNAL.
...
to DECL_INLINE, DECL_NONLOCAL, DECL_REGISTER, DECL_EXTERNAL.
From-SVN: r1570
1992-07-12 03:06:32 +00:00
Michael Meissner
f94b4fbc75
Remove xmalloc/free declarations
...
From-SVN: r1562
1992-07-12 01:56:28 +00:00
Michael Meissner
c724abee00
Fix call to build_int_2 to have 2 arguments.
...
From-SVN: r1536
1992-07-09 01:17:16 +00:00
Richard Stallman
1ae3f45f5b
(build_module_descriptor,add_objc_decls):
...
Set DECL_IN_SYSTEM_HEADER instead of TREE_USED on compiler-created decls.
From-SVN: r1493
1992-07-07 01:48:35 +00:00
Richard Stallman
9d00e77707
entered into RCS
...
From-SVN: r931
1992-05-07 06:41:25 +00:00
Richard Stallman
9dee6758c3
*** empty log message ***
...
From-SVN: r853
1992-04-28 23:43:21 +00:00
Richard Stallman
6e3f07241c
*** empty log message ***
...
From-SVN: r822
1992-04-23 02:20:18 +00:00
Richard Kenner
fc3ffe8309
*** empty log message ***
...
From-SVN: r754
1992-04-16 22:05:56 -04:00
Dennis Glatting
2db2bea5cb
Check in after array version of run-time works.
...
Expect more changes as hash version and other changes are made.
From-SVN: r734
1992-04-13 11:43:08 +00:00
Tom Wood
77f934bbbf
*** empty log message ***
...
From-SVN: r732
1992-04-13 10:58:19 +00:00
Richard Stallman
55142f01b2
*** empty log message ***
...
From-SVN: r575
1992-03-23 05:29:03 +00:00
Jim Wilson
b85b8af2c0
*** empty log message ***
...
From-SVN: r522
1992-03-19 10:40:36 -08:00
Richard Stallman
af35aeb289
*** empty log message ***
...
From-SVN: r497
1992-03-16 04:38:38 +00:00
Richard Stallman
b8093d0212
*** empty log message ***
...
From-SVN: r399
1992-03-06 03:15:07 +00:00
Richard Stallman
b3a5ad9cbd
*** empty log message ***
...
From-SVN: r326
1992-02-15 20:26:02 +00:00
Richard Stallman
6c65299b5e
Initial revision
...
From-SVN: r203
1992-01-17 23:15:38 +00:00
Dennis Glatting
ec04a5a3c9
modified to handle new initialization scheme.
...
fixed code structure.
From-SVN: r155
1992-01-03 02:55:03 +00:00
Dennis Glatting
94b8bab1ea
Deleted index variable stuff. Index variables are a hack to the language.
...
Cleaned up some documentation.
From-SVN: r149
1991-12-31 20:16:08 +00:00
Richard Stallman
02ba24b7f4
entered into RCS
...
From-SVN: r135
1991-12-24 04:01:31 +00:00
Dennis Glatting
eedb4710a6
Cleaned up file format for a distribution.
...
From-SVN: r111
1991-12-10 12:05:28 +00:00
Dennis Glatting
cb21dc2330
fixed assert macro.
...
added memory allocation adjustment macro for hash size allocation.
From-SVN: r96
1991-12-03 02:01:23 +00:00
Dennis Glatting
d17804d82a
modified to remove changes previously made to implement posing.
...
modified to remove changes previously made to
implement posing. posing just got easy.
From-SVN: r83
1991-12-01 01:29:29 +00:00
Dennis Glatting
b21c45844b
modified to implement set functions.
...
From-SVN: r81
1991-11-29 22:00:10 +00:00
Dennis Glatting
752efdc0a5
fixed several const decls. bozo.
...
From-SVN: r80
1991-11-29 20:02:01 +00:00
Dennis Glatting
3f2f181378
many changes including posing...
...
many changes including posing, things to make the compiler
happier, structure changes, and things to make it play better.
From-SVN: r79
1991-11-29 00:24:14 +00:00
Dennis Glatting
a46ecc2682
changed shorts back to ints.
...
the efficiency gained didn't out weight the grossness of the code.
From-SVN: r69
1991-11-24 01:20:02 +00:00
Dennis Glatting
c8497ed621
converted some entries in the hash structure from ints to shorts.
...
this was done to use a less expensive division instruction
in the hashIndex() routine.
From-SVN: r68
1991-11-23 22:19:21 +00:00
Dennis Glatting
b6793c3947
deleted hashIndex() and moved it to hash-inline.h converted...
...
deleted hashIndex() and moved it to hash-inline.h
converted hash_value_for_key() to a inline and moved it to hash-inline.h.
From-SVN: r67
1991-11-23 22:18:29 +00:00
Dennis Glatting
7e8ead54c2
changed hash value calculation.
...
func name changed from hashValue() to hashIndex(). the
func really calculated a index anyway.
changed hash func impl. essentually it was calculating a hash value
from a hash value. this is a implementation thing.
From-SVN: r66
1991-11-21 22:27:06 +00:00
Dennis Glatting
c97e400f30
deleted hash mask information from hash struct.
...
changed hashing algorithm. those values are no longer needed.
From-SVN: r65
1991-11-21 22:25:19 +00:00
Dennis Glatting
c13029bc88
converted hashValue() to a inline.
...
From-SVN: r64
1991-11-20 23:29:20 +00:00
Dennis Glatting
b1fc2c61e2
changed typedef and struct decls.
...
the run-time was changed and those decls changed too.
From-SVN: r63
1991-11-19 12:37:49 +00:00
Dennis Glatting
ddeb938e91
bug in hash_delete().
...
bug in hash_delete(). It was using void* to obtain nodes to
pass to hash_remove(). The value passed to hash_removed() is a
entry from the node structure rather than the node itself. Using
void* removed compiler checking.
Modified to implement cache expansion.
From-SVN: r62
1991-11-19 12:34:41 +00:00
Dennis Glatting
5b54889788
changed the defs for class structures for new implementation of run-time.
...
changed def of SEL back to its original type.
From-SVN: r61
1991-11-16 15:57:35 +00:00
Dennis Glatting
60cabde622
implemented hash table expansion as suggested by rms.
...
From-SVN: r59
1991-11-07 23:23:40 +00:00
Dennis Glatting
eed5ef66e7
added copyleft.
...
From-SVN: r58
1991-11-07 22:31:42 +00:00
Dennis Glatting
1e6464e0e4
added copyleft
...
From-SVN: r57
1991-11-07 22:30:54 +00:00
Dennis Glatting
4217c4568b
Initial check in. Preliminary development stage.
...
From-SVN: r46
1991-10-24 00:45:39 +00:00
Dennis Glatting
e545f2b026
Initial check in. Preliminary development stage.
...
From-SVN: r45
1991-10-24 00:19:24 +00:00
Richard Stallman
ec21bae226
entered into RCS
...
From-SVN: r25
1991-05-31 20:42:57 +00:00
Richard Stallman
430bcc173e
entered into RCS
...
From-SVN: r8
1990-03-24 21:05:55 +00:00