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

  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 67 static void FindUsedValues(GlobalVariable *LLVMUsed,
69 if (!LLVMUsed) return;
70 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
StripSymbols.cpp 192 static void findUsedValues(GlobalVariable *LLVMUsed,
194 if (!LLVMUsed) return;
195 UsedValues.insert(LLVMUsed);
197 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 305 GlobalVariable *LLVMUsed = M->getGlobalVariable("llvm.used");
307 if (LLVMUsed) {
309 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
312 LLVMUsed->eraseFromParent();
323 LLVMUsed = new llvm::GlobalVariable(
327 LLVMUsed->setSection("llvm.metadata");
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 418 static void findUsedValues(GlobalVariable *LLVMUsed,
420 if (!LLVMUsed) return;
422 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
  /external/clang/lib/CodeGen/
CodeGenModule.h 348 std::vector<llvm::WeakVH> LLVMUsed;
    [all...]
CodeGenModule.cpp     [all...]

Completed in 226 milliseconds