source: dev/BasicCompiler_Common/VariableOpe.h@ 75

Last change on this file since 75 was 75, checked in by dai_9181, 17 years ago

TYPEINFO→Typeへのリファクタリングを実施。64bitはほぼ完了。32bitが全般的に未完成。

File size: 1.8 KB
Line 
1
2
3BOOL IsVariableTopChar(char c);
4BOOL IsVariableChar(char c);
5BOOL IsPtrType(int type);
6BOOL IsSignedType(int type);
7BOOL IsNaturalWholeNumberType(int type);
8BOOL IsWholeNumberType(int type);
9BOOL IsRealNumberType(int type);
10BOOL Is64Type(int type);
11int GetSignedType(int type);
12int GetUnsignedType(int type);
13int GetTypeSize(int type,LONG_PTR lpIndex);
14int GetPtrType(int type);
15int GetTypeFixed(const char *TypeName,LONG_PTR *lpNum);
16void GetOriginalTypeName(char *buffer);
17BOOL GetTypeName(int type,LONG_PTR lpIndex,char *name);
18bool FormatUseProcReturnObject( const char *term, char *procName, char *parameter, CClass::RefType &refType, char *member );
19BOOL GetVarFormatString(char *buffer,char *array,char *array2,char *NestMember, CClass::RefType &refType );
20void GetArrayElement( const char *buffer,char *variable,char *array_element);
21BOOL CheckVarNameError(char *name,int nowLine);
22int JumpSubScripts(const int *ss);
23void GetArrange(char *variable,char *variAnswer,int *SubScripts);
24int GetTypeFromSimpleName(char *variable);
25bool GetVarType( const char *nameBuffer, Type &resultType, bool isError);
26bool GetVarOffsetReadOnly(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
27bool GetVarOffsetReadWrite(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
28bool GetDimentionFormat( const char *buffer,
29 char *VarName,
30 int *SubScripts,
31 Type &type,
32 char *InitBuf,
33 char *ConstractParameter );
34BOOL GetNowStaticVarFullName(char *VarName,char *FullName);
35void AddGlobalVariable(bool isRef, const char *name,int *SubScripts, const Type &type,char *InitBuf,char *ConstractParameter,DWORD dwFlag);
36void dim(char *Parameter,DWORD dwFlags);
37void OpcodeDim(char *Parameter,DWORD dwFlags);
Note: See TracBrowser for help on using the repository browser.