Changeset b6fe7e6 for src/libcfa
- Timestamp:
- Sep 9, 2016, 1:58:07 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 03e3117
- Parents:
- d1969a6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/prelude.cf ¶
rd1969a6 rb6fe7e6 636 636 637 637 // default ctor 638 void ?{}( _Bool * ) , ?{}( volatile _Bool * );639 void ?{}( char * ) , ?{}( volatile char * );640 void ?{}( unsigned char * ) , ?{}( volatile unsigned char * );641 void ?{}( char signed * ) , ?{}( volatile char signed * );642 void ?{}( int short * ) , ?{}( volatile int short * );643 void ?{}( int short unsigned * ) , ?{}( volatile int short unsigned * );644 void ?{}( signed int * ) , ?{}( volatile signed int * );645 void ?{}( unsigned int * ) , ?{}( volatile unsigned int * );646 void ?{}( signed long int * ) , ?{}( volatile signed long int * );647 void ?{}( unsigned long int * ) , ?{}( volatile unsigned long int * );648 void ?{}( signed long long int * ) , ?{}( volatile signed long long int * );649 void ?{}( unsigned long long int * ) , ?{}( volatile unsigned long long int * );650 void ?{}( float * ) , ?{}( volatile float * );651 void ?{}( double * ) , ?{}( volatile double * );652 void ?{}( long double * ) , ?{}( volatile long double * );653 void ?{}( float _Complex * ) , ?{}( volatile float _Complex * );654 void ?{}( double _Complex * ) , ?{}( volatile double _Complex * );655 void ?{}( long double _Complex * ) , ?{}( volatile long double _Complex * );638 void ?{}( _Bool * ); 639 void ?{}( char * ); 640 void ?{}( unsigned char * ); 641 void ?{}( char signed * ); 642 void ?{}( int short * ); 643 void ?{}( int short unsigned * ); 644 void ?{}( signed int * ); 645 void ?{}( unsigned int * ); 646 void ?{}( signed long int * ); 647 void ?{}( unsigned long int * ); 648 void ?{}( signed long long int * ); 649 void ?{}( unsigned long long int * ); 650 void ?{}( float * ); 651 void ?{}( double * ); 652 void ?{}( long double * ); 653 void ?{}( float _Complex * ); 654 void ?{}( double _Complex * ); 655 void ?{}( long double _Complex * ); 656 656 657 657 // copy ctor 658 void ?{}( _Bool *, _Bool ) , ?{}( volatile _Bool *, _Bool );659 void ?{}( char *, char ) , ?{}( volatile char *, char );660 void ?{}( unsigned char *, unsigned char ) , ?{}( volatile unsigned char *, unsigned char );661 void ?{}( char signed *, char signed ) , ?{}( volatile char signed *, char signed );662 void ?{}( int short *, int short ) , ?{}( volatile int short *, int short );663 void ?{}( int short unsigned *, int short unsigned ) , ?{}( volatile int short unsigned *, int short unsigned );664 void ?{}( signed int *, signed int) , ?{}( volatile signed int *, signed int );665 void ?{}( unsigned int *, unsigned int) , ?{}( volatile unsigned int *, unsigned int );666 void ?{}( signed long int *, signed long int) , ?{}( volatile signed long int *, signed long int );667 void ?{}( unsigned long int *, unsigned long int) , ?{}( volatile unsigned long int *, unsigned long int );668 void ?{}( signed long long int *, signed long long int) , ?{}( volatile signed long long int *, signed long long int );669 void ?{}( unsigned long long int *, unsigned long long int) , ?{}( volatile unsigned long long int *, unsigned long long int );670 void ?{}( float *, float) , ?{}( volatile float *, float );671 void ?{}( double *, double) , ?{}( volatile double *, double );672 void ?{}( long double *, long double) , ?{}( volatile long double *, long double );673 void ?{}( float _Complex *, float _Complex) , ?{}( volatile float _Complex *, float _Complex );674 void ?{}( double _Complex *, double _Complex) , ?{}( volatile double _Complex *, double _Complex );675 void ?{}( long double _Complex *, long double _Complex) , ?{}( volatile long double _Complex *, long double _Complex );658 void ?{}( _Bool *, _Bool ); 659 void ?{}( char *, char ); 660 void ?{}( unsigned char *, unsigned char ); 661 void ?{}( char signed *, char signed ); 662 void ?{}( int short *, int short ); 663 void ?{}( int short unsigned *, int short unsigned ); 664 void ?{}( signed int *, signed int); 665 void ?{}( unsigned int *, unsigned int); 666 void ?{}( signed long int *, signed long int); 667 void ?{}( unsigned long int *, unsigned long int); 668 void ?{}( signed long long int *, signed long long int); 669 void ?{}( unsigned long long int *, unsigned long long int); 670 void ?{}( float *, float); 671 void ?{}( double *, double); 672 void ?{}( long double *, long double); 673 void ?{}( float _Complex *, float _Complex); 674 void ?{}( double _Complex *, double _Complex); 675 void ?{}( long double _Complex *, long double _Complex); 676 676 677 677 // dtor 678 void ^?{}( _Bool * ) , ^?{}( volatile _Bool * );679 void ^?{}( char * ) , ^?{}( volatile char * );680 void ^?{}( char unsigned * ) , ^?{}( volatile char unsigned * );681 void ^?{}( char signed * ) , ^?{}( volatile char signed * );682 void ^?{}( int short * ) , ^?{}( volatile int short * );683 void ^?{}( int short unsigned * ) , ^?{}( volatile int short unsigned * );684 void ^?{}( signed int * ) , ^?{}( volatile signed int * );685 void ^?{}( unsigned int * ) , ^?{}( volatile unsigned int * );686 void ^?{}( signed long int * ) , ^?{}( volatile signed long int * );687 void ^?{}( unsigned long int * ) , ^?{}( volatile unsigned long int * );688 void ^?{}( signed long long int * ) , ^?{}( volatile signed long long int * );689 void ^?{}( unsigned long long int * ) , ^?{}( volatile unsigned long long int * );690 void ^?{}( float * ) , ^?{}( volatile float * );691 void ^?{}( double * ) , ^?{}( volatile double * );692 void ^?{}( long double * ) , ^?{}( volatile long double * );693 void ^?{}( float _Complex * ) , ^?{}( volatile float _Complex * );694 void ^?{}( double _Complex * ) , ^?{}( volatile double _Complex * );695 void ^?{}( long double _Complex * ) , ^?{}( volatile long double _Complex * );678 void ^?{}( _Bool * ); 679 void ^?{}( char * ); 680 void ^?{}( char unsigned * ); 681 void ^?{}( char signed * ); 682 void ^?{}( int short * ); 683 void ^?{}( int short unsigned * ); 684 void ^?{}( signed int * ); 685 void ^?{}( unsigned int * ); 686 void ^?{}( signed long int * ); 687 void ^?{}( unsigned long int * ); 688 void ^?{}( signed long long int * ); 689 void ^?{}( unsigned long long int * ); 690 void ^?{}( float * ); 691 void ^?{}( double * ); 692 void ^?{}( long double * ); 693 void ^?{}( float _Complex * ); 694 void ^?{}( double _Complex * ); 695 void ^?{}( long double _Complex * ); 696 696 697 697 // // default ctor … … 719 719 720 720 forall( dtype DT ) void ?{}( DT * *, DT * ); 721 forall( dtype DT ) void ?{}( DT * volatile *, DT * );722 721 forall( dtype DT ) void ?{}( const DT * *, DT * ); 723 forall( dtype DT ) void ?{}( const DT * volatile *, DT * );724 722 forall( dtype DT ) void ?{}( const DT * *, const DT * ); 725 forall( dtype DT ) void ?{}( const DT * volatile *, const DT * );726 723 forall( dtype DT ) void ?{}( volatile DT * *, DT * ); 727 forall( dtype DT ) void ?{}( volatile DT * volatile *, DT * );728 724 forall( dtype DT ) void ?{}( volatile DT * *, volatile DT * ); 729 forall( dtype DT ) void ?{}( volatile DT * volatile *, volatile DT * );730 725 731 726 forall( dtype DT ) void ?{}( const volatile DT * *, DT * ); 732 forall( dtype DT ) void ?{}( const volatile DT * volatile *, DT * );733 727 forall( dtype DT ) void ?{}( const volatile DT * *, const DT * ); 734 forall( dtype DT ) void ?{}( const volatile DT * volatile *, const DT * );735 728 forall( dtype DT ) void ?{}( const volatile DT * *, volatile DT * ); 736 forall( dtype DT ) void ?{}( const volatile DT * volatile *, volatile DT * );737 729 forall( dtype DT ) void ?{}( const volatile DT * *, const volatile DT * ); 738 forall( dtype DT ) void ?{}( const volatile DT * volatile *, const volatile DT * );739 730 740 731 forall( dtype DT ) void ?{}( DT * *, void * ); 741 forall( dtype DT ) void ?{}( DT * volatile *, void * );742 732 forall( dtype DT ) void ?{}( const DT * *, void * ); 743 forall( dtype DT ) void ?{}( const DT * volatile *, void * );744 733 forall( dtype DT ) void ?{}( const DT * *, const void * ); 745 forall( dtype DT ) void ?{}( const DT * volatile *, const void * );746 734 forall( dtype DT ) void ?{}( volatile DT * *, void * ); 747 forall( dtype DT ) void ?{}( volatile DT * volatile *, void * );748 735 forall( dtype DT ) void ?{}( volatile DT * *, volatile void * ); 749 forall( dtype DT ) void ?{}( volatile DT * volatile *, volatile void * );750 736 751 737 forall( dtype DT ) void ?{}( const volatile DT * *, void * ); 752 forall( dtype DT ) void ?{}( const volatile DT * volatile *, void * );753 738 forall( dtype DT ) void ?{}( const volatile DT * *, const void * ); 754 forall( dtype DT ) void ?{}( const volatile DT * volatile *, const void * );755 739 forall( dtype DT ) void ?{}( const volatile DT * *, volatile void * ); 756 forall( dtype DT ) void ?{}( const volatile DT * volatile *, volatile void * );757 740 forall( dtype DT ) void ?{}( const volatile DT * *, const volatile void * ); 758 forall( dtype DT ) void ?{}( const volatile DT * volatile *, const volatile void * );759 741 760 742 forall( dtype DT ) void ?{}( void * *, DT * ); 761 forall( dtype DT ) void ?{}( void * volatile *, DT * );762 743 forall( dtype DT ) void ?{}( const void * *, DT * ); 763 forall( dtype DT ) void ?{}( const void * volatile *, DT * );764 744 forall( dtype DT ) void ?{}( const void * *, const DT * ); 765 forall( dtype DT ) void ?{}( const void * volatile *, const DT * );766 745 forall( dtype DT ) void ?{}( volatile void * *, DT * ); 767 forall( dtype DT ) void ?{}( volatile void * volatile *, DT * );768 746 forall( dtype DT ) void ?{}( volatile void * *, volatile DT * ); 769 forall( dtype DT ) void ?{}( volatile void * volatile *, volatile DT * );770 747 forall( dtype DT ) void ?{}( const volatile void * *, DT * ); 771 forall( dtype DT ) void ?{}( const volatile void * volatile *, DT * );772 748 forall( dtype DT ) void ?{}( const volatile void * *, const DT * ); 773 forall( dtype DT ) void ?{}( const volatile void * volatile *, const DT * );774 749 forall( dtype DT ) void ?{}( const volatile void * *, volatile DT * ); 775 forall( dtype DT ) void ?{}( const volatile void * volatile *, volatile DT * );776 750 forall( dtype DT ) void ?{}( const volatile void * *, const volatile DT * ); 777 forall( dtype DT ) void ?{}( const volatile void * volatile *, const volatile DT * );778 751 779 752 void ?{}( void * *, void * ); 780 void ?{}( void * volatile *, void * );781 753 void ?{}( const void * *, void * ); 782 void ?{}( const void * volatile *, void * );783 754 void ?{}( const void * *, const void * ); 784 void ?{}( const void * volatile *, const void * );785 755 void ?{}( volatile void * *, void * ); 786 void ?{}( volatile void * volatile *, void * );787 756 void ?{}( volatile void * *, volatile void * ); 788 void ?{}( volatile void * volatile *, volatile void * );789 757 void ?{}( const volatile void * *, void * ); 790 void ?{}( const volatile void * volatile *, void * );791 758 void ?{}( const volatile void * *, const void * ); 792 void ?{}( const volatile void * volatile *, const void * );793 759 void ?{}( const volatile void * *, volatile void * ); 794 void ?{}( const volatile void * volatile *, volatile void * );795 760 void ?{}( const volatile void * *, const volatile void * ); 796 void ?{}( const volatile void * volatile *, const volatile void * );797 761 798 762 //forall( dtype DT ) void ?{}( DT * *, forall( dtype DT2 ) const DT2 * ); 799 763 //forall( dtype DT ) void ?{}( DT * volatile *, forall( dtype DT2 ) const DT2 * ); 800 764 forall( dtype DT ) void ?{}( const DT * *, forall( dtype DT2 ) const DT2 * ); 801 forall( dtype DT ) void ?{}( const DT * volatile *, forall( dtype DT2 ) const DT2 * );802 765 //forall( dtype DT ) void ?{}( volatile DT * *, forall( dtype DT2 ) const DT2 * ); 803 766 //forall( dtype DT ) void ?{}( volatile DT * volatile *, forall( dtype DT2 ) const DT2 * ); 804 767 forall( dtype DT ) void ?{}( const volatile DT * *, forall( dtype DT2 ) const DT2 * ); 805 forall( dtype DT ) void ?{}( const volatile DT * volatile *, forall( dtype DT2 ) const DT2 * );806 768 807 769 forall( ftype FT ) void ?{}( FT * *, forall( ftype FT2 ) FT2 * ); 808 forall( ftype FT ) void ?{}( FT * volatile *, forall( ftype FT2 ) FT2 * );809 770 810 771 // default ctors 811 772 forall( ftype FT ) void ?{}( FT * * ); 812 forall( ftype FT ) void ?{}( FT * volatile * );813 773 814 774 forall( dtype DT ) void ?{}( DT * *); 815 forall( dtype DT ) void ?{}( DT * volatile *);816 775 forall( dtype DT ) void ?{}( const DT * *); 817 forall( dtype DT ) void ?{}( const DT * volatile *);818 776 forall( dtype DT ) void ?{}( volatile DT * *); 819 forall( dtype DT ) void ?{}( volatile DT * volatile *);820 777 forall( dtype DT ) void ?{}( const volatile DT * *); 821 forall( dtype DT ) void ?{}( const volatile DT * volatile *);822 778 823 779 void ?{}( void * *); 824 void ?{}( void * volatile *);825 780 void ?{}( const void * *); 826 void ?{}( const void * volatile *);827 781 void ?{}( volatile void * *); 828 void ?{}( volatile void * volatile *);829 782 void ?{}( const volatile void * *); 830 void ?{}( const volatile void * volatile *);831 783 832 784 // dtors 833 785 forall( ftype FT ) void ^?{}( FT * * ); 834 forall( ftype FT ) void ^?{}( FT * volatile * );835 786 836 787 forall( dtype DT ) void ^?{}( DT * *); 837 forall( dtype DT ) void ^?{}( DT * volatile *);838 788 forall( dtype DT ) void ^?{}( const DT * *); 839 forall( dtype DT ) void ^?{}( const DT * volatile *);840 789 forall( dtype DT ) void ^?{}( volatile DT * *); 841 forall( dtype DT ) void ^?{}( volatile DT * volatile *);842 790 forall( dtype DT ) void ^?{}( const volatile DT * *); 843 forall( dtype DT ) void ^?{}( const volatile DT * volatile *);844 791 845 792 void ^?{}( void * *); 846 void ^?{}( void * volatile *);847 793 void ^?{}( const void * *); 848 void ^?{}( const void * volatile *);849 794 void ^?{}( volatile void * *); 850 void ^?{}( volatile void * volatile *);851 795 void ^?{}( const volatile void * *); 852 void ^?{}( const volatile void * volatile *);853 796 854 797 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.