diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-31 18:57:49 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-31 18:57:49 +0000 |
commit | f434a9ed5f8621f4ceedf052e76c263a9c149e07 (patch) | |
tree | 7c634f2d29670eaadc95c66107bb015f4841ba83 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 5bf8890305a8e0a7136b698672652a6e86591974 (diff) | |
download | bcm5719-llvm-f434a9ed5f8621f4ceedf052e76c263a9c149e07.tar.gz bcm5719-llvm-f434a9ed5f8621f4ceedf052e76c263a9c149e07.zip |
Include temp. values when computing max. size of stack frame!
llvm-svn: 2070
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index de3e4f694f3..ef27dbae71c 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -124,7 +124,7 @@ MachineCodeForMethod::MachineCodeForMethod(const Method* _M, method(_M), compiledAsLeaf(false), staticStackSize(0), automaticVarsSize(0), regSpillsSize(0), currentOptionalArgsSize(0), maxOptionalArgsSize(0), - currentTmpValuesSize(0) + currentTmpValuesSize(0), maxTmpValuesSize(0) { maxOptionalArgsSize = ComputeMaxOptionalArgsSize(target, method); staticStackSize = maxOptionalArgsSize @@ -284,14 +284,14 @@ MachineCodeForMethod::pushTempValue(const TargetMachine& target, offset = growUp ? firstTmpOffset + offset : firstTmpOffset - offset; - currentTmpValuesSize += size; + incrementTmpAreaSize(size); return offset; } void MachineCodeForMethod::popAllTempValues(const TargetMachine& target) { - currentTmpValuesSize = 0; + resetTmpAreaSize(); } int |