HomeSort by relevance Sort by last modified time
    Searched refs:ByVal (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/llvm/unittests/ExecutionEngine/Orc/
IndirectionUtilsTest.cpp 29 AttrBuilder().addAttribute(Attribute::ByVal)));
45 EXPECT_TRUE(Call->paramHasAttr(2U, Attribute::ByVal))
46 << "makeStub should propagate byval attr on 2nd argument.";
  /external/swiftshader/third_party/LLVM/include/llvm/
Attributes.h 44 const Attributes ByVal = 1<<7; ///< Pass structure by value
88 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
102 ByVal | InReg | Nest | StructRet,
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetCallingConv.h 31 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value
62 bool isByVal() const { return Flags & ByVal; }
  /external/mesa3d/src/amd/common/
ac_llvm_helper.cpp 53 return AS.hasAttribute(ArgNo + 1, llvm::Attribute::ByVal) ||
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 36 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value
82 bool isByVal() const { return Flags & ByVal; }
  /frameworks/compile/libbcc/lib/
RSX86CallConvPass.cpp 124 // Add the ByVal attribute to the attribute list corresponding to this
128 NewFn->addAttribute(i+1, llvm::Attribute::ByVal);
151 // Add the ByVal attribute to the attribute list corresponding to this
155 NewCI->addAttribute(i+1, llvm::Attribute::ByVal);
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
CGFunctionInfo.h 70 /// This is similar to indirect with byval, except it only applies to
151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true,
156 AI.setIndirectByVal(ByVal);
162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true,
164 auto AI = getIndirect(Alignment, ByVal, Realign);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 51 if (Attrs & Attribute::ByVal)
52 Result += "byval ";
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture;
  /external/llvm/include/llvm/IR/
CallSite.h 540 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
550 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
CallSite.h 557 return paramHasAttr(ArgNo + 1, Attribute::ByVal);
567 return paramHasAttr(ArgNo + 1, Attribute::ByVal) ||

Completed in 1250 milliseconds

1 2 3