Searched defs:in (Results 1 - 3 of 3) sorted by relevance

/art/compiler/sea_ir/ir/
H A Dinstruction_nodes.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 // This class represents an instruction in SEA IR.
41 static std::vector<sea_ir::InstructionNode*> Create(const art::Instruction* in);
44 DCHECK(NULL != instruction_) << "Tried to access NULL instruction in an InstructionNode.";
60 << " used in instruction " << Id() << " not found.";
97 explicit InstructionNode(const art::Instruction* in): argument
98 SeaNode(), instruction_(in), used_in_(), de_def_(false), region_(NULL) { }
H A Dsea.cc5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
275 // Performs the renaming phase in traditional SSA transformations.
291 // The map @block maps registers to the blocks in which they are defined.
294 // is in a different block than the corresponding definition.
331 // Check that the dominance frontier element is in the worklist already
343 // (This corresponds to the renaming phase in traditional SSA transformations.
351 // Rename phi nodes defined in the current region.
379 // Fill in uses of phi functions in CF
603 Create(const art::Instruction* in) argument
[all...]
/art/runtime/
H A Dutils.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
57 bool ParseUint(const char *in, T* out) { argument
59 unsigned long long int result = strtoull(in, &end, 0); // NOLINT(runtime/int)
60 if (in == end || *end != '\0') {
71 bool ParseInt(const char* in, T* out) { argument
73 long long int result = strtoll(in, &end, 0); // NOLINT(runtime/int)
74 if (in == end || *end != '\0') {
293 static inline V bit_cast(U in) { argument
299 tmp.u = in;
[all...]

Completed in 403 milliseconds