OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TySize
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp
80
uint64_t
TySize
= TLI->getDataLayout()->getTypeAllocSize(Ty);
85
TySize
*= CUI->getZExtValue(); // Get total allocated size.
86
if (
TySize
== 0)
TySize
= 1; // Don't create zero-sized stack objects.
93
(
TySize
>= 8 && isa<ArrayType>(Ty) &&
96
MF->getFrameInfo()->CreateStackObject(
TySize
, Align, false,
SelectionDAGBuilder.cpp
[
all
...]
/external/clang/lib/CodeGen/
TargetInfo.cpp
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
772
if (int64_t
TySize
= TD->getTypeAllocSize(Ty)) {
773
FirstIdx = Offset/
TySize
;
774
Offset -= FirstIdx*
TySize
;
776
// Handle hosts where % returns negative instead of values [0..
TySize
).
779
Offset +=
TySize
;
782
assert((uint64_t)Offset < (uint64_t)
TySize
&& "Out of range offset");
[
all
...]
Completed in 67 milliseconds