OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypeInfos
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
ARMException.cpp
97
const std::vector<const GlobalVariable *> &
TypeInfos
= MMI->getTypeInfos();
103
// Emit the Catch
TypeInfos
.
104
if (VerboseAsm && !
TypeInfos
.empty()) {
105
Asm->OutStreamer.AddComment(">> Catch
TypeInfos
<<");
107
Entry =
TypeInfos
.size();
111
I =
TypeInfos
.rbegin(), E =
TypeInfos
.rend(); I != E; ++I) {
120
Asm->OutStreamer.AddComment(">> Filter
TypeInfos
<<");
133
Asm->EmitTTypeReference((TypeID == 0 ? 0 :
TypeInfos
[TypeID - 1]),
DwarfException.cpp
88
// (
TypeInfos
) have strictly positive switch values, and exception
93
//
TypeInfos
. The value written for a positive type ID is just the type ID
348
const std::vector<const GlobalVariable *> &
TypeInfos
= MMI->getTypeInfos();
390
bool HaveTTData = IsSJLJ ? (!
TypeInfos
.empty() || !FilterIds.empty()) : true;
421
// Okay, we have actual filters or
typeinfos
to emit. As such, we need to
490
unsigned SizeTypes =
TypeInfos
.size() * TypeFormatSize;
680
const std::vector<const GlobalVariable *> &
TypeInfos
= MMI->getTypeInfos();
686
// Emit the Catch
TypeInfos
.
687
if (VerboseAsm && !
TypeInfos
.empty()) {
688
Asm->OutStreamer.AddComment(">> Catch
TypeInfos
<<");
[
all
...]
/frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp
451
unsigned *
TypeInfos
=
453
unsigned TypeInfosIdx = 0; // iterator for array
TypeInfos
455
if (
TypeInfos
== NULL)
462
TypeInfos
[TypeInfosIdx++] = *I;
464
llvm::StringRef TypeInfoData(reinterpret_cast<const char*>(
TypeInfos
),
469
free(
TypeInfos
);
478
free(
TypeInfos
);
/external/clang/lib/Driver/
Types.cpp
26
static const TypeInfo
TypeInfos
[] = {
32
static const unsigned numTypes = llvm::array_lengthof(
TypeInfos
);
36
return
TypeInfos
[id - 1];
/external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h
133
///
TypeInfos
- List of C++ TypeInfo used in the current function.
134
std::vector<const GlobalVariable *>
TypeInfos
;
386
return
TypeInfos
;
/external/llvm/lib/CodeGen/
MachineModuleInfo.cpp
310
TypeInfos
.clear();
512
for (unsigned i = 0, N =
TypeInfos
.size(); i != N; ++i)
513
if (
TypeInfos
[i] == TI) return i + 1;
515
TypeInfos
.push_back(TI);
516
return
TypeInfos
.size();
519
/// getFilterIDFor - Return the filter id for the specified
typeinfos
. This is
Completed in 900 milliseconds