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

  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 166 FunctionType *FunTy = transformType(OrigFunTy);
168 JumpMap::iterator it = Metadata.find(FunTy);
173 Metadata[FunTy] = Meta;
174 it = Metadata.find(FunTy);
187 JITI->insertEntry(FunTy, Target, JumpFun);
193 bool JumpInstrTables::hasTable(FunctionType *FunTy) {
194 FunctionType *TransTy = transformType(FunTy);
198 FunctionType *JumpInstrTables::transformType(FunctionType *FunTy) {
201 Type *VoidPtrTy = Type::getInt8PtrTy(FunTy->getContext());
205 bool IsVarArg = FunTy->isVarArg()
    [all...]
  /external/llvm/include/llvm/CodeGen/
JumpInstrTables.h 65 bool hasTable(FunctionType *FunTy);
85 FunctionType *transformType(FunctionType *FunTy);
  /external/llvm/include/llvm/IR/
CallSite.h 39 template <typename FunTy = const Function,
93 FunTy *getCalledFunction() const {
94 return dyn_cast<FunTy>(getCalledValue());
161 FunTy *getCaller() const { return (*this)->getParent()->getParent(); }
  /external/clang/test/Sema/
dllexport.c 10 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables and functions}}
dllimport.c 10 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only applies to variables and functions}}
  /external/clang/lib/Sema/
Sema.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 326 CAMLprim value llvm_is_var_arg(LLVMTypeRef FunTy) {
327 return Val_bool(LLVMIsFunctionVarArg(FunTy));
331 CAMLprim value llvm_param_types(LLVMTypeRef FunTy) {
332 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
333 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
    [all...]
  /external/clang/test/SemaCXX/
dllexport.cpp 22 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
    [all...]
dllimport.cpp 21 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}}
    [all...]

Completed in 150 milliseconds