mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix generating array's size is incorrect in AutoGen.c
case example: DSC: [PcdsFixedAtBuild] PcdToken.PcdName | "A" [Components] TestPkg/TestDriver.inf { PcdToken.PcdName | {0x41,0x42,0x43,0x44} } Generating the size of array is incorrect in AutoGen.c GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 _gPcd_FixedAtBuild_PcdName[2] = {0x41,0x42,0x43,0x44}; Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=950 Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
1dc287c3a3
commit
6b285ca366
|
@ -1057,7 +1057,7 @@ def CreateModulePcdCode(Info, AutoGenC, AutoGenH, Pcd):
|
||||||
if not Value.endswith('U'):
|
if not Value.endswith('U'):
|
||||||
Value += 'U'
|
Value += 'U'
|
||||||
if Pcd.DatumType not in TAB_PCD_NUMERIC_TYPES:
|
if Pcd.DatumType not in TAB_PCD_NUMERIC_TYPES:
|
||||||
if Pcd.MaxDatumSize is None or Pcd.MaxDatumSize == '':
|
if not Pcd.MaxDatumSize:
|
||||||
EdkLogger.error("build", AUTOGEN_ERROR,
|
EdkLogger.error("build", AUTOGEN_ERROR,
|
||||||
"Unknown [MaxDatumSize] of PCD [%s.%s]" % (Pcd.TokenSpaceGuidCName, TokenCName),
|
"Unknown [MaxDatumSize] of PCD [%s.%s]" % (Pcd.TokenSpaceGuidCName, TokenCName),
|
||||||
ExtraData="[%s]" % str(Info))
|
ExtraData="[%s]" % str(Info))
|
||||||
|
@ -1065,11 +1065,13 @@ def CreateModulePcdCode(Info, AutoGenC, AutoGenH, Pcd):
|
||||||
ArraySize = int(Pcd.MaxDatumSize, 0)
|
ArraySize = int(Pcd.MaxDatumSize, 0)
|
||||||
if Value[0] == '{':
|
if Value[0] == '{':
|
||||||
Type = '(VOID *)'
|
Type = '(VOID *)'
|
||||||
|
ValueSize = len(Value.split(','))
|
||||||
else:
|
else:
|
||||||
if Value[0] == 'L':
|
if Value[0] == 'L':
|
||||||
Unicode = True
|
Unicode = True
|
||||||
Value = Value.lstrip('L') #.strip('"')
|
Value = Value.lstrip('L') #.strip('"')
|
||||||
Value = eval(Value) # translate escape character
|
Value = eval(Value) # translate escape character
|
||||||
|
ValueSize = len(Value) + 1
|
||||||
NewValue = '{'
|
NewValue = '{'
|
||||||
for Index in range(0,len(Value)):
|
for Index in range(0,len(Value)):
|
||||||
if Unicode:
|
if Unicode:
|
||||||
|
@ -1077,18 +1079,17 @@ def CreateModulePcdCode(Info, AutoGenC, AutoGenH, Pcd):
|
||||||
else:
|
else:
|
||||||
NewValue = NewValue + str(ord(Value[Index]) % 0x100) + ', '
|
NewValue = NewValue + str(ord(Value[Index]) % 0x100) + ', '
|
||||||
if Unicode:
|
if Unicode:
|
||||||
ArraySize = ArraySize / 2;
|
ArraySize = ArraySize / 2
|
||||||
|
|
||||||
if ArraySize < (len(Value) + 1):
|
|
||||||
if Pcd.MaxSizeUserSet:
|
|
||||||
EdkLogger.error("build", AUTOGEN_ERROR,
|
|
||||||
"The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, TokenCName),
|
|
||||||
ExtraData="[%s]" % str(Info))
|
|
||||||
else:
|
|
||||||
ArraySize = Pcd.GetPcdSize()
|
|
||||||
if Unicode:
|
|
||||||
ArraySize = ArraySize / 2
|
|
||||||
Value = NewValue + '0 }'
|
Value = NewValue + '0 }'
|
||||||
|
if ArraySize < ValueSize:
|
||||||
|
if Pcd.MaxSizeUserSet:
|
||||||
|
EdkLogger.error("build", AUTOGEN_ERROR,
|
||||||
|
"The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, TokenCName),
|
||||||
|
ExtraData="[%s]" % str(Info))
|
||||||
|
else:
|
||||||
|
ArraySize = Pcd.GetPcdSize()
|
||||||
|
if Unicode:
|
||||||
|
ArraySize = ArraySize / 2
|
||||||
Array = '[%d]' % ArraySize
|
Array = '[%d]' % ArraySize
|
||||||
#
|
#
|
||||||
# skip casting for fixed at build since it breaks ARM assembly.
|
# skip casting for fixed at build since it breaks ARM assembly.
|
||||||
|
|
Loading…
Reference in New Issue