• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
29a704c 1991-11-26 11:48:07 mycroft

entered into RCS


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73 138bc75d-0d04-0410-961f-82ee72b054a4

8c2425e 1991-11-26 04:05:00 Charles Hannum

entered into RCS

From-SVN: r72

40df7dd 1991-11-26 04:05:00 mycroft

entered into RCS


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72 138bc75d-0d04-0410-961f-82ee72b054a4

ec65fa6 1991-11-25 04:57:16 Richard Kenner

Initial revision

From-SVN: r71

263287f 1991-11-25 04:57:16 kenner

Initial revision


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71 138bc75d-0d04-0410-961f-82ee72b054a4

1af1688 1991-11-25 04:01:50 Richard Kenner

Initial revision

From-SVN: r70

f7f605b 1991-11-25 04:01:50 kenner

Initial revision


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70 138bc75d-0d04-0410-961f-82ee72b054a4

a46ecc2 1991-11-24 10:20:02 Dennis Glatting

changed shorts back to ints.

the efficiency gained didn't out weight the grossness of the code.

From-SVN: r69

8ac4e72 1991-11-24 10:20:02 dennisg

changed shorts back to ints.
the efficiency gained didn't out weight the grossness of the code.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69 138bc75d-0d04-0410-961f-82ee72b054a4

c8497ed 1991-11-24 07:19:21 Dennis Glatting

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

d78a651 1991-11-24 07:19:21 dennisg

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.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68 138bc75d-0d04-0410-961f-82ee72b054a4

b6793c3 1991-11-24 07:18:29 Dennis Glatting

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

3f81a99 1991-11-24 07:18:29 dennisg

deleted hashIndex() and moved it to hash-inline.h
converted hash_value_for_key() to a inline and moved it to hash-inline.h.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67 138bc75d-0d04-0410-961f-82ee72b054a4

7e8ead5 1991-11-22 07:27:06 Dennis Glatting

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

53530cd 1991-11-22 07:27:06 dennisg

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.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66 138bc75d-0d04-0410-961f-82ee72b054a4

c97e400 1991-11-22 07:25:19 Dennis Glatting

deleted hash mask information from hash struct.

changed hashing algorithm. those values are no longer needed.

From-SVN: r65

d4deb89 1991-11-22 07:25:19 dennisg

deleted hash mask information from hash struct.
changed hashing algorithm. those values are no longer needed.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65 138bc75d-0d04-0410-961f-82ee72b054a4

c13029b 1991-11-21 08:29:20 Dennis Glatting

converted hashValue() to a inline.

From-SVN: r64

9d4c663 1991-11-21 08:29:20 dennisg

converted hashValue() to a inline.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64 138bc75d-0d04-0410-961f-82ee72b054a4

b1fc2c6 1991-11-19 21:37:49 Dennis Glatting

changed typedef and struct decls.

the run-time was changed and those decls changed too.

From-SVN: r63

f3a6b50 1991-11-19 21:37:49 dennisg

changed typedef and struct decls.
the run-time was changed and those decls changed too.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63 138bc75d-0d04-0410-961f-82ee72b054a4

ddeb938 1991-11-19 21:34:41 Dennis Glatting

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

c9c1dcb 1991-11-19 21:34:41 dennisg

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.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62 138bc75d-0d04-0410-961f-82ee72b054a4

5b54889 1991-11-17 00:57:35 Dennis Glatting

changed the defs for class structures for new implementation of run-time.

changed def of SEL back to its original type.

From-SVN: r61

1c26a84 1991-11-17 00:57:35 dennisg

changed the defs for class structures for new implementation of run-time.
changed def of SEL back to its original type.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61 138bc75d-0d04-0410-961f-82ee72b054a4

defc614 1991-11-15 09:36:37 Richard Kenner

*** empty log message ***

From-SVN: r60

94ab4c0 1991-11-15 09:36:37 kenner

*** empty log message ***


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60 138bc75d-0d04-0410-961f-82ee72b054a4

60cabde 1991-11-08 08:23:40 Dennis Glatting

implemented hash table expansion as suggested by rms.

From-SVN: r59

3428212 1991-11-08 08:23:40 dennisg

implemented hash table expansion as suggested by rms.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59 138bc75d-0d04-0410-961f-82ee72b054a4

eed5ef6 1991-11-08 07:31:42 Dennis Glatting

added copyleft.

From-SVN: r58