Searched refs:unwrap (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTarget.cpp27 inline DataLayout *unwrap(LLVMTargetDataRef P) { function
35 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function
50 initializeTarget(*unwrap(R));
58 unwrap(PM)->add(new DataLayout(*unwrap(TD)));
63 unwrap(PM)->add(new TargetLibraryInfo(*unwrap(TLI)));
67 std::string StringRep = unwrap(TD)->getStringRepresentation();
72 return unwrap(TD)->isLittleEndian() ? LLVMLittleEndian : LLVMBigEndian;
76 return unwrap(T
[all...]
H A DTargetMachineC.cpp31 inline DataLayout *unwrap(LLVMTargetDataRef P) { function
39 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function
48 inline TargetMachine *unwrap(LLVMTargetMachineRef P) { function
51 inline Target *unwrap(LLVMTargetRef P) { function
67 return wrap(unwrap(T)->getNext());
71 return unwrap(T)->getName();
75 return unwrap(T)->getShortDescription();
79 return unwrap(T)->hasJIT();
83 return unwrap(T)->hasTargetMachine();
87 return unwrap(
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DVectorize.cpp35 initializeVectorization(*unwrap(R));
39 unwrap(PM)->add(createBBVectorizePass());
43 unwrap(PM)->add(createLoopVectorizePass());
47 unwrap(PM)->add(createSLPVectorizerPass());
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalar.cpp67 initializeScalarOpts(*unwrap(R));
71 unwrap(PM)->add(createAggressiveDCEPass());
75 unwrap(PM)->add(createCFGSimplificationPass());
79 unwrap(PM)->add(createDeadStoreEliminationPass());
83 unwrap(PM)->add(createGVNPass());
87 unwrap(PM)->add(createIndVarSimplifyPass());
91 unwrap(PM)->add(createInstructionCombiningPass());
95 unwrap(PM)->add(createJumpThreadingPass());
99 unwrap(PM)->add(createLICMPass());
103 unwrap(P
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/IPO/
H A DIPO.cpp50 initializeIPO(*unwrap(R));
54 unwrap(PM)->add(createArgumentPromotionPass());
58 unwrap(PM)->add(createConstantMergePass());
62 unwrap(PM)->add(createDeadArgEliminationPass());
66 unwrap(PM)->add(createFunctionAttrsPass());
70 unwrap(PM)->add(createFunctionInliningPass());
74 unwrap(PM)->add(llvm::createAlwaysInlinerPass());
78 unwrap(PM)->add(createGlobalDCEPass());
82 unwrap(PM)->add(createGlobalOptimizerPass());
86 unwrap(P
[all...]
H A DPassManagerBuilder.cpp333 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { function
347 PassManagerBuilder *Builder = unwrap(PMB);
354 PassManagerBuilder *Builder = unwrap(PMB);
361 PassManagerBuilder *Builder = unwrap(PMB);
368 PassManagerBuilder *Builder = unwrap(PMB);
375 PassManagerBuilder *Builder = unwrap(PMB);
382 PassManagerBuilder *Builder = unwrap(PMB);
389 PassManagerBuilder *Builder = unwrap(PMB);
396 PassManagerBuilder *Builder = unwrap(PMB);
397 FunctionPassManager *FPM = unwrap<FunctionPassManage
[all...]
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DCore.cpp52 initializeCore(*unwrap(R));
77 delete unwrap(C);
82 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
98 return wrap(new Module(ModuleID, *unwrap(C)));
102 delete unwrap(M);
107 return unwrap(M)->getDataLayout().c_str();
111 unwrap(M)->setDataLayout(Triple);
116 return unwrap(M)->getTargetTriple().c_str();
120 unwrap(M)->setTargetTriple(Triple);
124 unwrap(
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DObject.cpp22 inline ObjectFile *unwrap(LLVMObjectFileRef OF) { function
30 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { function
40 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) { function
50 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { function
62 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
66 delete unwrap(ObjectFile);
71 section_iterator SI = unwrap(ObjectFile)->begin_sections();
76 delete unwrap(SI);
81 return (*unwrap(SI) == unwrap(ObjectFil
[all...]
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp28 inline DataLayout *unwrap(LLVMTargetDataRef P) { function
36 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function
51 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
63 switch (unwrap(TyRef)->getTypeID()) {
77 return unwrap(GenValRef)->IntVal.getBitWidth();
82 GenericValue *GenVal = unwrap(GenValRef);
90 return unwrap(GenVal)->PointerVal;
94 switch (unwrap(TyRef)->getTypeID()) {
96 return unwrap(GenVal)->FloatVal;
98 return unwrap(GenVa
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCBindingWrapping.h20 inline ty *unwrap(ref P) { \
32 inline T *unwrap(ref P) { \
33 return cast<T>(unwrap(P)); \
40 inline T *unwrap(ref P) { \
41 T *Q = (T*)unwrap(P); \
H A DCodeGen.h54 inline CodeModel::Model unwrap(LLVMCodeModel Model) { function in namespace:llvm
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp26 WriteBitcodeToFile(unwrap(M), OS);
34 WriteBitcodeToFile(unwrap(M), OS);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/IPA/
H A DIPA.cpp31 initializeIPA(*unwrap(R));
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp35 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
55 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp38 initializeInstrumentation(*unwrap(R));
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DUtils.cpp38 initializeTransformUtils(*unwrap(R));
/freebsd-10.0-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARC.cpp48 initializeObjCARCOpts(*unwrap(R));
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DAnalysis.cpp79 initializeAnalysis(*unwrap(R));
86 LLVMBool Result = verifyModule(*unwrap(M),
97 return verifyFunction(*unwrap<Function>(Fn),
102 Function *F = unwrap<Function>(Fn);
107 Function *F = unwrap<Function>(Fn);
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DLLVMContext.h119 inline LLVMContext **unwrap(LLVMContextRef* Tys) { function in namespace:llvm
H A DValue.h426 inline Value **unwrap(LLVMValueRef *Vals) { function in namespace:llvm
431 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) { function in namespace:llvm
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DCodeGen.cpp77 initializeCodeGen(*unwrap(R));
/freebsd-10.0-release/contrib/file/
H A Dfile.c128 private int unwrap(struct magic_set *, const char *);
214 e |= unwrap(magic, optarg);
366 * unwrap -- read a file of filenames, do each one.
369 unwrap(struct magic_set *ms, const char *fn) function
/freebsd-10.0-release/kerberos5/lib/libgssapi_krb5/
H A DMakefile65 unwrap.c \
/freebsd-10.0-release/lib/libgssapi/
H A Dgss_mech_switch.c264 SYM(unwrap);
/freebsd-10.0-release/usr.sbin/wpa/wpa_supplicant/
H A DMakefile9 SRCS= aes-unwrap.c base64.c blacklist.c bss.c common.c config.c \

Completed in 129 milliseconds

12