Searched refs:Function (Results 151 - 175 of 722) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DProfileInfo.cpp28 template<> char ProfileInfoT<Function,BasicBlock>::ID = 0;
42 ProfileInfoT<Function, BasicBlock>::ProfileInfoT() {
46 ProfileInfoT<Function, BasicBlock>::~ProfileInfoT() {
54 const double ProfileInfoT<Function,BasicBlock>::MissingValue = -1;
60 ProfileInfoT<Function,BasicBlock>::getExecutionCount(const BasicBlock *BB) {
61 std::map<const Function*, BlockCounts>::iterator J =
138 double ProfileInfoT<Function,BasicBlock>::getExecutionCount(const Function *F) {
139 std::map<const Function*, double>::iterator J =
167 void ProfileInfoT<Function,BasicBloc
[all...]
H A DCodeMetrics.cpp15 #include "llvm/Function.h"
29 const Function *F = CS.getCalledFunction();
134 if (const Function *F = CS.getCalledFunction()) {
192 void CodeMetrics::analyzeFunction(Function *F, const TargetData *TD) {
202 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
H A DLibCallSemantics.cpp18 #include "llvm/Function.h"
44 LibCallInfo::getFunctionInfo(const Function *F) const {
H A DNoAliasAnalysis.cpp49 virtual ModRefBehavior getModRefBehavior(const Function *F) {
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp143 Function *Codegen();
154 Function *Codegen();
392 Function *CalleeF = TheModule->getFunction(Callee);
409 Function *PrototypeAST::Codegen() {
416 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
440 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
451 Function *FunctionAST::Codegen() {
454 Function *TheFunctio
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/VMCore/
H A DPassManagerTest.cpp22 #include "llvm/Function.h"
178 virtual bool runOnFunction(Function &F) {
239 virtual bool doInitialization(Function &F) {
248 virtual bool doFinalization(Function &F) {
271 Function &F = *I;
369 SCOPED_TRACE("Function pass");
422 // Function Declarations
424 Function* func_test1 = Function::Create(
432 Function* func_test
[all...]
/macosx-10.9.5/bash-92/bash-3.2/
H A Dunwind_prot.c63 Function *cleanup;
79 static void add_unwind_protect_internal __P((Function *, char *));
114 add_unwind_protect ((Function *)NULL, tag);
138 Function *cleanup;
185 Function *cleanup;
280 if (elt->head.cleanup == (Function *) restore_variable)
302 elt->head.cleanup = (Function *) restore_variable;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp44 bool PropagateConstantsIntoArguments(Function &F);
45 bool PropagateConstantReturn(Function &F);
80 bool IPCP::PropagateConstantsIntoArguments(Function &F) {
106 Function::arg_iterator Arg = F.arg_begin();
134 Function::arg_iterator AI = F.arg_begin();
159 bool IPCP::PropagateConstantReturn(Function &F) {
178 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
H A DStripDeadPrototypes.cpp42 "Strip Unused Function Prototypes", false, false)
49 Function *F = I++;
50 // Function must be a prototype and unused.
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h89 llvm::Function *buildFunction(const SourceLocations& DebugLocations) {
104 Function *Result = Function::Create(
124 llvm::Function* f = buildFunction(DebugLocations);
139 llvm::Function* f = buildFunction(DebugLocations);
161 llvm::Function* f = buildFunction(DebugLocations);
190 llvm::Function* f = buildFunction(DebugLocations);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DMetaRenamer.cpp20 #include "llvm/Function.h"
105 bool runOnFunction(Function &F) {
106 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
111 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DAutoUpgrade.cpp16 #include "llvm/Function.h"
30 static bool UpgradeSSE41Function(Function* F, Intrinsic::ID IID,
31 Function *&NewFn) {
44 static bool UpgradeIntrinsicFunction1(Function *F, Function *&NewFn) {
45 assert(F && "Illegal to upgrade a non-existent Function.");
65 NewFn = Function::Create(fType, F->getLinkage(),
143 bool llvm::UpgradeIntrinsicFunction(Function *F, Function *&NewFn) {
163 void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewF
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp200 Function *Codegen();
211 Function *Codegen();
562 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
588 Function *F = TheModule->getFunction(std::string("binary")+Op);
597 Function *CalleeF = TheModule->getFunction(Callee);
623 Function *TheFunction = Builder.GetInsertBlock()->getParent();
688 Function *TheFunction = Builder.GetInsertBlock()->getParent();
758 Function *PrototypeAST::Codegen() {
765 Function *F = Function
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp19 #include "llvm/Function.h"
154 AsanFunctionContext(Function &Function) : F(Function) { } argument
156 Function &F;
177 bool handleFunction(Module &M, Function &F);
180 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
181 bool poisonStackInFunction(Module &M, Function &F);
201 Function *checkInterfaceFunction(Constant *FuncOrBitcast);
217 Function *AsanCtorFunctio
[all...]
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorageSyncManager.cpp74 void StorageSyncManager::dispatch(const Function<void ()>& function)
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Drltypedefs.h35 typedef int Function (); typedef
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dautoconf.el74 "Function to use for `add-log-current-defun-function' in Autoconf mode.
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkctool_main.h63 #pragma mark Function Prototypes
65 * Function Prototypes
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DLibCallSemantics.h146 const LibCallFunctionInfo *getFunctionInfo(const Function *F) const;
H A DProfileInfoLoader.h26 class Function;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DPassManager.h86 bool run(Function &F);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/IPA/
H A DGlobalsModRef.cpp89 std::map<const Function*, FunctionRecord> FunctionInfo;
124 ModRefBehavior getModRefBehavior(const Function *F) {
143 if (const Function* F = CS.getCalledFunction())
171 FunctionRecord *getFunctionInfo(const Function *F) {
172 std::map<const Function*, FunctionRecord>::iterator I =
181 bool AnalyzeUsesOfPointer(Value *V, std::vector<Function*> &Readers,
182 std::vector<Function*> &Writers,
204 std::vector<Function*> Readers, Writers;
246 std::vector<Function*> &Readers,
247 std::vector<Function*>
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DMachineFunctionAnalysis.cpp46 bool MachineFunctionAnalysis::runOnFunction(Function &F) {
H A DMachineFunctionPass.cpp14 #include "llvm/Function.h"
26 bool MachineFunctionPass::runOnFunction(Function &F) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.h24 class Function;

Completed in 165 milliseconds

1234567891011>>