Home
last modified time | relevance | path

Searched refs:isBitcodeFile (Results 1 – 8 of 8) sorted by relevance

/external/llvm/tools/lto/
Dlto.cpp39 return LTOModule::isBitcodeFile(path); in lto_module_is_object_file()
52 return LTOModule::isBitcodeFile(mem, length); in lto_module_is_object_file_in_memory()
DLTOModule.h66 static bool isBitcodeFile(const void *mem, size_t length);
67 static bool isBitcodeFile(const char *path);
DLTOModule.cpp47 bool LTOModule::isBitcodeFile(const void *mem, size_t length) { in isBitcodeFile() function in LTOModule
52 bool LTOModule::isBitcodeFile(const char *path) { in isBitcodeFile() function in LTOModule
53 return llvm::sys::Path(path).isBitcodeFile(); in isBitcodeFile()
/external/llvm/lib/Linker/
DLinker.cpp140 if (FullPath.isBitcodeFile()) // .so file containing bitcode? in IsLibrary()
148 if (FullPath.isBitcodeFile()) // .so file containing bitcode? in IsLibrary()
/external/llvm/test/Assembler/
Dbcwrap.ll3 ; Test for isBitcodeFile, llvm-nm must read from a file for this test.
/external/llvm/lib/Support/
DPath.cpp214 Path::isBitcodeFile() const { in isBitcodeFile() function in Path
/external/llvm/include/llvm/Support/
DPathV1.h341 bool isBitcodeFile() const;
/external/llvm/tools/llvm-ld/
Dllvm-ld.cpp636 if (tmp_output.isBitcodeFile()) { in main()