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 535 void *Actual = TheJIT->isCompilingLazily()
541 Actual = TheJIT->getPointerToFunction(F);
545 if (!Actual) return 0;
550 // Codegen a new stub, calling the lazy resolver or the actual address of the
552 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
555 if (Actual != (void*)(intptr_t)LazyResolverFn) {
573 } else if (!Actual) {
578 "'Actual' should have been set above.");
670 << "' In stub ptr = " << Stub << " actual ptr = "
    [all...]

Completed in 105 milliseconds