OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPEntry
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp
256
/// highest basic block where a new
CPEntry
can be placed. To ensure this
305
///
CPEntry
- One per constant pool entry, keeping the machine instruction
308
struct
CPEntry
{
312
CPEntry
(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
321
std::vector<std::vector<
CPEntry
> > CPEntries;
381
CPEntry
*findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
590
// Add a new
CPEntry
, but no corresponding CPUser yet.
591
std::vector<
CPEntry
> CPEs;
592
CPEs.push_back(
CPEntry
(CPEMI, i));
620
/// look up the corresponding
CPEntry
[
all
...]
/external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp
175
/// highest basic block where a new
CPEntry
can be placed. To ensure this
212
///
CPEntry
- One per constant pool entry, keeping the machine instruction
215
struct
CPEntry
{
219
CPEntry
(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
228
std::vector<std::vector<
CPEntry
> > CPEntries;
278
CPEntry
*findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
485
const
CPEntry
& CPE = CPEntries[i][j];
556
// Add a new
CPEntry
, but no corresponding CPUser yet.
557
std::vector<
CPEntry
> CPEs;
558
CPEs.push_back(
CPEntry
(CPEMI, i))
[
all
...]
Completed in 6713 milliseconds