Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: src/IceInst.h

Issue 2069923004: Short Circuit Evaluation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address formatting issues apparently missed by 'make format' Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceClFlags.def ('k') | src/IceInst.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.h
diff --git a/src/IceInst.h b/src/IceInst.h
index 0f2cac2dc6477d5f789b073457a63c09eb3d7667..029fcc59079c01a76f76b9567d8477ac70331945 100644
--- a/src/IceInst.h
+++ b/src/IceInst.h
@@ -103,13 +103,13 @@ public:
Variable *getDest() const { return Dest; }
- SizeT getSrcSize() const { return NumSrcs; }
+ SizeT getSrcSize() const { return Srcs.size(); }
Operand *getSrc(SizeT I) const {
assert(I < getSrcSize());
return Srcs[I];
}
void replaceSource(SizeT Index, Operand *Replacement) {
- assert(Index < NumSrcs);
+ assert(Index < getSrcSize());
assert(!isDeleted());
assert(LiveRangesEnded == 0);
// Invalidates liveness info because the use Srcs[Index] is removed.
@@ -189,8 +189,7 @@ protected:
Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest);
void addSource(Operand *Src) {
assert(Src);
- assert(NumSrcs < MaxSrcs);
- Srcs[NumSrcs++] = Src;
+ Srcs.push_back(Src);
}
void setLastUse(SizeT VarIndex) {
if (VarIndex < CHAR_BIT * sizeof(LiveRangesEnded))
@@ -199,7 +198,7 @@ protected:
void resetLastUses() { LiveRangesEnded = 0; }
/// The destroy() method lets the instruction cleanly release any memory that
/// was allocated via the Cfg's allocator.
- virtual void destroy(Cfg *Func) { Func->deallocateArrayOf<Operand *>(Srcs); }
+ virtual void destroy(Cfg *) {}
const InstKind Kind;
/// Number is the instruction number for describing live ranges.
@@ -226,8 +225,8 @@ protected:
Variable *Dest;
const SizeT MaxSrcs; // only used for assert
- SizeT NumSrcs = 0;
- Operand **Srcs;
+
+ CfgVector<Operand *> Srcs;
/// LiveRangesEnded marks which Variables' live ranges end in this
/// instruction. An instruction can have an arbitrary number of source
@@ -666,15 +665,12 @@ public:
private:
InstPhi(Cfg *Func, SizeT MaxSrcs, Variable *Dest);
- void destroy(Cfg *Func) override {
- Func->deallocateArrayOf<CfgNode *>(Labels);
- Inst::destroy(Func);
- }
+ void destroy(Cfg *Func) override { Inst::destroy(Func); }
/// Labels[] duplicates the InEdges[] information in the enclosing CfgNode,
/// but the Phi instruction is created before InEdges[] is available, so it's
/// more complicated to share the list.
- CfgNode **Labels;
+ CfgVector<CfgNode *> Labels;
};
/// Ret instruction. The return value is captured in getSrc(0), but if there is
« no previous file with comments | « src/IceClFlags.def ('k') | src/IceInst.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698