HomeSort by relevance Sort by last modified time
    Searched defs:Actual (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
Lint.cpp 227 Value *Actual = *AI;
230 Assert1(Formal->getType() == Actual->getType(),
237 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
247 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
250 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 530 void *Actual = TheJIT->isCompilingLazily()
536 Actual = TheJIT->getPointerToFunction(F);
540 if (!Actual) return 0;
545 // Codegen a new stub, calling the lazy resolver or the actual address of the
547 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
550 if (Actual != (void*)(intptr_t)LazyResolverFn) {
568 } else if (!Actual) {
573 "'Actual' should have been set above.");
665 << "' In stub ptr = " << Stub << " actual ptr = "
    [all...]

Completed in 57 milliseconds