Sha256: b4a20301c9e7a135591fb5036ffd37a375484465b00ceb7361a83254ec27e236

Contents?: true

Size: 1.78 KB

Versions: 92

Compression:

Stored size: 1.78 KB

Contents

/*
Shiltiumcomp -- the first Shiltolang compiler

Copyright (C) 2010 Gregory Cohen <gregorycohenvideos@gmail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#if DEBUG
	static void output_short_branch_instruction(const schar displacement, const char* cr string) {
		output_nullt_string(TAB_STRING TAB_STRING "; displacement is ");
		
		{
			uchar displacement_ = displacement;
			
			if (displacement_ > 127) {
				output_space();
				displacement_ = -displacement_;
			}
			
			/*
			This is a minor optimization.
			putu() can be used instead, but putu_without_commas() is slightly faster.
			*/
			putu_without_commas(displacement_);
		}
		
		output_nullt_string("\n" TAB_STRING TAB_STRING);
		output_nullt_string(string);
		
		output_nullt_string(" short $");
		
		if (displacement + 2) {
			uchar displacement_;
			
			if (displacement + 2 > 0) {
				output_nullt_string(" + ");
			} else {
				output_nullt_string(" - ");
			}
			
			displacement_ = displacement + 2;
			if (displacement_ > 127) {
				displacement_ = -displacement_;
			}
			
			/*
			This is a minor optimization.
			putu() can be used instead, but putu_without_commas() is slightly faster.
			*/
			putu_without_commas(displacement_);
		}
		
		output_newline();
	}
#endif

Version data entries

92 entries across 46 versions & 6 rubygems

Version Path
ufos-1.0.79 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
ufos-1.0.79 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
aliens-1.0.79 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
aliens-1.0.79 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
freespeech-1.0.79 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
freespeech-1.0.79 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.79 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.79 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.77 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.77 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
ufos-1.0.77 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
ufos-1.0.77 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
aliens-1.0.77 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
aliens-1.0.77 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
freespeech-1.0.77 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
freespeech-1.0.77 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.72 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
elonmusk-1.0.72 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h
ufos-1.0.72 ./other/old_compiler/shiltiumcomp59/arch/x86/instructions/output_short_branch_instruction.h
ufos-1.0.72 ./other/old_compiler/shiltiumcomp58/arch/x86/instructions/output_short_branch_instruction.h