HomeSort by relevance Sort by last modified time
    Searched defs:FieldNo (Results 1 - 12 of 12) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Target/
TargetData.cpp 546 unsigned FieldNo = cast<ConstantInt>(Indices[CurIDX])->getZExtValue();
552 Result += Layout->getElementOffset(FieldNo);
555 Ty = STy->getElementType(FieldNo);
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp     [all...]
CGExprConstant.cpp 369 unsigned FieldNo = 0;
380 FieldEnd = RD->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
403 AppendField(*Field, Layout.getFieldOffset(FieldNo), EltInit);
407 AppendBitField(*Field, Layout.getFieldOffset(FieldNo), CI);
471 unsigned FieldNo = 0;
475 FieldEnd = RD->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
486 RD->isUnion() ? Val.getUnionValue() : Val.getStructField(FieldNo);
493 AppendField(*Field, Layout.getFieldOffset(FieldNo) + OffsetBits, EltInit);
496 AppendBitField(*Field, Layout.getFieldOffset(FieldNo) + OffsetBits,
    [all...]
CGDebugInfo.cpp 1012 unsigned fieldno = 0; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BasicAliasAnalysis.cpp 323 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
324 if (FieldNo == 0) continue;
326 BaseOffs += TD->getStructLayout(STy)->getElementOffset(FieldNo);
    [all...]
ScalarEvolution.cpp 211 Constant *FieldNo;
212 if (U->isOffsetOf(CTy, FieldNo)) {
214 WriteAsOperand(OS, FieldNo, false);
399 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const {
413 FieldNo = CE->getOperand(2);
    [all...]
ScalarEvolutionExpander.cpp 459 Constant *FieldNo;
460 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) {
461 GepIndices.push_back(FieldNo);
463 STy->getTypeAtIndex(cast<ConstantInt>(FieldNo)->getZExtValue());
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 418 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
419 if (FieldNo == 0)
423 DL.getStructLayout(STy)->getElementOffset(FieldNo);
    [all...]
ScalarEvolution.cpp 228 Constant *FieldNo;
229 if (U->isOffsetOf(CTy, FieldNo)) {
231 FieldNo->printAsOperand(OS, false);
424 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const {
438 FieldNo = CE->getOperand(2);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 142 getFieldOffset(const ASTRecordLayout &Layout, unsigned FieldNo) const {
143 uint64_t FieldOffset = Layout.getFieldOffset(FieldNo);
301 unsigned FieldNo = 0;
303 E = Info->Class->field_end(); I != E; ++I, ++FieldNo) {
307 CharUnits FieldOffset = Offset + getFieldOffset(Layout, FieldNo);
348 unsigned FieldNo = 0;
350 E = Info->Class->field_end(); I != E; ++I, ++FieldNo) {
354 CharUnits FieldOffset = Offset + getFieldOffset(Layout, FieldNo);
413 unsigned FieldNo = 0;
415 I != E; ++I, ++FieldNo) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 756 milliseconds