HomeSort by relevance Sort by last modified time
    Searched refs:InReg (Results 1 - 20 of 20) sorted by null

  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 89 bool InReg : 1; // isDirect() || isExtend() || isIndirect()
92 : PaddingType(nullptr), TheKind(K), PaddingInReg(false), InReg(false) {}
97 TheKind(Direct), PaddingInReg(false), InReg(false) {}
202 return InReg;
207 InReg = IR;
348 /// How many arguments to pass inreg.
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 32 static const uint64_t InReg = 1ULL<<2; ///< Passed in register
69 bool isInReg() const { return Flags & InReg; }
TargetLowering.h     [all...]
  /external/llvm/include/llvm/IR/
Attributes.h 77 InReg, ///< Force argument to be passed in register
  /external/llvm/lib/IR/
Attributes.cpp 174 if (hasAttribute(Attribute::InReg))
175 return "inreg";
364 case Attribute::InReg: return 1 << 3;
    [all...]
Verifier.cpp 817 // Check for mutually incompatible attributes. Only inreg is compatible with
823 Attrs.hasAttribute(Idx, Attribute::InReg);
825 Assert1(AttrCount <= 1, "Attributes 'byval', 'inalloca', 'inreg', 'nest', "
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
TargetInfo.cpp 453 // Floating-point types don't go inreg.
939 bool InReg = shouldUseInReg(Ty, State, NeedsPadding);
942 if (InReg)
946 if (InReg)
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
TargetLowering.cpp 74 isInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg);
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 178 case Attribute::InReg:
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 497 HANDLE_ATTR(InReg);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 566 return Attribute::InReg;
    [all...]

Completed in 446 milliseconds