mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
* patch by Rika to pass some strings by reference, resolves #39338
This commit is contained in:
parent
c6723ed2c4
commit
e4ee8fa6a2
@ -280,7 +280,7 @@ Implementation
|
||||
var
|
||||
CAssembler : array[tasm] of TAssemblerClass;
|
||||
|
||||
function fixline(s:string):string;
|
||||
function fixline(const s:string):string;
|
||||
{
|
||||
return s with all leading and ending spaces and tabs removed
|
||||
}
|
||||
@ -293,10 +293,10 @@ Implementation
|
||||
j:=1;
|
||||
while (j<i) and (s[j] in [#9,' ']) do
|
||||
inc(j);
|
||||
for k:=j to i do
|
||||
if s[k] in [#0..#31,#127..#255] then
|
||||
s[k]:='.';
|
||||
fixline:=Copy(s,j,i-j+1);
|
||||
result := Copy(s, j, i - j + 1);
|
||||
for k:=1 to length(result) do
|
||||
if result[k] in [#0..#31,#127..#255] then
|
||||
result[k]:='.';
|
||||
end;
|
||||
|
||||
{*****************************************************************************
|
||||
|
@ -95,7 +95,7 @@ type
|
||||
procedure WriteByte(b : Byte); {$ifdef USEINLINE}inline;{$endif}
|
||||
procedure WriteWord(w : Word); {$ifdef USEINLINE}inline;{$endif}
|
||||
procedure WriteDWord(d : Cardinal); {$ifdef USEINLINE}inline;{$endif}
|
||||
Procedure WriteAnsiString (S : AnsiString);
|
||||
Procedure WriteAnsiString (const S : AnsiString);
|
||||
property Position: Longint read GetPosition write SetPosition;
|
||||
property Size: Longint read GetSize write SetSize;
|
||||
end;
|
||||
@ -345,7 +345,7 @@ implementation
|
||||
end;
|
||||
end;
|
||||
|
||||
Procedure TCStream.WriteAnsiString (S : AnsiString);
|
||||
Procedure TCStream.WriteAnsiString (const S : AnsiString);
|
||||
|
||||
Var L : Longint;
|
||||
|
||||
|
@ -207,16 +207,16 @@ interface
|
||||
private
|
||||
itemcnt : longint;
|
||||
fmap : Array Of TLinkRec;
|
||||
function Lookup(key:Ansistring):longint;
|
||||
function Lookup(const key:Ansistring):longint;
|
||||
function getlinkrec(i:longint):TLinkRec;
|
||||
public
|
||||
procedure Add(key:ansistring;value:AnsiString='';weight:longint=LinkMapWeightDefault);
|
||||
procedure addseries(keys:AnsiString;weight:longint=LinkMapWeightDefault);
|
||||
function AddDep(keyvalue:String):boolean;
|
||||
function AddWeight(keyvalue:String):boolean;
|
||||
procedure SetValue(key:AnsiString;Weight:Integer);
|
||||
procedure Add(const key:ansistring;const value:AnsiString='';weight:longint=LinkMapWeightDefault);
|
||||
procedure addseries(const keys:AnsiString;weight:longint=LinkMapWeightDefault);
|
||||
function AddDep(const keyvalue:String):boolean;
|
||||
function AddWeight(const keyvalue:String):boolean;
|
||||
procedure SetValue(const key:AnsiString;Weight:Integer);
|
||||
procedure SortonWeight;
|
||||
function Find(key:AnsiString):AnsiString;
|
||||
function Find(const key:AnsiString):AnsiString;
|
||||
procedure Expand(src:TCmdStrList;dest: TLinkStrMap);
|
||||
procedure UpdateWeights(Weightmap:TLinkStrMap);
|
||||
constructor Create;
|
||||
@ -699,7 +699,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
procedure TLinkStrMap.Add(key:ansistring;value:AnsiString='';weight:longint=LinkMapWeightDefault);
|
||||
procedure TLinkStrMap.Add(const key:ansistring;const value:AnsiString='';weight:longint=LinkMapWeightDefault);
|
||||
begin
|
||||
if lookup(key)<>-1 Then
|
||||
exit;
|
||||
@ -712,7 +712,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function TLinkStrMap.AddDep(keyvalue:String):boolean;
|
||||
function TLinkStrMap.AddDep(const keyvalue:String):boolean;
|
||||
var
|
||||
i : Longint;
|
||||
begin
|
||||
@ -725,7 +725,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function TLinkStrMap.AddWeight(keyvalue:String):boolean;
|
||||
function TLinkStrMap.AddWeight(const keyvalue:String):boolean;
|
||||
var
|
||||
i,j : Longint;
|
||||
Code : Word;
|
||||
@ -745,7 +745,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
procedure TLinkStrMap.addseries(keys:AnsiString;weight:longint);
|
||||
procedure TLinkStrMap.addseries(const keys:AnsiString;weight:longint);
|
||||
var
|
||||
i,j,k : longint;
|
||||
begin
|
||||
@ -761,7 +761,7 @@ implementation
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TLinkStrMap.SetValue(Key:Ansistring;weight:Integer);
|
||||
procedure TLinkStrMap.SetValue(const Key:Ansistring;weight:Integer);
|
||||
var
|
||||
j : longint;
|
||||
begin
|
||||
@ -771,7 +771,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function TLinkStrMap.find(key:Ansistring):Ansistring;
|
||||
function TLinkStrMap.find(const key:Ansistring):Ansistring;
|
||||
var
|
||||
j : longint;
|
||||
begin
|
||||
@ -782,7 +782,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function TLinkStrMap.lookup(key:Ansistring):longint;
|
||||
function TLinkStrMap.lookup(const key:Ansistring):longint;
|
||||
var
|
||||
i : longint;
|
||||
begin
|
||||
|
@ -1772,7 +1772,7 @@ implementation
|
||||
****************************************************************************}
|
||||
|
||||
|
||||
function real_const_node_from_pattern(s:string):tnode;
|
||||
function real_const_node_from_pattern(const s:string):tnode;
|
||||
var
|
||||
d : bestreal;
|
||||
code : integer;
|
||||
|
@ -36,18 +36,18 @@ uses
|
||||
{ symtable }
|
||||
symtype,symdef,symbase;
|
||||
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string;parsedtype:tdef;symname:string;parsedpos:tfileposinfo);inline;
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string);inline;
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;const _prettyname:string;parsedtype:tdef;const symname:string;parsedpos:tfileposinfo);inline;
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;const _prettyname:string);inline;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef):tdef;inline;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;symname:string;symtable:tsymtable):tdef;inline;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;parsedtype:tdef;symname:string;symtable:tsymtable;parsedpos:tfileposinfo):tdef;
|
||||
function generate_specialization_phase2(context:tspecializationcontext;genericdef:tstoreddef;parse_class_parent:boolean;_prettyname:ansistring):tdef;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;const symname:string;symtable:tsymtable):tdef;inline;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;parsedtype:tdef;const symname:string;symtable:tsymtable;parsedpos:tfileposinfo):tdef;
|
||||
function generate_specialization_phase2(context:tspecializationcontext;genericdef:tstoreddef;parse_class_parent:boolean;const _prettyname:ansistring):tdef;
|
||||
function check_generic_constraints(genericdef:tstoreddef;paramlist:tfpobjectlist;poslist:tfplist):boolean;
|
||||
function parse_generic_parameters(allowconstraints:boolean):tfphashobjectlist;
|
||||
function parse_generic_specialization_types(paramlist:tfpobjectlist;poslist:tfplist;out prettyname,specializename:ansistring):boolean;
|
||||
procedure insert_generic_parameter_types(def:tstoreddef;genericdef:tstoreddef;genericlist:tfphashobjectlist);
|
||||
procedure maybe_insert_generic_rename_symbol(const name:tidstring;genericlist:tfphashobjectlist);
|
||||
function generate_generic_name(const name:tidstring;specializename:ansistring;owner_hierarchy:string):tidstring;
|
||||
function generate_generic_name(const name:tidstring;const specializename:ansistring;const owner_hierarchy:string):tidstring;
|
||||
procedure split_generic_name(const name:tidstring;out nongeneric:string;out count:longint);
|
||||
procedure add_generic_dummysym(sym:tsym);
|
||||
function resolve_generic_dummysym(const name:tidstring):tsym;
|
||||
@ -601,7 +601,7 @@ uses
|
||||
end;
|
||||
|
||||
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string);
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;const _prettyname:string);
|
||||
var
|
||||
dummypos : tfileposinfo;
|
||||
begin
|
||||
@ -621,7 +621,7 @@ uses
|
||||
{$pop}
|
||||
|
||||
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;symname:string;symtable:tsymtable):tdef;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;const symname:string;symtable:tsymtable):tdef;
|
||||
var
|
||||
dummypos : tfileposinfo;
|
||||
{$push}
|
||||
@ -632,7 +632,7 @@ uses
|
||||
{$pop}
|
||||
|
||||
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;parsedtype:tdef;symname:string;symtable:tsymtable;parsedpos:tfileposinfo):tdef;
|
||||
function generate_specialization_phase1(out context:tspecializationcontext;genericdef:tdef;parsedtype:tdef;const symname:string;symtable:tsymtable;parsedpos:tfileposinfo):tdef;
|
||||
var
|
||||
found,
|
||||
err : boolean;
|
||||
@ -809,7 +809,7 @@ uses
|
||||
consume(_RSHARPBRACKET);
|
||||
end;
|
||||
|
||||
function generate_specialization_phase2(context:tspecializationcontext;genericdef:tstoreddef;parse_class_parent:boolean;_prettyname:ansistring):tdef;
|
||||
function generate_specialization_phase2(context:tspecializationcontext;genericdef:tstoreddef;parse_class_parent:boolean;const _prettyname:ansistring):tdef;
|
||||
|
||||
procedure unset_forwarddef(def: tdef);
|
||||
var
|
||||
@ -1357,7 +1357,7 @@ uses
|
||||
end;
|
||||
|
||||
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;_prettyname:string;parsedtype:tdef;symname:string;parsedpos:tfileposinfo);
|
||||
procedure generate_specialization(var tt:tdef;parse_class_parent:boolean;const _prettyname:string;parsedtype:tdef;const symname:string;parsedpos:tfileposinfo);
|
||||
var
|
||||
context : tspecializationcontext;
|
||||
genericdef : tstoreddef;
|
||||
@ -1730,7 +1730,7 @@ uses
|
||||
end;
|
||||
end;
|
||||
|
||||
function generate_generic_name(const name:tidstring;specializename:ansistring;owner_hierarchy:string):tidstring;
|
||||
function generate_generic_name(const name:tidstring;const specializename:ansistring;const owner_hierarchy:string):tidstring;
|
||||
var
|
||||
crc : cardinal;
|
||||
begin
|
||||
|
@ -660,7 +660,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function inline_copy_insert_delete(nr:tinlinenumber;name:string;checkempty:boolean) : tnode;
|
||||
function inline_copy_insert_delete(nr:tinlinenumber;const name:string;checkempty:boolean) : tnode;
|
||||
var
|
||||
paras : tnode;
|
||||
{ for easy exiting if something goes wrong }
|
||||
|
@ -968,11 +968,11 @@ type
|
||||
constructor create_int(v: int64);
|
||||
constructor create_uint(v: qword);
|
||||
constructor create_bool(b: boolean);
|
||||
constructor create_str(s: string);
|
||||
constructor create_str(const s: string);
|
||||
constructor create_set(ns: tnormalset);
|
||||
constructor create_real(r: bestreal);
|
||||
class function try_parse_number(s:string):texprvalue; static;
|
||||
class function try_parse_real(s:string):texprvalue; static;
|
||||
class function try_parse_number(const s:string):texprvalue; static;
|
||||
class function try_parse_real(const s:string):texprvalue; static;
|
||||
function evaluate(v:texprvalue;op:ttoken):texprvalue;
|
||||
procedure error(expecteddef, place: string);
|
||||
function isBoolean: Boolean;
|
||||
@ -1087,7 +1087,7 @@ type
|
||||
def:=booldef;
|
||||
end;
|
||||
|
||||
constructor texprvalue.create_str(s: string);
|
||||
constructor texprvalue.create_str(const s: string);
|
||||
var
|
||||
sp: pansichar;
|
||||
len: integer;
|
||||
@ -1120,7 +1120,7 @@ type
|
||||
def:=realdef;
|
||||
end;
|
||||
|
||||
class function texprvalue.try_parse_number(s:string):texprvalue;
|
||||
class function texprvalue.try_parse_number(const s:string):texprvalue;
|
||||
var
|
||||
ic: int64;
|
||||
qc: qword;
|
||||
@ -1141,7 +1141,7 @@ type
|
||||
end;
|
||||
end;
|
||||
|
||||
class function texprvalue.try_parse_real(s:string):texprvalue;
|
||||
class function texprvalue.try_parse_real(const s:string):texprvalue;
|
||||
var
|
||||
d: bestreal;
|
||||
code: integer;
|
||||
@ -1648,7 +1648,7 @@ type
|
||||
end;
|
||||
end;
|
||||
|
||||
function preproc_substitutedtoken(searchstr:string;eval:Boolean):texprvalue;
|
||||
function preproc_substitutedtoken(const basesearchstr:string;eval:Boolean):texprvalue;
|
||||
{ Currently this parses identifiers as well as numbers.
|
||||
The result from this procedure can either be that the token
|
||||
itself is a value, or that it is a compile time variable/macro,
|
||||
@ -1661,20 +1661,23 @@ type
|
||||
macrocount,
|
||||
len: integer;
|
||||
foundmacro: boolean;
|
||||
searchstr: pshortstring;
|
||||
searchstr2store: string;
|
||||
begin
|
||||
if not eval then
|
||||
begin
|
||||
result:=texprvalue.create_str(searchstr);
|
||||
result:=texprvalue.create_str(basesearchstr);
|
||||
exit;
|
||||
end;
|
||||
|
||||
searchstr := @basesearchstr;
|
||||
mac:=nil;
|
||||
foundmacro:=false;
|
||||
{ Substitue macros and compiler variables with their content/value.
|
||||
For real macros also do recursive substitution. }
|
||||
macrocount:=0;
|
||||
repeat
|
||||
mac:=tmacro(search_macro(searchstr));
|
||||
mac:=tmacro(search_macro(searchstr^));
|
||||
|
||||
inc(macrocount);
|
||||
if macrocount>max_macro_nesting then
|
||||
@ -1695,13 +1698,14 @@ type
|
||||
len:=mac.buflen;
|
||||
hs[0]:=char(len);
|
||||
move(mac.buftext^,hs[1],len);
|
||||
searchstr:=upcase(hs);
|
||||
searchstr2store:=upcase(hs);
|
||||
searchstr:=@searchstr2store;
|
||||
mac.is_used:=true;
|
||||
foundmacro:=true;
|
||||
end
|
||||
else
|
||||
begin
|
||||
Message1(scan_e_error_macro_lacks_value,searchstr);
|
||||
Message1(scan_e_error_macro_lacks_value,searchstr^);
|
||||
break;
|
||||
end
|
||||
else
|
||||
@ -1713,12 +1717,12 @@ type
|
||||
|
||||
{ At this point, result do contain the value. Do some decoding and
|
||||
determine the type.}
|
||||
result:=texprvalue.try_parse_number(searchstr);
|
||||
result:=texprvalue.try_parse_number(searchstr^);
|
||||
if not assigned(result) then
|
||||
begin
|
||||
if foundmacro and (searchstr='FALSE') then
|
||||
if foundmacro and (searchstr^='FALSE') then
|
||||
result:=texprvalue.create_bool(false)
|
||||
else if foundmacro and (searchstr='TRUE') then
|
||||
else if foundmacro and (searchstr^='TRUE') then
|
||||
result:=texprvalue.create_bool(true)
|
||||
else if (m_mac in current_settings.modeswitches) and
|
||||
(not assigned(mac) or not mac.defined) and
|
||||
@ -1726,11 +1730,11 @@ type
|
||||
begin
|
||||
{Errors in mode mac is issued here. For non macpas modes there is
|
||||
more liberty, but the error will eventually be caught at a later stage.}
|
||||
Message1(scan_e_error_macro_undefined,searchstr);
|
||||
result:=texprvalue.create_str(searchstr); { just to have something }
|
||||
Message1(scan_e_error_macro_undefined,searchstr^);
|
||||
result:=texprvalue.create_str(searchstr^); { just to have something }
|
||||
end
|
||||
else
|
||||
result:=texprvalue.create_str(searchstr);
|
||||
result:=texprvalue.create_str(searchstr^);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -322,7 +322,7 @@ interface
|
||||
|
||||
{*** Misc ***}
|
||||
function FullTypeName(def,otherdef:tdef):string;
|
||||
function generate_nested_name(symtable:tsymtable;delimiter:string):string;
|
||||
function generate_nested_name(symtable:tsymtable;const delimiter:string):string;
|
||||
{ def is the extended type of a helper }
|
||||
function generate_objectpascal_helper_key(def:tdef):string;
|
||||
procedure incompatibletypes(def1,def2:tdef);
|
||||
@ -2931,7 +2931,7 @@ implementation
|
||||
FullTypeName:=s1;
|
||||
end;
|
||||
|
||||
function generate_nested_name(symtable:tsymtable;delimiter:string):string;
|
||||
function generate_nested_name(symtable:tsymtable;const delimiter:string):string;
|
||||
begin
|
||||
result:='';
|
||||
while assigned(symtable) and (symtable.symtabletype in [ObjectSymtable,recordsymtable]) do
|
||||
|
Loading…
Reference in New Issue
Block a user